[Ajuda] Erros
#1

Linha:

pawn Код:
strreplace(pname, '_', ' ');
Erro:

pawn Код:
error 035: argument type mismatch (argument 2)
A linha de cуdigo serve para um comando para que quando aparece a mensagem que fique sem o simbolo "_".
Original : O Homem_Velho diz: exemplo.
Modificado: O Homem Velho diz: exemplo.
Reply
#2

Tenta:
PHP код:
strreplace(pname"_"" "); 
Reply
#3

Certo, acabou de resolver o erro.
para nao fazer spam de tуpicos vou postar aqui os meus outros erros:

pawn Код:
stock SetPlayerMoney(playerid, cash) // 996
{// 997
  ResetPlayerMoney(playerid);// 998
  return GivePlayerMoney(playerid, cash); // 999
} // 1000
 // 1001
stock strreplace(string[], find, replace) // 1002
{ // 1003
    for(new i=0; string[i]; i++) // 1004
    { // 1005
        if(string[i] == find) // 1006
        { // 1007
            string[i] = replace; // 1008
        } // 1009
    } // 1010
} // 1011
Erros:

pawn Код:
(996) : error 025: function heading differs from prototype
(997) : error 021: symbol already defined: "SetPlayerMoney"
(1002) : error 025: function heading differs from prototype
(1003) : error 021: symbol already defined: "strreplace"
(1011) : warning 209: function "strreplace" should return a value
Reply
#4

pawn Код:
stock SetPlayerMoneyEx(playerid, cash)
{// 997
  ResetPlayerMoney(playerid);
  GivePlayerMoney(playerid, cash);
  return true;
}
stock strreplace(string[], find, replace) // 1002
{
    for(new i=0; string[i]; i++) // 1004
    {
        if(string[i] == find)
        {
            string[i] = replace;
        }
    }
    return true;
}
Reply
#5

pawn Код:
(1002) : error 025: function heading differs from prototype
(1003) : error 021: symbol already defined: "strreplace"
(1011) : error 079: inconsistent return types (array & non-array)
pawn Код:
(1002) : stock strreplace(string[], find, replace) // 1002
(1003) : {
(1011) : }
Reply
#6

Estranho Aqui Pegou.

pawn Код:
symbol already defined: "strreplace"
Jб Estб Definido...

Olha o Meu
pawn Код:
#include a_samp

stock strreplace(string[], find, replace) // 1002
{
    for(new i=0; string[i]; i++) // 1004
    {
        if(string[i] == find)
        {
            string[i] = replace;
        }
    }
    return true;
}
pawn Код:
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)