07.09.2010, 21:27
Aee pessoal, quando eu do /gmx no meu serv as skin dos kra q tгo on n salva. ja tentei po no OnGameModeExit pra salva skin, ja tentei po no comando pra salva a skin + n daaaa... ajudem:
pawn Код:
if(strcmp(cmd, "/gmx", true) == 0)
{
if(PlayerInfo[playerid][pAdmin] >= 2800)
{
if(AdminInfo[playerid][aTrabalhando] == 1)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
pap_SalvarInt(i, "Skin", GetPlayerSkin(playerid));
}
LimparChat(999);
format(string, sizeof(string), "[ADMIN] %s deu GMX no servidor.", sendername);
SendClientMessageToAll(COLOR_FADE5, string);
GameTextForAll("~g~G~y~M~b~X~w~!", 1000, 0);
GameModeExit();
return 1;
}
else
{
SendClientMessage(playerid, COLOR_GRAD2, "Vocк nгo esta logado como admin. (Use: /ta)");
return 1;
}
}
else if(PlayerInfo[playerid][pAdmin] > 0 && PlayerInfo[playerid][pAdmin] < 2800)
{
SendClientMessage(playerid, COLOR_GRAD2, "Vocк й cargo baixo.");
return 1;
}
else if(PlayerInfo[playerid][pAdmin] == 0)
{
SendClientMessage(playerid, COLOR_GRAD2, "Vocк nгo й admin.");
return 1;
}
}