GivePlayerMoney(playerid)
GivePlayerScore(playerid)
GetPlayerScore(playerid)
#define premio
if(dialogid == premio)
{
if(response == 1)
{
if(listitem == 0)
{
GivePlayerMoney(playerid, 20000)
}
if(listitem == 1)
{
GivePlayerScore(playerid, 10)
}
}
}]
ShowPlayerDialog(playerid, premio, DIALOG_STYLE_LIST, "Premios", "Dinheiro - 20 mil\nLevel - 10", "Ok", "Cancelar");
C:\Documents and Settings\Luis Paulo\Desktop\Brasil Straim Hard\gamemodes\Dten03x.pwn(2072) : warning 217: loose indentation
C:\Documents and Settings\Luis Paulo\Desktop\Brasil Straim Hard\gamemodes\Dten03x.pwn(2745) : warning 217: loose indentation
C:\Documents and Settings\Luis Paulo\Desktop\Brasil Straim Hard\gamemodes\Dten03x.pwn(2817) : warning 217: loose indentation
C:\Documents and Settings\Luis Paulo\Desktop\Brasil Straim Hard\gamemodes\Dten03x.pwn(3552) : warning 217: loose indentation
C:\Documents and Settings\Luis Paulo\Desktop\Brasil Straim Hard\gamemodes\Dten03x.pwn(12225) : warning 217: loose indentation
C:\Documents and Settings\Luis Paulo\Desktop\Brasil Straim Hard\gamemodes\Dten03x.pwn(12239) : warning 217: loose indentation
C:\Documents and Settings\Luis Paulo\Desktop\Brasil Straim Hard\gamemodes\Dten03x.pwn(18821) : error 017: undefined symbol "GivePlayerScore"
C:\Documents and Settings\Luis Paulo\Desktop\Brasil Straim Hard\gamemodes\Dten03x.pwn(29398) : warning 217: loose indentation
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
if(dialogid == premio)
{
if(response == 1)
{
if(listitem == 0)
{
GivePlayerMoney(playerid, 20000);
}
if(listitem == 1)
{
SetPlayerScore(playerid, 10);
}
}
}
format(string, sizeof(string), "~g~]] ~w~%s Venceu! ~g~]]", GetPlayerNameEx(playerid));
GameTextForAll(string, 5000, 3);
ShowPlayerDialog(playerid, premio, DIALOG_STYLE_LIST, "Premios", "Dinheiro - 20 mil\nLevel - 10", "Ok", "Cancelar");
switch(dialogid)
{
case premio:
{
if(response == 1)
{
switch(listitem)
{
case 0: GivePlayerMoney(playerid, 20000);
case 1: GivePlayerScore(playerid, 10);
}
}
}
}
|
recomendo que use switch...
pawn Код:
|