Quote:
Originally Posted by BullseyeHawk
pawn Код:
GetXYInFrontOfPlayer(playerid, &Float:x, &Float:y, Float:distance) { new Float:a; GetPlayerPos(playerid, x, y, a); GetPlayerFacingAngle(playerid, a); if (GetPlayerVehicleID(playerid)) { GetVehicleZAngle(GetPlayerVehicleID(playerid), a); } x += (distance * floatsin(-a, degrees)); y += (distance * floatcos(-a, degrees)); }
pawn Код:
new Float:x, Float:y, Float:z; GetPlayerPos(playerid, x, y, z); GetXYInFrontOfPlayer(playerid, x, y, 2.0); // CreateObject(1829, x, y, z, ...); // <== Do this yourself.
Hope I helped! Enjoy.
|
please be more spacific like were do i add it here is my command
PHP код:
if(!strcmp(cmdtext, "/test", true))
{
TogglePlayerControllable(playerid, 0);
ApplyAnimation(playerid,"ROB_BANK","CAT_Safe_Rob",4.1,1,1,1,1,1);
return 1;
}
were do i put it at?