24.05.2012, 21:00
Iae galera, estou tentano arrumar um warn, de um sistema de cornick por dialog que achei aqui no samp forum, mas estб dano um warn maldito '-'
Aqui o Cod inteiro :
Dai da o seguinte warn :
Alguem me ajuda por favor ?
@Edit
Resolvido
Aqui o Cod inteiro :
pawn Код:
if (strcmp("/Cornome", cmdtext, true, 10) == 0)
{
ShowPlayerDialog(playerid, 2424, DIALOG_STYLE_LIST, "» Cores «", "Azul\nVermelho\nVerde\nAqua\nRosa\nAmarelo\nMarron\nLaranja\nRoxo", "Selecionar", "Cancelar");
}
pawn Код:
if(dialogid == 2424) {
if(response) {
if(listitem == 0) {
SetPlayerColor(playerid, 0x0000BBAA);
return 1;
}
if(listitem == 1) {
SetPlayerColor(playerid, 0xAA3333AA);
return 1;
}
if(listitem == 2) {
SetPlayerColor(playerid, 0x33AA33AA);
return 1;
}
if(listitem == 3) {
SetPlayerColor(playerid, 0xF0F8FFAA);
return 1;
}
if(listitem == 4) {
SetPlayerColor(playerid, 0xFFC0CBAA);
return 1;
}
if(listitem == 5) {
SetPlayerColor(playerid, 0xFFFF00AA);
return 1;
}
if(listitem == 6) {
SetPlayerColor(playerid, 0xA52A2AAA);
return 1;
}
if(listitem == 7) {
SetPlayerColor(playerid, 0xFF9900AA);
return 1;
}
if(listitem == 8) {
SetPlayerColor(playerid, 0x9900FFAA);
return 1;
}
return 1;
}
return 1;
}
return 0;
}
pawn Код:
gamemodes\Untitled.pwn(920) : warning 209: function "OnDialogResponse" should return a value
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Warning.
@Edit
Resolvido