Vehicles dissapearing.

Hello everyone, does anyone know how to stop servers from deleting vehicles that are spawned in the mission editor? I found another thread but it seems to be dead, and it told me to look in the update object sqf, but unfortunately ours is a little different than his. If anyone has time, lemme know. Just for note, our server is hosted by survivalservers.com

Thank you,

A very confused admin.
 
Because Server anti hack bannd your vehicles,you need set varblie filter the check hakers.

You need use sarge ai and just change codes like these.

First,you need setup sarge ai from this link
http://opendayz.net/threads/sarge-ai-framework-public-release.8391/

Second,edit any vehicles in you mission.fsm like this,such as
Code:
class Item992
        {
            position[]={9479.2402, -0.15641846, 1866.5598};
            init="this setVariable [""Sarge"",1,true]";
            azimut=6;
            id=992;
            side="EMPTY";
            vehicle="kyo_microlight";
            skill=0.60000002;
        };
        class Item993
        {
            position[]={1954.6199, -0.081513993, 2245.3242};
            init="this setVariable [""Sarge"",1,true]";
            azimut=87;
            id=993;
            side="EMPTY";
            vehicle="tractorOld";
            skill=0.60000002;
        };

Now your vehicles will not disappered again.

thank you.
 
Because Server anti hack bannd your vehicles,you need set varblie filter the check hakers.

You need use sarge ai and just change codes like these.

First,you need setup sarge ai from this link
http://opendayz.net/threads/sarge-ai-framework-public-release.8391/

Second,edit any vehicles in you mission.fsm like this,such as
Code:
class Item992
        {
            position[]={9479.2402, -0.15641846, 1866.5598};
            init="this setVariable [""Sarge"",1,true]";
            azimut=6;
            id=992;
            side="EMPTY";
            vehicle="kyo_microlight";
            skill=0.60000002;
        };
        class Item993
        {
            position[]={1954.6199, -0.081513993, 2245.3242};
            init="this setVariable [""Sarge"",1,true]";
            azimut=87;
            id=993;
            side="EMPTY";
            vehicle="tractorOld";
            skill=0.60000002;
        };

Now your vehicles will not disappered again.

thank you.

Thanks man, but I got Xyber to tell me how to edit them in via database. Thank you anyway.
 
Back
Top