05.09.2013, 14:45
This were the problem, thanks a lot I soloved it!
Should be
Other wise it will say loose indention.
Thanks a lot guys!
.
pawn Код:
}
else
{
SendClientMessage(playerid, Green, "You don't have any meat to sell");
}
return 1;
}
if(listitem == 1)
{
SendClientMessage(playerid, Green, "Should display the third altenative (Commands)");
}
return 1;
}
Should be
pawn Код:
else
{
SendClientMessage(playerid, Green, "You don't have any meat to sell");
}
return 1;
}
if(listitem == 1)
{
SendClientMessage(playerid, Green, "Should display the third altenative (Commands)");
}
return 1;
}
Thanks a lot guys!
