You are not logged in.
Pages: 1
Hello
I want to place a car and i want to do it with CLEO mod but i dont know where to put it or how to make it i have sanny builder but i dont know where to put this line
-2035.194, 170.770, 28.462, 0, 401, 0, 1, 0, 100, 0, -1, -1
maybe you guys can help me
Offline
{$CLEO} 0A95: enable_thread_saving if 0@ == 0 then 014B: 1@ = init_parked_car_generator 401 color -1 -1 1 alarm 0 door_lock 0 0 10000 at -2035.194 170.770 28.462 angle 90.0 014C: set_parked_car_generator 1@ cars_to_generate_to 101 0@ = 1 end 0A93: end_custom_thread
new file, copy&paste, compile'n'copy.
Offline
Thank You Thank You
It Works Perfect:^
Offline
1 more question
How do i do it with more cars
Offline
Offline
btw, you do not even need for the extra local variable there, only 0A95 is needed:
{$CLEO} 0A95: enable_thread_saving 014B: 1@ = init_parked_car_generator 401 color -1 -1 1 alarm 0 door_lock 0 0 10000 at -2035.194 170.770 28.462 angle 90.0 014C: set_parked_car_generator 1@ cars_to_generate_to 101 0A93: end_custom_thread
Offline
{$CLEO} 0A95: enable_thread_saving 014B: 1@ = init_parked_car_generator 401 color -1 -1 1 alarm 0 door_lock 0 0 10000 at -2035.194 170.770 28.462 angle 90.0 014C: set_parked_car_generator 1@ cars_to_generate_to 101 0A93: end_custom_thread
why do you use 0A95: enable_thread_saving command?
what effect does it have?
I kinda write it like this (see below) and it works fine:
{$CLEO .cs} 014B: $MYCARH1 = init_parked_car_generator #HUNTER color 0 0 1 alarm 0 door_lock 0 0 10000 at 1550.0 1412.8 15.0 angle -270.0 014B: $MYCARH2 = init_parked_car_generator #HUNTER color 0 0 1 alarm 0 door_lock 0 0 10000 at 1550.0 1512.8 15.0 angle -270.0 014C: set_parked_car_generator $MYCARH1 cars_to_generate_to 101 014C: set_parked_car_generator $MYCARH2 cars_to_generate_to 101
Offline
one more thing, what's the difference between 09E2 and 014B ?
if car is parked with 09E2: 0002@ = parked_car_generator_w_numberplate ... it is not parked untill you go away from this place and go back there...
but if it is parked with 014B: 0001@ = init_parked_car_generator ... it is where it was parked even if you start the game at that point...
and.... how do I park PETRO with PETROTR connected to it?
Offline
Pages: 1