[DUV] muitos erros todos iguais
#4

Quote:
Originally Posted by wafffllesss
Isso acontece quando vc tem uma funзгo que retorna "Tipos" diferentes de respostas.

Exemplo:

pawn Code:
stock PlayerName(playerid){
  if(IsPlayerConnected(playerid)){
    new pname[MAX_PLAYER_NAME];
    GetPlayerName(playerid,pname,sizeof(pname));
    return pname;
  }
  return false;
}
Essa funзгo vai dar este erro pq ela retorna uma String ( "texto" ) e um Boolean ( false / true ). o certo seria:

pawn Code:
stock PlayerName(playerid){
  new pname[MAX_PLAYER_NAME];
  if(IsPlayerConnected(playerid)){
    GetPlayerName(playerid,pname,sizeof(pname));
  }
  return pname;
}
(no caso nem precisa usar IsPlayerConnected, soh usei de exemplo)
mais acho que nгo entendi
vocк quer dizer que eu posso estar usando
a mesma funзгo com diferentes nomes
Reply


Messages In This Thread
[DUV] muitos erros todos iguais - by hitachi_uchila - 05.03.2010, 16:39
Re: [DUV] muitos erros todos iguais - by Regalado_xD - 05.03.2010, 16:55
Re: [DUV] muitos erros todos iguais - by wafffllesss - 05.03.2010, 16:56
Re: [DUV] muitos erros todos iguais - by hitachi_uchila - 05.03.2010, 17:11
Re: [DUV] muitos erros todos iguais - by wafffllesss - 05.03.2010, 17:31
Re: [DUV] muitos erros todos iguais - by hitachi_uchila - 05.03.2010, 20:25

Forum Jump:


Users browsing this thread: 2 Guest(s)