You could search the func wiki.
http://www.amxmodx.org/funcwiki.php?...igin&go=search
Searching with "origin" you
could have found natives get_user_origin and set_user_origin. There is actually an example for moving player origin's height 10 units in the set_user_origin page. This might be handy for you.
Quote:
Example:
Code:
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
}
|