-
Posts
128 -
Joined
-
Last visited
Everything posted by Static-X
-
https://community.multitheftauto.com/index.php?p= ... ils&id=614
-
@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 )
-
Arabic Site Of "MTA" for support !
Static-X replied to [V3R0]~'s topic in Site/Forum/Discord/Mantis/Wiki related
Ofc ( i guess ), you can open an unofficial forum, what would be pretty helpful to Arabic players. Good luck. -
This topic should be set sticky, lmao...
-
@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)
-
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
-
I never used it so didn't knew, sorry, lol!!
-
erm, isn't it addaccount?
-
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)
-
Just damned awesome! Nice work.
-
DD/DM is included in 'race' gamemode, you can download DD/DM maps from https://community.multitheftauto.com
-
You need to add yourself in the ACL, for more information have a look at the wiki, https://wiki.multitheftauto.com/wiki/Ser ... nistrators
-
That`s custom Texture ( TXD ) models.
-
I don't get what you are actually asking, could you explain it?
-
We have a bunch of them, here
-
Bah, just have a look on F9 > Freeroam.
-
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
-
If you use freeroam, then /cv
-
There is, buy a server.
-
https://wiki.multitheftauto.com/wiki/Vehicle_IDs
-
You actually dont need to add your server manually to gamemonitor, it will be automatically visible when left on for 24 hours *max*
-
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
-
I was just correcting his code :b