Hello,
I have the following code in a script:
_veh = ["SKODA","SKODARED","SKODAGREEN","SKODABLUE","TruckV3SCivil"]
car = nearestobject[ch2,"_veh"]
ch1 domove getpos car
ch2 domove getpos car
But it doesnt work, however if I do this then it does:
car = nearestobject[ch2,"skodared"]
ch1 domove getpos car
ch2 domove getpos car
Is there something wrong with how I have defined the array, or do arrays not work for nearestobject?
Ben