Quote:
Originally Posted by jlalt
PHP код:
if(!strcmp(Vehicles[i][carowner], PlayerName(playerid), false))continue;
the above code checks if vehicle owner is not the same with player name, so it should be like that:
PHP код:
if(strcmp(Vehicles[i][carowner], PlayerName(playerid), false))continue;
|
i already thought something like that.
Thanks mate