25.03.2009, 15:16
replace this:
if(SeatID <1 || SeatID > 3)
{
SendClientMessage(playerid, COLOR_GRAD1, "Seat number must be between 1-3");
}
with :
if(SeatID <1 || SeatID > 3)
{
SendClientMessage(playerid, COLOR_GRAD1, "Seat number must be between 1-3");
}
with :
pawn Код:
if(SeatID <1 || SeatID > 3)
{
SendClientMessage(playerid, COLOR_GRAD1, "Seat number must be between 1-3");
[b]return 1;[/b]
}