Changeset 2333
- Timestamp:
- 06/28/08 00:59:36 (6 months ago)
- Location:
- trunk/mods/ca
- Files:
-
- 8 modified
-
LuaRules/Gadgets/unit_replace_comm.lua (modified) (1 diff)
-
ModOptions.lua (modified) (1 diff)
-
units/armfig.lua (modified) (1 diff)
-
units/armhawk.lua (modified) (1 diff)
-
units/concept_con.lua (modified) (1 diff)
-
units/concept_factory.lua (modified) (1 diff)
-
units/corvamp.lua (modified) (1 diff)
-
units/fighter.lua (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/mods/ca/LuaRules/Gadgets/unit_replace_comm.lua
r2267 r2333 97 97 local function Chicken(cmd, line, words, playerID) 98 98 local _, _, _, playerTeam = GetPlayerInfo(playerID) 99 if (not tobool(Spring.GetModOptions(). hiddenunits)) then100 Spring.Echo("You may only join the chicken clan after enabling the mod option ' Unlock Hidden Units'")99 if (not tobool(Spring.GetModOptions().chickenfaction)) then 100 Spring.Echo("You may only join the chicken clan after enabling the mod option 'Enable Chicken Faction'") 101 101 return 102 102 -
trunk/mods/ca/ModOptions.lua
r2231 r2333 142 142 key = 'HiddenUnits', 143 143 name = 'Unlock Hidden Units', 144 desc = "** For Testing Purposes ** Enables the building of hidden units and structures not in the game . Typing .chicken immediately after the game starts replaces your commander with a chicken drone. \nkey: hiddenunits",144 desc = "** For Testing Purposes ** Enables the building of hidden units and structures not in the game through the concept factory. \nkey: hiddenunits", 145 145 type = 'bool', 146 146 def = false, 147 147 }, 148 { 149 key = 'ChickenFaction', 150 name = 'Enable Chicken Faction', 151 desc = "Typing .chicken immediately after the countdown timer replaces your commander with a chicken drone. \nkey: chickenfaction", 152 type = 'bool', 153 def = false, 154 }, 148 155 { 149 156 key = 'BackupPlayers', -
trunk/mods/ca/units/armfig.lua
r2321 r2333 74 74 mainDir = "0 0 1", 75 75 maxAngleDif = 60, 76 onlyTargetCategory = "VTOL HOVER FLOAT SINK SATELLITE", 76 77 }, 77 78 -
trunk/mods/ca/units/armhawk.lua
r2271 r2333 70 70 beamTime = 0.01, 71 71 beamttl = 15, 72 canAttackGround = 0, 72 73 coreThickness = 0.5, 73 74 craterMult = 0, -
trunk/mods/ca/units/concept_con.lua
r2309 r2333 14 14 15 15 buildoptions = { 16 "roostfac",17 16 "concept_factory", 18 17 "armasp", -
trunk/mods/ca/units/concept_factory.lua
r2324 r2333 38 38 "core_slicer", 39 39 "armpt2", 40 "chicken_drone", 40 41 }, 41 42 -
trunk/mods/ca/units/corvamp.lua
r2270 r2333 66 66 areaOfEffect = 8, 67 67 avoidFriendly = true, 68 canAttackGround = 0, 68 69 collideFriendly = false, 69 70 craterBoost = 1, -
trunk/mods/ca/units/fighter.lua
r2331 r2333 64 64 mainDir = "0 0 1", 65 65 maxAngleDif = 60, 66 onlyTargetCategory = "VTOL HOVER FLOAT SINK SATELLITE", 66 67 }, 67 68