Jump to content

Callum

MTA Contributors
  • Posts

    865
  • Joined

  • Last visited

Everything posted by Callum

  1. Yeah as Noki said a VM would be the best solution. I used VMWare Player (from what I recall) and the frame rate was just as good as running it natively on Windows.
  2. It's most likely due to Windows Firewall or some form of anti-virus software, if you have port forwarded correctly. Look up how to add a firewall exception.
  3. Callum

    LinkedIn?

    Just wondering if anybody has a LinkedIn profile? None of my friends seem to have it, so would be good to make a few new connections!
  4. 18 GB is an extraordinary feat for a server. Do all of your maps come with custom resources such as SFX and textures? How many maps do you have?
  5. The box at the bottom of the link you posted seems to indicate it's listed in the server list. Is this still an issue?
  6. There used to be a setServerName function but I think it was removed as it was used to circumvent branding from hosting providers.
  7. addEventHandler("onPlayerWasted",root,function() banPlayer(source) end) Just off the top of my head, not tested.
  8. I doubt you'll get very far with that if the community isn't compliant.
  9. Try changing your DNS provider to Google (8.8.8.8, 8.8.4.4). If you're not sure how to do this, use Google to learn something new.
  10. This isn't the natural behaviour of MTA. A script you're running will somewhere be removing a player's weapons when they change skin.
  11. https://wiki.multitheftauto.com/wiki/Re ... red_events Refer to onGamemodeMapStart and onGamemodeMapStop
  12. irc.mtasa.com and irc.gtanet.com are the same IRC network. You will have either been unbanned or your host will have changed.
  13. Every time the game freezes you get that loading circle at the bottom of the screen. I'm sure (though not certain) that's related to script execution.
  14. Callum

    connection issue

    As well as port forwarding you need to bypass any firewalls installed on your computer (i.e. Windows Firewall). This is the issue more often than not.
  15. Callum

    Images

    You want help making a level/XP system, or making the images therefor?
  16. Callum

    IP changed

    You can use IP tracker websites to geolocate your IP address. Do they also show U.S. rather than UK?
  17. You could create a utility function to dump all of the element data, and then once the resource has restarted recreate it.
  18. Not sure specifically what the issue is, but I know there's quite a few bug reports on the bug tracker regarding coroutines.
  19. A timer is useless in this case, as you can use onClientPlayerChangeNick instead.
  20. It's because getElementData (line 15 of your snippet) only returns one value.
  21. You also need to check the element still exists, to prevent potential debug errors: function someFunction() setElementData(source, "nametags.bubble", true) setTimer(function(source) if isElement(source) then removeElementData(source, "nametags.bubble") end end, 7000, 1, source) end
  22. When an account is registered, record the client's serial to an SQL table. Then when a client tries to register a new account, check their serial isn't in the table.
  23. I would have thought this is how isObjectInACLGroup works anyway. It won't re-read the XML file every time you use the function, it will use cache.
  24. Callum

    SERVER REPORT

    Just don't play on the server again then. Servers are like private property, it's not the job of the MTA Team to moderate them.
  25. Are you sure it's related to your hardware, and not some recently added code which is intensive on client processing?
×
×
  • Create New...