Lloyd Logan Posted November 27, 2012 Posted November 27, 2012 I stopped scripting for about 3 months, i feel i have forgotten everything function mycoords (thePlayer, command) local x, y, z getElementPostition ( thePlayer ) outputChatBox ( "X pos " .. x .. " Y pos " .. y .. " Z pos" .. z ".") end addCommandHandler("mycoords", mycoords) attempt to call global 'getElementPosition' Should be easy for you guys!
abu5lf Posted November 27, 2012 Posted November 27, 2012 (edited) function mycoords (thePlayer, command) local x, y, z = getElementPosition ( thePlayer ) outputChatBox ( "X pos " .. x .. " Y pos " .. y .. " Z pos" .. z ".") end addCommandHandler("mycoords", mycoords) Edited November 27, 2012 by Guest
Anderl Posted November 27, 2012 Posted November 27, 2012 You wrote "setElementPostition" instead of "setElementPosition" and forgot a '=' after variable names.
Jaysds1 Posted November 28, 2012 Posted November 28, 2012 function mycoords (thePlayer, command) local x, y,z = getElementPosition( thePlayer ) --forgot to put the '=' symbol outputChatBox ( "X pos " .. x .. " Y pos " .. y .. " Z pos" .. z .. ".") --forgot to add the last '..' after the z coordinate end addCommandHandler("mycoords", mycoords)
Castillo Posted November 28, 2012 Posted November 28, 2012 Jaysd: Your script is the same as 3ɑsн8 ɑʟsнɾq's.
Jaysds1 Posted November 28, 2012 Posted November 28, 2012 Jaysd: Your script is the same as 3ɑsн8 ɑʟsнɾq's. sorry, but he had an error at the end in outputchatbox. Read my comments.
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