06.06.2011, 00:37
Quote:
you can get the player roation with GetPlayerFacingAngle . then just make a nice textdraw that shows your direction :P
|
And i was looking on wiki and found this
pawn Код:
new Float:Angle, string[26];
GetPlayerFacingAngle(playerid, Angle);
format(string, sizeof(string), "Your facing angle: %0.2f", Angle);
SendClientMessage(playerid, 0xFFFFFFFF, string);
pawn Код:
public(playerid,Float:Angle)
{
new Float:Angle, string[26];
format(string, sizeof(string), "Your facing angle: %0.2f", Angle);
SendClientMessage(playerid, 0xFFFFFFFF, string);
return ;
}