13.08.2010, 19:38
(
Последний раз редактировалось peugeot; 14.08.2010 в 08:28.
)
pawn Код:
On The top of the script
#define COLOR_XFX 0x33FF00
#define ads "-Advertisement-"
#define ads_timer 200000 // should be two minutes, edit it w/e you want.
public OnGameModeInit()
{
SetTimer("ads",ads_timer,1);
return 1;
}
forward ads();
public ads()
{
new str[88];
format(str,88,"%s",ads);
SendClientMessageToAll(COLOR_XFX,str);
}