Giter Site home page Giter Site logo

Comments (1)

Qerbas avatar Qerbas commented on May 28, 2024

Here's an example of how I think the new village patrol vehicle variables should look, based on the Vanilla unit classes. With the types of vehicles split this way, the village patrol vehicles can be spawned in in a few different ways, with one way being going from a higher ratio of more deadly vehicles as the mission time goes on, or have it scaled based on the enemy frequency, or some combination of the two.

// Random array.  Vehicles patrolling or attacking villages split into light, medium, and heavy with light being armed cars (MRAPs, technicals, Humvees, etc), medium being armed APCs (wheeled or tracked), and heavy being main battle tanks and armored AA units.

a3e_arr_Escape_VillagePatrolVehicles_light = [
		"O_MRAP_02_hmg_F"
		,"O_MRAP_02_gmg_F"];
		if(Param_UseDLCApex==1) then {
		a3e_arr_Escape_MilitaryTraffic_EnemyVehicleClasses pushback "O_LSV_02_unarmed_F";
		a3e_arr_Escape_MilitaryTraffic_EnemyVehicleClasses pushback "O_LSV_02_armed_F";
		a3e_arr_Escape_MilitaryTraffic_EnemyVehicleClasses pushback "O_LSV_02_AT_F";
		};
		
a3e_arr_Escape_VillagePatrolVehicles_medium = [
		"O_APC_Wheeled_02_rcws_F"
		,"O_APC_Tracked_02_cannon_F"];

a3e_arr_Escape_VillagePatrolVehicles_heavy = [
		"O_APC_Tracked_02_AA_F"
		,"O_MBT_02_cannon_F"];
		if(Param_UseDLCTanks==1) then {
		a3e_arr_Escape_MilitaryTraffic_EnemyVehicleClasses pushback "O_MBT_04_cannon_F";
		a3e_arr_Escape_MilitaryTraffic_EnemyVehicleClasses pushback "O_MBT_04_command_F";
		};
		
a3e_arr_Escape_VillagePatrolVehicles_light_IND = [
		"I_MRAP_03_gmg_F"
		,"I_MRAP_03_hmg_F"
                ,"I_G_Offroad_01_armed_F"
		,"I_G_Offroad_01_AT_F"];
		
a3e_arr_Escape_VillagePatrolVehicles_medium_IND = [
		"I_APC_Wheeled_03_cannon_F"
		,"I_APC_tracked_03_cannon_F"];
		if(Param_UseDLCTanks==1) then {
		a3e_arr_Escape_MilitaryTraffic_EnemyVehicleClasses_IND pushback "I_LT_01_AA_F";
		a3e_arr_Escape_MilitaryTraffic_EnemyVehicleClasses_IND pushback "I_LT_01_AT_F";
		a3e_arr_Escape_MilitaryTraffic_EnemyVehicleClasses_IND pushback "I_LT_01_scout_F";
		a3e_arr_Escape_MilitaryTraffic_EnemyVehicleClasses_IND pushback "I_LT_01_cannon_F";
		};

a3e_arr_Escape_VillagePatrolVehicles_heavy_IND = [	
		"I_MBT_03_cannon_F"];

from co10_escape.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.