rusztamas Posted March 29, 2017 Share Posted March 29, 2017 (edited) Script: function gmtpjatekos(admin, parancs, jatekos) if not getElementData(admin, "gm", true) then outputChatBox ("Nincs jogod a parancs használatához.", admin, 255, 0, 0, true) end if not jatekos then outputChatBox ("Hibás szintaxis. Helyes: /"..parancs.." [játékosnév]", admin, 255, 0, 0, true) end if jatekos then local jatekos = getPlayerFromName(jatekos) local jatekosPosX, jatekosPosY, jatekosPosZ = getElementPosition(jatekos) setElementPosition (admin, jatekosPosX+2, jatekosPosY+2, jatekosPosZ) outputChatBox ("Teleportáltál: "..jatekos..".", admin, 255, 0, 0, true) outputChatBox ("Teleportált hozzád: "..admin..".", jatekos, 255, 0, 0, true) end end addCommandHandler ("goto", gmtpjatekos) Simple goto script, but not working, it teleports me to the player, but it wont write the 2 outputs in the chatbox. Help pls? Edited March 29, 2017 by rusztamas Link to comment
NeXuS™ Posted March 29, 2017 Share Posted March 29, 2017 Which line are you getting the error for? 1 Link to comment
rusztamas Posted March 29, 2017 Author Share Posted March 29, 2017 1 minute ago, NeXuS™ said: Which line are you getting the error for? Link to comment
NeXuS™ Posted March 29, 2017 Share Posted March 29, 2017 outputChatBox ("Teleportáltál: "..getPlayerName(jatekos)..".", admin, 255, 0, 0, true) outputChatBox ("Teleportált hozzád: "..getPlayerName(admin)..".", jatekos, 255, 0, 0, true) 2 Link to comment
rusztamas Posted March 29, 2017 Author Share Posted March 29, 2017 1 minute ago, NeXuS™ said: outputChatBox ("Teleportáltál: "..getPlayerName(jatekos)..".", admin, 255, 0, 0, true) outputChatBox ("Teleportált hozzád: "..getPlayerName(admin)..".", jatekos, 255, 0, 0, true) Works, thank you so much for you help! For the 3d time! Stay awesome. 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