Jump to content

getElementPosition


WiBox

Recommended Posts

Posted (edited)

I'm trying to do:

    
    function getposition (player)
        outputChatBox("ur position is " .. getElementPosition(player) .. " LOL ",player,0,255,0)
    end
    addCommandHandler("pos", getposition)

But it only show me the X position how I can make it so it show x, y and z ?

Edited by SSKE
Posted (edited)
function getposition ()
   local x, y, z = getElementPosition(localPlayer)
    outputChatBox("ur position is "..x..","..y..","..z.." LOL ",0,255,0)
end
addCommandHandler("pos", getposition)

 

Edited by DeadthStrock
  • Thanks 1
Posted (edited)

oh :fp: , Thanks ^_^

Attempt to concatenate global 'y' (a nil value)

 ,, no problem I fix it... 

Edited by SSKE
Posted (edited)

I changed localPlayer to player and added it into function (player)

np it worked anyway thanks :D 

Edited by SSKE

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...