slt ... voila jai trouver sur le forum de sa-mp comment mettre l'heure du jeu syncros avec la realité aler voila le code
{
SetTimer("RealTimeUpdate",1,0); //SA VOUS LE METER DS [public OnGameModeInit()]
}
ET SA VOUS LE METEZ TOUT EN BAS
//------------------------------------------------------------------------------
public RealTimeUpdate()
{
new h=0, m=0, s=0; //setup time flags //string for format
gettime(h,m,s); //Get what the real time is
SetWorldTime(h); //Set world time to real time (only hours work)
SetTimer("RealTimeUpdate",1000,0); //reset interval (1000 = 1 second, 1000000 = ten miniutes)
return 1;
}