Jump to content

Static-X

Members
  • Posts

    128
  • Joined

  • Last visited

Everything posted by Static-X

  1. https://community.multitheftauto.com/index.php?p= ... ils&id=614
  2. @bluski, you can chose any of the versions, as needed. But remember, dzek ( varez )'s one makes all vehicle damage proof, while mine works only for admins when they type /vgod. ( just an explanation )
  3. Ofc ( i guess ), you can open an unofficial forum, what would be pretty helpful to Arabic players. Good luck.
  4. This topic should be set sticky, lmao...
  5. @every one, feel free to use this simple code, if wanted @.@ function vehicleGodMod(player) if not (hasObjectPermissionTo(player,"general.adminpanel",false)) then outputChatBox("You dont have permission for this command!",player,255) return end if (isVehicleDamageProof(getPedOccupiedVehicle(player))) then setVehicleDamageProof(getPedOccupiedVehicle(player),false) outputChatBox("Vehicle god mode disabled",player,255) else setVehicleDamageProof(getPedOccupiedVehicle(player),true) outputChatBox("Vehicle god mode enabled",player,0,255) end end addCommandHandler("vgod",vehicleGodMod) addCommandHandler("vehiclegod",vehicleGodMod)
  6. lmfao! Type it on the screen you see after running MTA San Andreas/server/mtaserver.exe OR Simply in game ( chatbox ), type /register ahmad your_password
  7. Static-X

    .map to .ipl

    I never used it so didn't knew, sorry, lol!!
  8. erm, isn't it addaccount?
  9. CLIENT: function GoToJob(source) outputChatBox("Hey, have a job!") takePlayerMoney(500) triggerServerEvent("StartJobCheckPoint",getLocalPlayer()) end SERVER: function JobCP() local Job1 = createMarker( -1979.3596191406, 483.17581176758, 34.100391387939, 'cylinder',0.8, 0, 255, 0, getRootElement()) end addEvent("StartJobCheckPoint", true) addEvent[color=#FF0000]Handler[/color]("StartJobCheckPoint", getRootElement(), JobCP)
  10. Static-X

    .map to .ipl

    http://www.convertffs.com/
  11. Just damned awesome! Nice work.
  12. DD/DM is included in 'race' gamemode, you can download DD/DM maps from https://community.multitheftauto.com
  13. You need to add yourself in the ACL, for more information have a look at the wiki, https://wiki.multitheftauto.com/wiki/Ser ... nistrators
  14. That`s custom Texture ( TXD ) models.
  15. I don't get what you are actually asking, could you explain it?
  16. Static-X

    Game-Monitor problem

    We have a bunch of them, here
  17. Bah, just have a look on F9 > Freeroam.
  18. Static-X

    MoveObject

    here is an easy way of doing the same thing. function moveUFO() moveObject(ufo1,10000,-353.2197265625,2187.2331542969,86.91221618523) setTimer(ufoMoveBack,10500,1) end function ufoMoveBack() moveObject(ufo1,10000,x,y,z) setTimer(moveUFO,10500,1) end
  19. If you use freeroam, then /cv
  20. Static-X

    Game-Monitor problem

    There is, buy a server.
  21. https://wiki.multitheftauto.com/wiki/Vehicle_IDs
  22. Static-X

    Game-Monitor problem

    You actually dont need to add your server manually to gamemonitor, it will be automatically visible when left on for 24 hours *max*
  23. Static-X

    Dimension

    mysql maybe not good for a beginner ( if you are one ), use setAccountData. afaik, you want to change a player's interior and dimension and make it save, so it would probably be/like SET DIMENSION: -- SERVERSIDED addCommandHandler("setdimen",function(player,cmd,id) if not id then outputChatBox("You need to enter an dimension id! (0-65535)",player,255) elseif id >=65535 then outputChatBox("Specific dimension doesn't exists! use (0-65535)",player,255) else setElementDimension(player,id) outputChatBox("You teleported to dimension: "..id,0,255) end end ) Here for interior, https://wiki.multitheftauto.com/wiki/SetElementInterior, As mentioned in first line, you can use setAccountData for saving
  24. Static-X

    Attachmusic?

    oohh, I never read that >
  25. I was just correcting his code :b
×
×
  • Create New...