So if you do not want to become??? else if ( strcmp( cmd, "!heal", true ) == 0 )
{
new Float:Health; GetPlayerHealth( playerid, Health );
if ( Health >= 100 ) SendClientMessage( playerid, COLOR_YELLOW, ">> Error: You are healthy." );
else
{
TogglePlayerControllable(playerid,0);
SetTimer("Healing",5000,0);
SetPlayerHealth( playerid, 100.0 );
GameTextForPlayer(playerid, "Helaed.. ~w~pleace wait.");
}
return 1;
}
public Healing(playerid)
{
TogglePlayerControllable(playerid, 1);
}