Jump to content

Callum

MTA Contributors
  • Posts

    865
  • Joined

  • Last visited

Everything posted by Callum

  1. £5 per month...You earn more in coal mines.
  2. Callum

    about MTA

    But 1.0.4 falls under the "MTA SA 1.0" category.
  3. Maybe because you're linking to a page, and not an image? (The page url can be mis-leading). Use this instead; http://img40.imageshack.us/img40/2091/clipboard07z.png
  4. Just make sure you don't use trailer ID 584. In 2 days our server crashed 20+ times, because we had that vehicle on.
  5. Callum

    Cant connect

    And you have tried connecting to multiple servers (from different hosters)?
  6. When you download MTA, you get quite a few race maps included. Until community gets a "facelift", you'll have to wait.
  7. Sorry, got no idea what an RE4 camera is (resident evil 4?), but I'm basing the following code on previous posts; local GLP = getLocalPlayer() function updateCamera () x,y,z = getElementPosition (GLP) setPedAimTarget (GLP,x,y+100,z) rx,ry,rz = getPedTargetEnd (GLP) setPedAimTarget (GLP,rx,ry+100,rz+0.7) setCameraMatrix (x+0.5,y-0.5,z+0.7,rx-0.1,ry,z+0.4) end addEventHandler("onClientPreRender",getRootElement(),updateCamera)
  8. Did it crash every time, or just once?
  9. In the server-side instead of addEvent and then addEventHandler you should have; addEventHandler("onPlayerJoin",getRootElement(),GUIness)
  10. Callum

    what the fucking hell

    It's because they want to appear in the server list of we search for any popular servers. Kinda noobish, but we can't control what the server names are.
  11. The MTA community site is down because the MTA services are for some reason offline (they seem to have restored forums and wiki however). And you can't just come here and request a script (refer to this). At least attempt it, before asking. EDIT: Pff, posted like 1 second before me
  12. Callum

    About limits

    Yes, I believe the max elements you can have is something like 65,000, and I doubt you'll ever need that many.
  13. Callum

    Car teleport

    Garages don't have interiors. And to move a vehicle, just use setElementPosition on the vehicle.
  14. Callum

    Car teleport

    What? It makes no sence to teleport a car as you enter/exit it. And when you go to enter a house, what does that have to do with teleporting a car?
  15. The answer to your first question is setGameType For the rest, there is no simple way to whiff up a script. Read the introduction to scripting. Also, see the community site for public scripts. P.S: What's your in-game name?
  16. That's blip #2, but afaik you can't change the colour of it. I'm not sure about this, but would setElementRotation not work on a blip, to represent their rotation? And I find 2 problems with this resource, 1 which is already acknowledged. 1. Script is not aware when HUD is hidden. 2. There needs to be a function like setBlipVisibleTo.
  17. Callum

    MTA not working

    Could you please provide us with more information? Like your operating system, CPU, OS architecture, Graphics card. This would help diagnose the problem better.
  18. Callum

    Strange Problem

    It's more likely to be a problem with your router, rather than MTA.
  19. setTime server-side sets the time for server (so for every player), you'll need to do it client-side for it to be that player only. Simply change "onPlayerJoin" to "onClientResourceStart" and in meta.xml set the script type to "client".
  20. Callum

    Car teleport

    There are many, many ways. Would you like to specify? e.g. Event, Command
  21. I find a more efficient way is; addEventHandler("onClientGUIClick",GUIEditor_Button[1],function() guiSetVisible(GUIEditor_Window[1],false) end,false) Add that right below the line of code on which the button is created.
  22. Callum

    same name

    That script is checking if the node has a "name" attribute, you'll have to get the child node of the child node of the file.
×
×
  • Create New...