09.01.2011, 02:38
Quote:
return SendClientMessage(playerid,COLOR_WHITE,"Vehicle has been booted!"); |
Try chanching that to SendClientMessage(playerid,COLOR_WHITE,"Vehicle has been booted!");. That should work. If it won't work, just make it 'SendClientMessage' without return and add 'return 1;' at the bottom (you also can get a warning if you don't add 'return 1;')
pawn Код:
SendClientMessage(playerid,COLOR_WHITE,"Vehicle has been booted!");
return 1;
}