Quote:
Originally Posted by papedo
You have no return in this command
pawn Код:
if (strcmp("/abot", cmdtext, true, 10) == 0) { if(IsValidActor(0)) {
new msg[MAX_MSG_SIZE]; new Float:a; GetActorFacingAngle(0, a); format(msg, MAX_MSG_SIZE, "GetActorFacingAngle actor %d current_angle %.1f", 0, a); SendClientMessage(playerid, COLOR_DEFAULT, msg); SetActorFacingAngle(0, 180.0); GetActorFacingAngle(0, a); format(msg, MAX_MSG_SIZE, "SetActorFacingAngle actor %d set 180.0 current_angle %.1f", 0, a); SendClientMessage(playerid, COLOR_DEFAULT, msg); } return 1; }
|
It does not fix the error in SetActorFacingAngle();