Jump to content
Sign in to follow this  
Ton_41

Delete all vehicle in server

Recommended Posts

How i delete all vehicle and disable vehecle to spawn in my server. 

Share this post


Link to post
Share on other sites

In the types.xml file change the following

    <type name="OffroadHatchback">
        <nominal>0</nominal>
        <lifetime>3</lifetime>
        <restock>1800</restock>
        <min>0</min>
        <quantmin>-1</quantmin>
        <quantmax>-1</quantmax>
        <cost>100</cost>
        <flags count_in_cargo="0" count_in_hoarder="0" count_in_map="1" count_in_player="0" crafted="0" deloot="0"/>
    </type>

to

    <type name="OffroadHatchback">
        <nominal>0</nominal>
        <lifetime>3</lifetime>
        <restock>1800</restock>
        <min>0</min>
        <quantmin>-1</quantmin>
        <quantmax>-1</quantmax>
        <cost>100</cost>
        <flags count_in_cargo="0" count_in_hoarder="0" count_in_map="0" count_in_player="0" crafted="0" deloot="0"/>
    </type>

You can also do the same with the doors wheels and trunk ect.

Hope this helps

RaDaR

  • Beans 1

Share this post


Link to post
Share on other sites
3 hours ago, radar121 said:

In the types.xml file change the following


    <type name="OffroadHatchback">
        <nominal>0</nominal>
        <lifetime>3</lifetime>
        <restock>1800</restock>
        <min>0</min>
        <quantmin>-1</quantmin>
        <quantmax>-1</quantmax>
        <cost>100</cost>
        <flags count_in_cargo="0" count_in_hoarder="0" count_in_map="1" count_in_player="0" crafted="0" deloot="0"/>
    </type>

to


    <type name="OffroadHatchback">
        <nominal>0</nominal>
        <lifetime>3</lifetime>
        <restock>1800</restock>
        <min>0</min>
        <quantmin>-1</quantmin>
        <quantmax>-1</quantmax>
        <cost>100</cost>
        <flags count_in_cargo="0" count_in_hoarder="0" count_in_map="0" count_in_player="0" crafted="0" deloot="0"/>
    </type>

You can also do the same with the doors wheels and trunk ect.

Hope this helps

RaDaR

And vehicle already in server. how to delete all in map?

Share this post


Link to post
Share on other sites

Go to mpmissions\dayzOffline.chernarusplus\storage_68376\data\ and delete vehicles.bin.

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×