29.11.2010, 16:13
Hello I need this
Now I want that rigth side show textdraw and it Say's
10 sec more to plant the bomb
and it count to 0
then new textdraw at same place
40 sec until explosion
Код:
public OnPlayerEnterCheckpoint(playerid)
{
new string[256]; new playername [MAX_PLAYER_NAME];
GetPlayerName (playerid, playername, sizeof(string));
if(gTeam[playerid] == TEAM_BOMBER) {
format (string, sizeof(string), "YYY: %s (%d) YYY", playername, playerid);
SendClientMessageToAll (COLOR_WHITE, string);
SetTimerEx("Disable", 10000, false, "i", playerid);
} else if(gTeam[playerid] == TEAM_DEFEND) {
SendClientMessage (playerid, COLOR_RED, "YYYY");
}
return 1;
}
10 sec more to plant the bomb
and it count to 0
then new textdraw at same place
40 sec until explosion


?/