07.02.2009, 14:03
Quote:
|
Originally Posted by Dreftas
And now other thing :}
For example script is counting and on 5.. i write /stoptimer text apeears in chat window "Timer sopped at 5 seconds", how to make that? |
pawn Код:
if (strcmp(cmdtext, "/stoptimer", true) == 0)
{
KillTimer(lol);
new str[128];
format(str, sizeof(str), "Timer stopped at %d seconds.", abc);
abc = 0;
SendClientMessageToAll(COLOR_GREEN, str);
return 1;
}

