17.03.2014, 21:41
Having a hard time defining "fix", but if you mean you have a warning of loose indentation, the below should fix this.
pawn Код:
CMD:atm(playerid, params[])
{
if(!IsAtATM(playerid))
{
SendClientMessageEx(playerid, COLOR_GREY, " You are not at an ATM!");
return 1;
}
ShowPlayerDialog(playerid,ATMSYSTEM,DIALOG_STYLE_LIST,"ATM System","Withdraw Money\nDeposit Money\nMy Balance\nWiretransfer","Done","Cancel");
return 1;
}