Lloyd Logan Posted November 27, 2012 Share 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! Link to comment
abu5lf Posted November 27, 2012 Share 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 Link to comment
Anderl Posted November 27, 2012 Share Posted November 27, 2012 You wrote "setElementPostition" instead of "setElementPosition" and forgot a '=' after variable names. Link to comment
Jaysds1 Posted November 28, 2012 Share 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) Link to comment
Castillo Posted November 28, 2012 Share Posted November 28, 2012 Jaysd: Your script is the same as 3ɑsн8 ɑʟsнɾq's. Link to comment
Jaysds1 Posted November 28, 2012 Share 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. 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