04.12.2009, 00:45
TextDraw
04.12.2009, 02:43
On the top of your script:
pawn Код:
new Text:bomb;
new timerbomb[MAX_PLAYERS];
forward bombdone(playerid);
pawn Код:
public OnPlayerEnterCheckpoint(playerid)
{
bomb = TextDrawCreate(50.0, 200.0,"Planting a bomb...");
TextDrawShowForPlayer(playerid, bomb);
timerbomb[playerid] = SetTimerEx("bombdone", 10000, false, "d", playerid);
return 1;
}
pawn Код:
public OnPlayerLeaveCheckpoint(playerid)
{
TextDrawHideForPlayer(playerid, bomb); //The person left the checkpoint
KillTime(timerbomb[playerid]);
SendClientMessage(playerid,0x00FF00AA,"You left the checkpoint, try again.");
return 1;
}
pawn Код:
public bombdone(playerid)
{
SendClientMessage(playerid,0x00FF00AA,"You planted succesfull the bomb.");
TextDrawHideForPlayer(playerid, bomb);
DisablePlayerCheckpoint(playerid);
// ... other stuff ... //
return 1;
}
04.12.2009, 02:47
Thanks!
04.12.2009, 02:53
Quote:
Originally Posted by AlphaPirate
Thanks!
|
« Next Oldest | Next Newest »
Users browsing this thread: 2 Guest(s)