pawn - Tag mismatch player health -
i'm trying health of player i'm getting tag mismatch error on code below.
new health; getplayerhealth(playerid, health);
hopefully can me, important server.
this common problem in sa:mp (which presume you're developing for). getplayerhealth gives player's health float, you're saving untagged variable.
to fix this, change new health;
new float:health;
Comments
Post a Comment