18.04.2015, 15:22
Hey
Change this
To
Because when you use
! It is true
If you don't use it is false , so if he is not a cop then
And if he is a cop
If you understand what I say.. good day
Change this
Code:
else if(IsACopCar(vehicleid)) { if(IsACop(playerid)) { //other codes } }
Code:
else if(!IsACopCar(vehicleid)) { if(IsACop(playerid)) { //other codes } }
! It is true
If you don't use it is false , so if he is not a cop then
Code:
if(IsACop(playerid))
Code:
if(!IsACop(playerid))