Posts: 108
Threads: 49
Joined: Sep 2013
Quote:
Originally Posted by liquor
Not sure if it will fix the problem but,
pawn Код:
if(IsACop(playerid) || IsALVMPDCop(playerid) return SendClientMessageEx(playerid, COLOR_GREY, "You must be a police officer.");
is missing a ) at the end of if(..... || IsALVMPDCop(playerid))
pawn Код:
if(IsACop(playerid) || IsALVMPDCop(playerid)) // <---- return SendClientMessageEx(playerid, COLOR_GREY, "You must be a police officer.");
|
Tried that and it didnt work, its still saying i must be a police officer.