Jump to content

trigger problem


MatXpl

Recommended Posts

Posted

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
Posted

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 () 

Posted

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)!

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...