24.07.2013, 17:33
bom tavo fasendo um sistema de VIP com dias e tal di uma olhada no sistema do paulor e no biel cop mais os dias nгo desse ai resolvir faser um Gettime e da esses erros
COD
pawn Код:
C:\Users\pppp\Desktop\BRASIL RPG VTN\gamemodes\GM.pwn(10595) : error 035: argument type mismatch (argument 2)
C:\Users\pppp\Desktop\BRASIL RPG VTN\gamemodes\GM.pwn(10596) : error 035: argument type mismatch (argument 1)
pawn Код:
if(strcmp(cmd, "/darvip", true) ==0) {
{
new aname[50];
if(pAdmin[playerid] >= 5){
new ID;
new Dias;
new plid;
new tmp[256];
new string[256];
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)){
SendClientMessage(playerid, Vermelho, "| ERRO | Digite : /darvip [id] [dias].");
return 1;
}
plid = strval(tmp);
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)){
SendClientMessage(playerid, Vermelho,"| ERRO | Digite : /darvip [id] [dias].");
return 1;
}
Dias = strval(tmp);
if(!strlen(tmp)) {
SendClientMessage(playerid, Vermelho,"| ERRO | Digite : /darvip [id] [dias].");
return 1;
}
if(!IsPlayerConnected(plid))
{
SendClientMessage(playerid,0xBFBFBFAA,"Player nгo online.");
return 1;
}
else
{
GetPlayerName(playerid,aname,sizeof(aname));
format(string, sizeof(string), "Vips/%s.ini", playerid);
dini_IntSet(file, (gettime() + (Dias * 24 * 60 * 60))); //Linha 10595
dini_IntSet((File, "Dias", (gettime() + (Dias * 24 * 60 * 60))); // linha 10596
dini_IntSet(file,"Dias",Dias);
dini_IntSet(file, "VIP",1);
format(file,sizeof(file),"| INFO | O administrador deu VIP para o player %s por %d dias.",aname,Dias);
SendClientMessageToAll(0xFF8080AA,file);
return 1;
}
}
}
}