Jump to content

Callum

MTA Contributors
  • Posts

    865
  • Joined

  • Last visited

Everything posted by Callum

  1. Callum

    hackers in 1.0.2

    All MTA versions from 1.0 onwards should work on Windows 7, there has been no past report of Windows 7 not working.
  2. You could create it as normal, but then setElementVisibleTo to make it a team-only visible blip.
  3. Callum

    Dynamic IP

    So what's the problem if your IP is never changing. Just use your WAN (external) IP to connect, and make sure your router has the correct server and download port forwarded.
  4. The only developer that works on MTA 0.5 (VC and III) is Towncivilian.
  5. Callum

    NPCs?

    Yes, but they go by the name of ped (pedestrian). See more info at the wiki page.
  6. That's why you should just use pickups, when creating a pickup there is an argument for respawnTime.
  7. Callum

    char ids

    Accounts use SQL anyway.
  8. string.gsub should work for you. string.gsub(string,"original text", "new text") EDIT: You can find the string.gsub tutorial on this page.
  9. Not tested it, but maybe this will work, but I recommend you use pickups instead of markers for this type of script. local myMarker = createMarker(3493.390381,-2223.425293,15.378421,"corona",3,225,255,0,255) function markerHit6(hitElement) if (getElementType(hitElement) == "vehicle") then fixVehicle(hitElement) destroyElement(source) setTimer(function() myMarker = createMarker(3493.390381,-2223.425293,15.378421,"corona",3,225,255,0,255) end,30000,1) end end addEventHandler("onMarkerHit",myMarker,markerHit6)
  10. Callum

    [REL] InfoGUI

    Yea, it's public again now, sorry for invonvinience.
  11. Try looking here. Or in the server list just enter "DD" or "DM" into the search bar.
  12. Callum

    Dynamic IP

    Try following this guide; http://corz.org/comms/hardware/router/s ... ddress.php
  13. You have added an event handler, haven't you (use onClientRender)? If not, add this to the bottom; addEventHandler("onClientRender",getRootElement(),drawList)
  14. Callum

    Data Modified

    Try downloading and applying the default data files
  15. Use https://wiki.multitheftauto.com/wiki/SetWaterLevel
  16. Callum

    [REL] InfoGUI

    Requested. I want to re-consider my resources availability, as I've started my own server.
  17. So if that doesn't work, and yet the other version of it does, the only explination is that the theElement argument is not correct. P.S: If there is no argument before the event name, the event will be triggered for all players.
  18. Callum

    MTA Server error

    Were you running another MTA server on port 22005? That usually causes that error.
  19. It must be that your acl.xml was at fault then.
  20. I'd rather download everything on join rather than constant smaller downloads throughout my play on the server. And if a client-side script needed to call an export in another client-side script which has not yet been downloaded, well, there will be quite a few errors.
  21. Callum

    [REL] InfoGUI

    Thanks, I'll try adding more ease of use.
  22. Are you sure you don't mean MTA Deathmatch? And if the data files have been modifed download the original ones at https://community.multitheftauto.com/data.zip
  23. It's only a tiny watermark, why does it matter? If anything it can help by identifying which version of MTA it is.
  24. Callum

    DD/DM WIN

    function check() local alive = getAlivePlayers() if (#alive == 1) then local player = alive[1] givePlayerMoney(player,1200) outputChatBox(getPlayerName(player).." has earned $1200 for being the last player alive",getRootElement(),0,255,0) end end addEventHandler("onVehicleExplode",getRootElement(),check) Something like that will work? I'm not sure if race uses peds or players.
×
×
  • Create New...