quality Posted May 17, 2015 Share Posted May 17, 2015 (edited) I have the following in the play gamemode I created. It's the last part of the script. addEventHandler( "onPlayerWasted", getRootElement( ), function() setTimer (spawnPlayer, 1500, 1, source, 202.47, 99.30, 4.4 ) setElementModel ("onPlayerSpawn", source, 135) end ) Everything works perfect but setElementModel. When I die it happens this: What am I doing wrong? thank you. Also second little problem is this: I'm trying to make the adminteam script so when an admin dies he should spawn to his specified spawn not the random player's spawn.(the first example). So what I've done in the adminteam resoruce is (also the last part of the script): function setAdminTeam() if isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) then setTimer ("onPlayerWasted", spawnPlayer, 1500, 1, source, -1187, 179, 14) setElementModel ("onPlayerSpawn", source, 217) end end Thanks again. Edited May 18, 2015 by Guest Link to comment
xXMADEXx Posted May 17, 2015 Share Posted May 17, 2015 Your setElementModel is wrong. Use this: setElementModel( source, 214 ) Edit: Try using this: addEventHandler ( "onPlayerWasted", root, function ( ) setTimer ( function ( p ) if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) ) then spawnPlayer ( p, -1187, 179, 14, 0, 217 ); else spawnPlayer ( p, 202.47, 99.30, 4.4, 0, 135 ); end end, 1500, source ); end ); Link to comment
quality Posted May 18, 2015 Author Share Posted May 18, 2015 Your setElementModel is wrong.Use this: setElementModel( source, 214 ) Edit: Try using this: addEventHandler ( "onPlayerWasted", root, function ( ) setTimer ( function ( p ) if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) ) then spawnPlayer ( p, -1187, 179, 14, 0, 217 ); else spawnPlayer ( p, 202.47, 99.30, 4.4, 0, 135 ); end end, 1500, source ); end ); I get in console: bad argument at seTimer line 26 which is setTimer ( function ( p ) and in-game when I die as admin, I stay like this As regular player I also do not spawn. *EDIT: Link to comment
xXMADEXx Posted May 18, 2015 Share Posted May 18, 2015 Oops, I forgot an argument. Try this: addEventHandler ( "onPlayerWasted", root, function ( ) setTimer ( function ( p ) if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) ) then spawnPlayer ( p, -1187, 179, 14, 0, 217 ); else spawnPlayer ( p, 202.47, 99.30, 4.4, 0, 135 ); end end, 1500, 1, source ); end ); Link to comment
Enargy, Posted May 18, 2015 Share Posted May 18, 2015 Also try this. addEventHandler ( "onPlayerWasted", root, function ( ) setTimer(spawnAdmin, 1000, 1, source) end ); function spawnAdmin(player) if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(player)), aclGetGroup("Admin")) ) then spawnPlayer ( player, -1187, 179, 14, 0, 217 ); else spawnPlayer ( player, 202.47, 99.30, 4.4, 0, 135 ); end end Link to comment
quality Posted May 18, 2015 Author Share Posted May 18, 2015 Oops, I forgot an argument. Try this: addEventHandler ( "onPlayerWasted", root, function ( ) setTimer ( function ( p ) if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) ) then spawnPlayer ( p, -1187, 179, 14, 0, 217 ); else spawnPlayer ( p, 202.47, 99.30, 4.4, 0, 135 ); end end, 1500, 1, source ); end ); Does not work. unfortunately. Also try this. addEventHandler ( "onPlayerWasted", root, function ( ) setTimer(spawnAdmin, 1000, 1, source) end ); function spawnAdmin(player) if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(player)), aclGetGroup("Admin")) ) then spawnPlayer ( player, -1187, 179, 14, 0, 217 ); else spawnPlayer ( player, 202.47, 99.30, 4.4, 0, 135 ); end end But Enargy's script works perfectly and it is exactly what I want. I have no clue why you ended your script with ;, Engary's is smaller and more compact. Maybe you can explain what you tried to do lol. But enargy thank you man! appreciate works as I want. Link to comment
Enargy, Posted May 18, 2015 Share Posted May 18, 2015 Oops, I forgot an argument. Try this: addEventHandler ( "onPlayerWasted", root, function ( ) setTimer ( function ( p ) if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(source)), aclGetGroup("Admin")) ) then spawnPlayer ( p, -1187, 179, 14, 0, 217 ); else spawnPlayer ( p, 202.47, 99.30, 4.4, 0, 135 ); end end, 1500, 1, source ); end ); Does not work. unfortunately. Also try this. addEventHandler ( "onPlayerWasted", root, function ( ) setTimer(spawnAdmin, 1000, 1, source) end ); function spawnAdmin(player) if ( isObjectInACLGroup("user."..getAccountName(getPlayerAccount(player)), aclGetGroup("Admin")) ) then spawnPlayer ( player, -1187, 179, 14, 0, 217 ); else spawnPlayer ( player, 202.47, 99.30, 4.4, 0, 135 ); end end But Enargy's script works perfectly and it is exactly what I want. I have no clue why you ended your script with ;, Engary's is smaller and more compact. Maybe you can explain what you tried to do lol. But enargy thank you man! appreciate works as I want. You are welcome. Link to comment
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