07.01.2014, 20:36
Amigo, Na Proxima Vez Procure Pois Nao Vou Dar Tudo Na Mao.
Recomendo Vc Comeзar Pelo Wiki!
https://sampwiki.blast.hk/wiki/Main_Page_PT
Da Proxima Vez, Procure Direito
1 - Click Aqui!
https://sampforum.blast.hk/showthread.php?tid=156569
Recomendo Vc Comeзar Pelo Wiki!
https://sampwiki.blast.hk/wiki/Main_Page_PT
Da Proxima Vez, Procure Direito
1 - Click Aqui!
https://sampforum.blast.hk/showthread.php?tid=156569
pawn Код:
#include dof2 //Baixe a include DOF2
//comeзo do GM
#define RECORD_ONLINE "/GM/arquivos/Record.cfg"
new Recorde;
new Online;
// No OnGameModeInit
if(DOF2_FileExists(RECORD_ONLINE))
Recorde = DOF2_GetInt(RECORD_ONLINE, "RecordeJogadores");
else
{
DOF2_CreateFile(RECORD_ONLINE);
DOF2_SetInt(RECORD_ONLINE, "RecordeJogadores", 0);
Recorde = 0;
}
// No OnPlayerDisconnect
Online--;
// No OnPlayerConnect
Online++;
if(Online > Recorde)
{
Recorde = Online;
DOF2_SetInt(RECORD_ONLINE, "RecordeJogadores", Recorde);
format(string, sizeof(string),"O Recorde de jogadores online й: %d", Recorde);
SendClientMessageToAll(COLOR_YELLOW,string);
}