Barba-negra 117 Posted January 21, 2019 Hello friends, greetings and all, I am trying to create an object as far as the position of another, but the message is throwing me an error: _localitation = central1 modelToWorld [-50,-50,0]; iluminacion = "Jeep" createVehicle position _localitation; but is giving me an error in #position, why? any ideas ? Share this post Link to post Share on other sites
pierremgi 4900 Posted January 21, 2019 position is waiting for an object or a location (village, town,... see BIKI) Try: iluminacion = "Jeep" createVehicle _localitation; 1 Share this post Link to post Share on other sites
Barba-negra 117 Posted January 21, 2019 Hello pierremgi , but I'm giving it here _localitation = central1 modelToWorld [-50,-50,0]; ,or is it bad?, central1 is an object placed on the map Share this post Link to post Share on other sites
NumbNutsJunior 65 Posted January 22, 2019 The command modelToWorld returns a position and you assigned that to variable _localitation. Then you tried to find the "position" of a position. Just replace "position _localitation" to just "_localitation" 1 Share this post Link to post Share on other sites
Barba-negra 117 Posted January 22, 2019 ah I understand, thank you, I'm going to review it Share this post Link to post Share on other sites