13.08.2015, 19:40
PHP код:
forward dialog3(playerid);
public dialog3(playerid)
{
new Float:health;
GetPlayerHealth(playerid,health);
if (health < 80.0) {
SendClientMessage(playerid,red,"[NGP]: you cannot use cmds while you in a fight or lossing health");
}else{
SetTimerEx( "dialog3", 15000, false, "i",playerid);
}
return 1;
}