Bonjour,
Si je ne me trompe pas, voici ce que tu dois faire.
Dans l'en tête de ton script, tu met :
forward TimerScott();
Dans ta commande, tu met :
SetTimer("TimerScott", 1000, 1);// 1000 = une seconde, calcule ^^
Puis,
Tu rajoute ce public :
publicTimerScott() {
new sText[256];
format(sText,sizeof(sText),"GetTickCount = %d",GetTickCount());
print(sText);
SendClientMessageToAll(0xFF0000, sText);
}
Après à toi de modifier comme tu veut.
sizeof(Raw);.