[AJUDA] 1 ERRO! - 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] 1 ERRO! (
/showthread.php?tid=275258)
[AJUDA] 1 ERRO! -
Adriano499 - 08.08.2011
Olб pessoal me ajuda com esse erro aк?!
Код:
G:\oi\gamemodes\ARB.pwn(466) : error 035: argument type mismatch (argument 1)
pawn Код:
for(new i; i < sizeof(BadClans); ++i)
{
if(strfind(GetPlayerName(playerid, Nome,24),BadClans[i], true) != -1) //466
{
Obrigado desde jб.
Re: [AJUDA] 1 ERRO! -
Shadoww5 - 09.08.2011
PHP код:
new n[24];
GetPlayerName(playerid, n, 24);
for(new i; i < sizeof(BadClans); ++i)
{
if(strfind(n, BadClans[i], true) != -1)
{
Re: [AJUDA] 1 ERRO! -
CyNiC - 09.08.2011
Dentro da funзгo strfind nos 2 primeiros argumentos й preciso colocar uma string, GetPlayerName nгo retorna uma string, retorna o valor do tamanho do nome do jogador obtido na funзгo, por isso o erro. Pra corrigir use o cуdigo acima.
https://sampwiki.blast.hk/wiki/Strfind
https://sampwiki.blast.hk/wiki/GetPlayerName