Jump to content

Recommended Posts

Hello, i want to use EOS to spawn zombies on map but i don't know how.

 

I read the "read me.doc" but i don't understand what i need to put in this for zombies spawn:

 

null =[[" EOSzone1"],[2,1],[2,2],[1,3],[1],[2],[1,2],[1,0,35,WEST,FALSE,FALSE]] call EOS_Spawn;

 

Share this post


Link to post
Share on other sites

Look into the tutorial of EOS 

 

It is described in the PDF manual I think. Don't know if that works with your zombie mod, though.

 

1.) you have to create an own faction first in the unitpools.sqf file (add any single unit name in the approproate container manually) 

 

Could look something like this in the unitpools.sqf (here I added RHS Russians as a new faction #5):
 

// EAST RHS VMF
    if (_faction==5) then {
    _InfPool=    ["rhs_vmf_flora_officer","rhs_vmf_flora_efreitor","rhs_vmf_flora_junior_sergeant","rhs_vmf_flora_machinegunner_assistant","rhs_vmf_flora_grenadier","rhs_vmf_recon_arifleman","rhs_vmf_flora_rifleman","rhs_msv_riflemanF","rhs_vmf_flora_LAT","rhs_vmf_flora_grenadier_rpg","rhs_vmf_recon_marksman","rhs_vmf_recon_rifleman_scout","rhs_vmf_flora_machinegunner","rhs_vdv_mflora_at"];
    
    _ArmPool=    ["rhs_bmp2_msv","rhs_btr80a_vmf","rhs_prp3_vmf","rhs_t80","rhs_zsu234_aa","rhs_bmp3_late_msv","rhs_t72bd_tv","rhs_sprut_vdv","rhs_bmd2","rhs_btr80a_vmf","rhs_bmp2_vmf","rhs_prp3_vmf"];
    _MotPool= ["rhs_gaz66_vmf","rhs_tigr_sts_3camo_vmf","rhs_gaz66_ammo_vmf","rhs_uaz_open_MSV_01","RHS_Ural_Flat_MSV_01","rhs_gaz66o_msv","rhs_gaz66_msv","RHS_Ural_MSV_01","RHS_Ural_Flat_MSV_01","RHS_Ural_Zu23_VDV_01","RHS_BM21_VDV_01","rhs_gaz66_zu23_vdv"];
    _ACHPool=    ["RHS_Mi24V_FAB_vvsc","RHS_Ka52_UPK23_vvsc","RHS_Mi24P_CAS_vdv","rhs_mi28n_s13_vvsc","rhs_mi28n_vvsc","rhs_mi28n_vvs","RHS_Su25SM_CAS_vvs"];
    _CHPool=    ["RHS_Mi8mt_Cargo_vv","RHS_Mi8AMTSh_UPK23_vvsc","RHS_Mi24V_FAB_vvsc","RHS_Ka52_UPK23_vvsc","RHS_Mi8mt_Cargo_vdv"];
    _uavPool=    ["rhs_pchela1t_vvs"];
    _stPool=    ["rhs_KORD_high_MSV","RHS_ZU23_MSV","RHS_AGS30_TriPod_MSV","rhs_SPG9M_MSV","RHS_NSV_TriPod_VDV","rhs_Kornet_9M133_2_vdv","rhs_SPG9M_VDV","LOP_TKA_Igla_AA_pod","rhs_2b14_82mm_msv","rhs_D30_msv"];
    _shipPool=    ["B_G_Boat_Transport_01_F","O_Boat_Armed_01_hmg_F"];
    _diverPool=    ["O_diver_exp_F","O_diver_F","O_diver_TL_F"];
    _crewPool=    ["rhs_vmf_flora_driver", "rhs_vmf_flora_crew","rhs_vmf_flora_officer","rhs_vmf_flora_efreitor","rhs_vmf_flora_junior_sergeant","rhs_vmf_flora_machinegunner_assistant","rhs_msv_riflemanF","rhs_vmf_flora_LAT","rhs_vmf_flora_grenadier_rpg","rhs_vmf_recon_marksman","rhs_vmf_recon_rifleman_scout"];
    _heliCrew=    ["rhs_pilot_combat_heli","rhs_pilot_combat_heli","rhs_vmf_recon_rifleman_scout","rhs_vmf_recon_arifleman","rhs_vmf_flora_junior_sergeant","rhs_vmf_flora_LAT","rhs_msv_riflemanF","rhs_msv_riflemanF","rhs_vmf_flora_LAT","rhs_vmf_flora_grenadier_rpg","rhs_vmf_recon_marksman","rhs_vmf_recon_rifleman_scout"];
    };

 

2.) reference of this faction #5 in the right place in the openme.sqf, eg.

 

null = [["EOSmix_1","EOSmix_2","EOSmix_3","EOSmix_4","EOSmix_5","EOSmix_6","EOSmix_7","EOSmix_8","EOSmix_9","EOSmix_10","EOSmix_11"],[8,1],[6,2],[5,2,90],[5,99],[6],[2,0,80],[5,1,500,EAST,FALSE,FALSE]] call EOS_Spawn;

  • Like 2

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

×