14.01.2012, 19:44
Coloquei aqui funciono, pelomenos no pawno funciono
Agora meu problema seria pra por no RG ja tentei mais nгo consegui
to atй achando que fiz coisa errada ai
pawn Код:
SpawnPlayer(playerid);
SetPlayerScore(playerid, dini_Int(arquivo,"Level"));
SetPlayerMoney(playerid, dini_Int(arquivo,"Dinheiro"));
SetPlayerWantedLevel(playerid, dini_Int(arquivo,"LevelProcurado"));
LevelInfo[playerid][Admin] = dini_Int(arquivo,"Admin");
SetTimerEx("resp", 60 * 60000, true, "d", playerid);
GetPlayerName(playerid, nome, sizeof(nome));
printf("[Login] %s Logou no Servidor", nome);
pawn Код:
RG(playerid)
{
new Nome[MAX_PLAYER_NAME];
GetPlayerName(playerid, Nome, sizeof(Nome));
new String[128];
SendClientMessage(playerid, 0xFF0000AA, "================================================");
format(String, sizeof(String),"Meu Registro Geral <%s>",Nome);
SendClientMessage(playerid, 0xFFFF00AA,String);
format(String, sizeof(String),"Level: %d | Dinheiro: %d", GetPlayerScore(playerid), GetPlayerMoney(playerid));
SendClientMessage(playerid, COR_BRANCO,String);
SendClientMessage(playerid, 0xFF0000AA, "================================================");
return 1;
}