What's new

Solved quick question

  • Thread starter jiantJEFF
  • Start date
  • Views 230
jiantJEFF

jiantJEFF

I'm just a Human xD
Messages
762
Reaction score
215
Points
125
Sin$
7
Is it possible to make no cars or boats spawn on the map?
so that others still have there cars where they go
 
Game Tuts

Game Tuts

Newbie
Messages
15
Reaction score
1
Points
35
Sin$
0
C:
if(drive_free){
                    SWITCH_ROADS_OFF(-2225.109,-1006.106,-10,2786.717,2126.596,1000);
                    SWITCH_AMBIENT_PLANES(false); //removes planes and cars
                }
                else{
                    SWITCH_ROADS_ON(-2225.109,-1006.106,-10,2786.717,2126.596,1000);
                    SWITCH_AMBIENT_PLANES(false);  //makes it so you don't need to turn on the function
                }
                return;
            }
Is it possible to make no cars or boats spawn on the map?
so that others still have there cars where they go
Yeah but only if you have a menu source to fix the Drive Free Function

without turning on the Drive Free Function you won't Be able too see Cars/Planes at the airport everybody else will see them

Also works every where on the Road Maps
 
Last edited:
Upvote 0
jiantJEFF

jiantJEFF

I'm just a Human xD
Messages
762
Reaction score
215
Points
125
Sin$
7
Thanks,

my problem was with the water more than anything,

I had freeze boats spawning in the water like normal boats and ppl nearby would freeze,

I just got rid of them, - problem solved
 
Upvote 0
Game Tuts

Game Tuts

Newbie
Messages
15
Reaction score
1
Points
35
Sin$
0
Updated to include boats and trains

C:
if(drive_free){
                    SWITCH_ROADS_OFF(-2225.109,-1006.106,-10,2786.717,2126.596,1000);
                    SWITCH_AMBIENT_PLANES(false);
                    SWITCH_AMBIENT_BOATS(false);
                    SWITCH_AMBIENT_TRAINS(false);
                }
                else{
                    SWITCH_ROADS_ON(-2225.109,-1006.106,-10,2786.717,2126.596,1000);
                    SWITCH_AMBIENT_PLANES(false);
                    SWITCH_AMBIENT_BOATS(false);
                    SWITCH_AMBIENT_TRAINS(false);
                }
                return;
            }
 
Upvote 0
Top Bottom
Login
Register