CG Apollos
  • CG Apollos
  • 100% (Exalted)
  • Commander in Chief Topic Starter
19 years ago
For the tech reinforcement pad, you can have different OCLs, like this:

;---------------------------------------
Behavior = OCLUpdate ModuleTag_05 ; Context window is a reaction to this, no CommandSet
MinDelay = 120000
MaxDelay = 120000
CreateAtEdge = Yes ; as opposed to just creating on self

FactionTriggered = Yes ; This requires a controlling player before it works
FactionOCL = Faction:America OCL:OCL_ReinforcementPadUSAVehicle
FactionOCL = Faction:AmericaSuperWeaponGeneral OCL:OCL_SWGen_ReinforcementPadUSAVehicle
FactionOCL = Faction:AmericaLaserGeneral OCL:OCL_LGen_ReinforcementPadUSAVehicle
FactionOCL = Faction:AmericaAirForceGeneral OCL:OCL_AFGen_ReinforcementPadUSAVehicle

FactionOCL = Faction:China OCL:OCL_ReinforcementPadCHIVehicle
FactionOCL = Faction:ChinaTankGeneral OCL:OCL_TnkGen_ReinforcementPadCHIVehicle
FactionOCL = Faction:ChinaInfantryGeneral OCL:OCL_InfGen_ReinforcementPadCHIVehicle
FactionOCL = Faction:ChinaNukeGeneral OCL:OCL_NukeGen_ReinforcementPadCHIVehicle

FactionOCL = Faction:GLA OCL:OCL_ReinforcementPadGLAVehicle
FactionOCL = Faction:GLAToxinGeneral OCL:OCL_ToxGen_ReinforcementPadGLAVehicle
FactionOCL = Faction:GLADemolitionGeneral OCL:OCL_DemoGen_ReinforcementPadGLAVehicle
FactionOCL = Faction:GLAStealthGeneral OCL:OCL_StlthGen_ReinforcementPadGLAVehicle
End
;---------------------------------------

Is it possible to have this same system except with command sets?

Thanks,
AuroraAlphaHL2
Sponsor
fleetatks
19 years ago
What would be the advantadge of having it as a command set?
Email me if you ever need help (edited signature November 6th, 2014)
CG Apollos
  • CG Apollos
  • 100% (Exalted)
  • Commander in Chief Topic Starter
19 years ago
Many. Lets say you have a neutral building and you want to give each team a special unit or upgrade there. Maybe some team-specific abilitys. There are tons of things you can do with a command set.
CommieDog
19 years ago
I believe that you'd have to add code to give every faction a faction-specific upgrade granted with the respective Command Center (look at how the Toxin General gets the toxin-based upgrades that way). Then you could add a whole bunch of CommandSetUpgrade modules, each corresponding to a specific faction's upgrade and intended CommandSet.
UserPostedImage 
CommieDog: Because someone has to do your dirty work for you
CG Apollos
  • CG Apollos
  • 100% (Exalted)
  • Commander in Chief Topic Starter
19 years ago
Hmm... Ok, thanks. I will try that.