-
Content Count
366 -
Joined
-
Last visited
Everything posted by SkatCh
-
i know how to use : setElementInterior setElementDimension but it's a map not Client side ro server side ??
-
hi guys , please i have a question and i need some help i create my own interior with map editor and now i want to change it to and other : interior:"0" dimension:"0" how can i do this . in other words when i warped to this interior i will find my self in other dimension .
-
here : http://luac.mtasa.com/
-
hi guys please can anyone explane to me this two option : Anti-decompile. Encrypt (only from 1.3.4). i want some information . thank you
-
yes exactly i transferred the files using FTP . Added ; thx it's working fine now .
-
bro please can u help me when i try to start up the server i got this poblem : /mta-server: permission denied
-
guys is there version 1.4 for linux ?
-
hi guys please how can i make admin they don't need to pay 1000 when they fix there cars here : a part from my script function(id) if getPlayerMoney(source) >= tonumber(1000) then takePlayerMoney ( source, 1000 ) local vehicle = getVehicleByID(id) if isElement(vehicle) then fixVehicle(vehicle) setVehicleEngineState(vehicle, true) if isVehicleDamageProof(vehicle) then setVehicleDamageProof(vehicle, false) end end
-
hi guys please i have a question how to protect file like mods , maps etc ... i know to protect client and server files but how to protect the others .
-
hi guys please can any one tell me how to connect mysql server with putty . (linux)
-
WTF topic can be locked some stupid answers .my script is working fine just i'm asking how to make admin able to use those command without being kicked .
-
how because i edit ACLgroups , i delete Admin , moderator , etc .. and i changed them with Head Staff > trial Staff .
-
hi guys please can any one help me i create a script to prevent players in my server from using server command , like start , restart , refresh , etc ... but me too i can't use them : (i'm staff ) . i will explane my script it's server side scripte i create table with all MTA server commands eg : Command = { ['delaccount'] = true; } -- etc .... -- then i create this function : addEventHandler ( 'onPlayerCommand',getRootElement ( ), function ( cmd ) if Command [ cmd ] then cancelEvent ( ); kickPlayer ( source, "Command Not Allowed" ); end; end ); so my question how can i make admin will be able to use those commands i tried many exports function : like isPlayerInTeams , isPlayerStaff but i think there is something wrong , thx fro help .
-
guys please i want to create script which is i want to create a custom skin for some players example : Palyer account name is : xxxxx so when xxx check the skin he will find his custom skin but other players can use it . thank you
-
done i find i followed all of this https://wiki.multitheftauto.com/wiki/In ... _GNU_Linux but please can you tell me how can i let it working all the time because when i close my console from putty the server shutdown . i'm sorry about my english
-
i try it it , didn't work Note : my Gui is working fine and i can see players inside the Gridlist but i don't know why i got this warning . i'm sorry about my english .
-
here you go example : function Teams() criminals = createTeam ("criminal" , 255, 0, 0 ) end addEventHandler("onResourceStart", resourceRoot, Teams)