[Ajuda] Erro desconhecido - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Erro desconhecido (
/showthread.php?tid=576430)
Erro desconhecido -
SukMathcuck - 04.06.2015
Код:
2\Desktop\gamemode\gamemodes\BUL.pwn(37176) : error 006: must be assigned to an array
C:\Users\2\Desktop\gamemode\gamemodes\BUL.pwn(37182) : error 035: argument type mismatch (argument 1)
C:\Users\2\Desktop\gamemode\gamemodes\BUL.pwn(37186) : error 006: must be assigned to an array
C:\Users\2\Desktop\gamemode\gamemodes\BUL.pwn(37187) : error 006: must be assigned to an array
C:\Users\2\Desktop\gamemode\gamemodes\BUL.pwn(37187) : warning 204: symbol is assigned a value that is never used: "Material"
PHP код:
if (strcmp(cmd, "/materialorg", true) == 0)
{
new org, Material;
org = strtok(cmdtext, idx); //1 erro aqui
Material = strval(tmp);
if (!strlen(tmp))
{
return SendClientMessage(playerid, COLOR_WHITE, "USE: /materialorg [Organizaзгo] [Quantia]");
}
if (!strlen(Material)) //1 erro aqui
{
return SendClientMessage(playerid, COLOR_WHITE, "USE: /materialorg [Organizaзгo] [Quantia]");
}
org = strtok(cmdtext, idx); //1 erro aqui
Material = strtok(cmdtext, idx); //2 erro aqui
if (PlayerInfo[playerid][pAdmin] >= 5)
{
if (PlayerInfo[playerid][pAdminStats] != 0 && PlayerInfo[playerid][pAdmin] <= 5)
{
SendClientMessage(playerid, COLOR_GRAD1, "ERRO: Vocк nгo estб no modo admin! (/trabalhar)");
return true;
}
DepositarMaterialOrg(org, Material);
format(string, sizeof(string), "Vocк depositou %d de materias no\ncofre da organizaзгo id %d", Material, org);
ShowPlayerDialog(playerid, DIALOG0, DIALOG_STYLE_MSGBOX, "Materiais", string, "Fechar", "");
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, "ERRO: Vocк nгo tem nнvel administrativo suficiente.");
}
return true;
}
Estou tentando fazer um comando de depositar dinheiro na org, serб que alguem pode me ajudar resolver? nгo estou entendendo nada ali.. fiz e refiz
Re: Erro desconhecido -
SukMathcuck - 04.06.2015
Up! alguem... ae
Re: Erro desconhecido -
ipsLuan - 04.06.2015
Com zcmd й muito mais fбcil, amigo.
PHP код:
commnand(depositar, playerid, params[]) {
new
organizacao[56],
material
;
if(sscanf(params, "s[56], d", organizacao, material)) return SendClientMessage(playerid, -1, "ERRO!");
DepositarMaterialOrg(organizacao, material);
return 1;
}
Re: Erro desconhecido - JkS - 04.06.2015
Adicionou isto no final?
PHP код:
strtok(const string[], &index)
{
new length = strlen(string);
while ((index < length) && (string[index] <= ' '))
{
index++;
}
new offset = index;
new result[20];
while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
{
result[index - offset] = string[index];
index++;
}
result[index - offset] = EOS;
return result;
}
Ah, te recomendo usar YCMD/ZCMD juntamente com SSCANF. Strtok й ultrapassada.