Quote:
Originally Posted by Drebin
Show us the enum/array PlayerInfo gets it's data from.
But could it be that
pawn Код:
if(OwnableCarID[playerid] == PlayerInfo[OwnableCarOffer[playerid]]) { }
Should be
pawn Код:
if(OwnableCarID[playerid] == PlayerInfo[playerid][OwnableCarOffer[playerid]]) { }
?
|
No.. actually OwnableCarOffer is the one who offers the car , so it's a player...
Anyways tried that and now this error appears , replacing the older one:
pawn Код:
error 033: array must be indexed (variable "OwnableCarOffer")
Also tried your method , Faisal_khan , but I get tag mismatch warning...