Iam looking for a way to get the angles of the direction iam looking in a given situation, i have used this to get my origins:
PHP Code:
public get_origin(id)
{
new origin[3]
get_user_origin(id, origin)
client_print(id, print_console, "%i, %i, %i", origin[0], origin[1], origin[2])
return PLUGIN_HANDLED
}
But i cant find a away to get my angles... any ideas?