26.09.2011, 03:11
Cole isso que tu postou no Pawno e tenta compilar se tu conseguir te dou um reputation (Y),
Podia ao menos compilar os code que posta antes mesmo de postar.
@EDIT: Lipe eu consegui perfeitamente, ele salvou a pasta e o nome. Vocк deve estar errando algo :/
Criou a pasta correta? e como vocк estб tentando usar isso, em comando?
Aqui funcionou perfeitamente, eu criei a pasta Vip, e funfou. Tente ai, se estб tudo correto, qualquer coisa fale aqui novamente.
Podia ao menos compilar os code que posta antes mesmo de postar.
@EDIT: Lipe eu consegui perfeitamente, ele salvou a pasta e o nome. Vocк deve estar errando algo :/
Criou a pasta correta? e como vocк estб tentando usar isso, em comando?
pawn Код:
#include <a_samp>
#include <Dini>
#define Vipado "Vip/%s.ini"
new Nome[MAX_PLAYER_NAME];
new Vip[MAX_PLAYERS];
public OnPlayerConnect(playerid)
{
new String[50]; GetPlayerName(playerid,Nome,sizeof(Nome));
format(String, sizeof(String), Vipado, Nome);
dini_Create(String);
dini_IntSet(String,"Vip",0);
SetarPlayer(playerid);
return 1;
}
public OnPlayerDisconnect(playerid, reason)
{
SalvarPlayer(playerid);
return 1;
}
public OnPlayerCommandText(playerid, cmdtext[])
{
if(!strcmp(cmdtext,"/vip", true))
{
Vip[playerid] = 1;
return 1;
}
return 0;
}
SalvarPlayer(playerid)
{
GetPlayerName(playerid, Nome, sizeof(Nome));
new String[50];
format(String, sizeof(String), Vipado, Nome);
dini_IntSet(String,"Vip", Vip[playerid]);
return 1;
}
SetarPlayer(playerid)
{
GetPlayerName(playerid, Nome, sizeof(Nome));
new String[50];
format(String, sizeof(String), Vipado, Nome);
Vip[playerid] = dini_Int(String, "Vip");
return 1;
}