public MovePlayer(id)
new origin[3]
get_user_origin(id,origin,0) // Gets the current location the player is at
origin[2] = origin[2] + 10 // Adds + 10 to the players hight
set_user_origin(id,origin) // Moves the player to the location stored in origin
}