Alors voila comment on fait
forward Paye() // Tu declare ta CallBack
SetTimer("Paye", 5000, 1); // Tu demarre le timer
public Paye() // création de la callback
{
for(new i=0; i<MAX_PLAYERS; i++) // pour tout le monde
{
SendClientMessageToAll(COLOR_GREEN,"Jour De Paye !"); // Message
SendClientMessageToAll(COLOR_RED,"Tu as reçu 3500$ !"); // Message
GivePlayerMoney(i, 3500); // Son pognons
}
return 1; // termine la commande
}
Héhé =)
NV.