MatXpl Posted November 21, 2010 Posted November 21, 2010 Hi! I has problem in scripting tigger event this is client code: function logterror ( source ) guiSetVisible(gew,false) triggerServerEvent("loginTerror", getLocalPlayer()) end addEventHandler ( "onClientGUIClick", terrorbt, logterror ) and this is server code: function loginTerror (source) spawnPlayer (source, 0, 0, 5, 0, math.random (0,288), 0, 0, trTeam) -- spawns player with random skin end addEvent("loginTerror", true) addEventHandler("loginTerror", getRootElement(), loginTerror) When i click gui button "terrorbt" it debug error: " Bad argument @ 'spawnPlayer' " Please help me MTA:SA scripts/gamemodes/misc: http://www.mtasa.xn.pl
Moderators Zango Posted November 21, 2010 Moderators Posted November 21, 2010 function loginTerror (source) is wrong, you do not need to manually pass source as parameter as it is a hidden variable. You set source to local player correctly in client code, so use function loginTerror ()
dzek (varez) Posted November 21, 2010 Posted November 21, 2010 NEVER call variable source. Multi theft auto tools - replace cars and peds, move your map or compile your Lua files online! programista php rzeszów Need free webhosting for your small site? PM me. Need help with portforwarding? PM me. Do not PM me asking for help with scripting. Having problems with port forwarding? Send me pm, I can do whole thing for you using TeamViewer (already helped about 20 people, no worries)!
MatXpl Posted November 21, 2010 Author Posted November 21, 2010 Thanks it work ! MTA:SA scripts/gamemodes/misc: http://www.mtasa.xn.pl
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now