Jump to content

Zango

Discord Moderators
  • Posts

    681
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Zango

  1. If I am not fully mistaken, map editor has an undo/redo system? I swear I reckon some buttons in the top panel.
  2. There are a two solutions: 1) learn scripting 2) wait for someone to make it it isn't hard, but does require working with the freeroam resource (to disable warp command etc.) and other stuff you might have.
  3. what if you undo + do a new change? since you do not remove the change you wanted to undo, it will add on top?
  4. this is a known error, a workaround is to script a colshape and use that as hit detection, or an arrow as you said. I think there must be somewhere in your code you reset the players money every second.
  5. Just set the ped's animation? The 'ped' block has loads of different running styles.
  6. I'd really like to see what happened if you temporarily switched off your antivirus. It seems aggressive and might be the cause. In case nothing helps, please try a 1.0.3 build
  7. This is an issue I've seen here a few times, you could try the following: 1. Download and install latest official 1.0.4 to a brand new directory 2. Turn off firewall and antivirus 3. Test If that doesn't work, please provide OS, name of antivirus and firewall if applicable. As a temporary solution, go to game-monitor.com and filter for Multi-Theft-Auto or go to monitor.mtasa.com Use the Quick Connect option
  8. It helps in the long run to read the description of each feature thoroughly <!-- ONLY USE THIS PARAMETER IF YOU ARE SURE OF WHAT YOU ARE DOING - it is generally only needed for professional servers and should be left blank otherwise. This parameter specifies the IP to use for servers that have multiple IP addresses. If left blank, it will default to server's standard local IP address. --> these 4 lines tells us, we should leave it blank, unless we're a) Professional server hosters b) Know what we're doing c) Have more than one IP available I don't doubt you know what you're doing, but generally you know whether these blocks apply to you. If you're uncertain, rather leave them default.
  9. jail timer? I found this by searching for "jail" on the community center https://community.multitheftauto.com/index.php?p= ... ls&id=1307
  10. Remove it then, and you shouldn't experience those problems.
  11. Open mtaserver.conf Is this part <!-- ONLY USE THIS PARAMETER IF YOU ARE SURE OF WHAT YOU ARE DOING - it is generally only needed for professional servers and should be left blank otherwise. This parameter specifies the IP to use for servers that have multiple IP addresses. If left blank, it will default to server's standard local IP address. --> <serverip></serverip> intact, or is there any value between ?
  12. I don't understand why his external IP would change in the middle of everything, unless something was rebooted. Maybe something was though I thought it was related to something internally
  13. Because your router assigns you a dynamic IP What operating system are you using? What is your router brand/model?
  14. Your question was answered less than 48 hours ago viewtopic.php?f=101&t=31928
  15. Zango

    1.00 Cracked/NoCd EXE

    PM'ed you, just continue to follow instructions
  16. Zango

    1.00 Cracked/NoCd EXE

    as I posted in your other thread, follow the steps provided in the link below to get your Steam version of GTA SA to work with MTA. https://wiki.multitheftauto.com/wiki/Kno ... y_MTASA.3F It is described at the top of the page. For convenience, I will post it here: Should you experience problems with a 1.00 no-cd crack, PM me and I will send you one.
  17. Zango

    Matrix

    do you mean the hud, radar and chat being disabled for as long as the camera matrix is set? local hudComponents = {'ammo', 'area_name', 'armour', 'breath', 'clock', 'health', 'money', 'radar', 'vehicle_name', 'weapon'} function setCameraOnPlayerJoin() fadeCamera(source, true, 2) setCameraMatrix(source, 363.19458007813, -1989.0324707031, 21.265274047852, 31.334917297363, 0, 197) showChat (source, false) for _, component in ipairs (hudComponents) do showPlayerHudComponent (source, component, false) end addEventHandler ('onPlayerLogin', source, function() setCameraTarget (source, source); for _, component in ipairs (hudComponents) do showPlayerHudComponent (source, component, true) end; showChat (source, true) end ) end addEventHandler("onPlayerJoin", getRootElement(), setCameraOnPlayerJoin) soz about the looks, written quickly inside post edit: fixed
  18. Zango

    Matrix

    by logging you mean logging in? something like this: function setCameraOnPlayerJoin() fadeCamera(source, true, 2) setCameraMatrix(source, 363.19458007813, -1989.0324707031, 21.265274047852, 31.334917297363, 0, 197) addEventHandler ('onPlayerLogin', source, function() setCameraTarget (source, source) end) end addEventHandler("onPlayerJoin", getRootElement(), setCameraOnPlayerJoin)
  19. Zango

    1.00 Cracked/NoCd EXE

    follow this: https://wiki.multitheftauto.com/wiki/Kno ... y_MTASA.3F and you will be playing MTA in no time
  20. Zango

    Scripter

    Roleplay like SAES or valhalla. aren't those two different roleplays
  21. your friends did install the 1.1 data package? http://code.google.com/p/mtasa-blue/downloads/list
  22. I might be wrong, but isn't this was amx does?
  23. https://wiki.multitheftauto.com/wiki/FindRotation
×
×
  • Create New...