ice_brasil Posted May 12, 2013 Share Posted May 12, 2013 function motel (thePlayer) setElementInterior ( thePlayer, 15, 2215.8032226563, -1150.6900634766, 1025.796875 ) setTimer ( setElementInterior, 10000, 1, "Em 10 segundos!" ) outputChatBox ( "[#f1f1f1/Motel]#ff0000O player ".. getPlayerName(thePlayer) .." foi para o Motel vá tambem #f1f1f1/Motel", getRootElement(),255,20,0,true) end addCommandHandler ( "motel", motel ) I want a player to teleport after only 10 seconds What do wrong? Link to comment
xXMADEXx Posted May 12, 2013 Share Posted May 12, 2013 function motel (thePlayer) setElementInterior ( thePlayer, 15, 2215.8032226563, -1150.6900634766, 1025.796875 ) thePlayer = thePlayer setTimer ( function () setElementInterior(thePlayer,interiorIdHere) end, 10000, 1, thePlayer ) outputChatBox ( "[#f1f1f1/Motel]#ff0000O player ".. getPlayerName(thePlayer) .." foi para o Motel vá tambem #f1f1f1/Motel", getRootElement(),255,20,0,true) end addCommandHandler ( "motel", motel ) Link to comment
K4stic Posted May 12, 2013 Share Posted May 12, 2013 Try function motel (thePlayer) setElementInterior ( thePlayer, 15, 2215.8032226563, -1150.6900634766, 1025.796875 ) setTimer ( function (thePlayer) setElementInterior(thePlayer,interiorIdHere) end, 10000, 1 ) outputChatBox ( "[#f1f1f1/Motel]#ff0000O player ".. getPlayerName(thePlayer) .." foi para o Motel vá tambem #f1f1f1/Motel", getRootElement(),255,20,0,true) end addCommandHandler ( "motel", motel ) Link to comment
Guest Guest4401 Posted May 12, 2013 Share Posted May 12, 2013 addCommandHandler('motel', function(p) setTimer(setElementInterior,10000,1,p,15,2215.8032226563,-1150.6900634766,1025.796875) outputChatBox ("[#f1f1f1/Motel]#ff0000O player "..getPlayerName(p).." foi para o Motel vá tambem #f1f1f1/Motel",root,255,20,0,true) end ) 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