11.10.2011, 19:37
Tente Ai Nao Sei Se Vai Dar Certo
pawn Код:
CMD:criarg(playerid,params[])
{
new NomeP[MAX_PLAYER_NAME],GNOME[24],GLEMA[24],arquivo[60];
if(sscanf(params, "ss[24]",GNOME,GLEMA))
{
SendClientMessage(playerid,-1,"Uso: /criarg [nome] [lema]");
}
else
{
GetPlayerName(playerid,NomeP,sizeof(NomeP));
format(arquivo, sizeof(arquivo),"Gangs/%s.ini",GNOME);
if(!fexist(arquivo)) INI_Create(arquivo);
INI_Open(arquivo);
INI_WriteString("Nome",GNOME);
INI_WriteString("Lema",GLEMA);
INI_WriteString("Dono",NomeP);
INI_Save();
INI_Close();
}
return 1;
}