Page 25 of 77

Re: Complete Annihilation News

Posted: 05 Apr 2008, 15:55
by manored
Actual, thats on purpose, aircraft factories can be built underwater on CA. Reason is because they tough that doing this + allowing normal aircraft to land on water would eliminate the needs of seaplanes and make everthing simpler.I agree :)

Re: Complete Annihilation News

Posted: 06 Apr 2008, 18:23
by GBscientist
I am having a problem with disabling units in CA. I asked in the Help and Bugs forum, and the answers provided did not fix the problem. When I opened a support ticket at caspring.org it was closed without informing me of the resolution.

How do I get units to show up in the Disable Units Dialog. It is totally blank. I have been told that it was due to a compression issue with CA Downloader, but I have the latest version of Downloader and its still happening. I was told to try deleting archivecachev6.txt, but that also did not fix the problem.

Please help.

Re: Complete Annihilation News

Posted: 06 Apr 2008, 18:39
by Otherside
i dont think disabling units works in CA

cos CA has all unitdefs in a lua format unlike any other spring mod so i dont think the normal disabling method works so atm i think its impossible

ur only solution is for the people involved to agree to not build sumthing altho there is no unit in CA atm imo that really should be disabled :P

Re: Complete Annihilation News

Posted: 06 Apr 2008, 19:09
by KDR_11k
I think Evo uses lua unitdefs too. The lists should be taken from UnitSync though.

Re: Complete Annihilation News

Posted: 06 Apr 2008, 19:24
by GBscientist
I only play against bots and the only way to get them to not use a unit or structure is to disable it. I find the game is no fun for me when the bot starts to bombard me with nuclear missiles. If there is no way to disable the missile silos, CA is of no use to me.

Re: Complete Annihilation News

Posted: 06 Apr 2008, 19:39
by KDR_11k
Get antinukes, then the missiles won't reach you.

Re: Complete Annihilation News

Posted: 07 Apr 2008, 00:16
by Otherside
anti nuke is cheaper than nuke by far :P

just build one like KDR said :S the bot is still wasting a ton of more resources than u r and i doubt they r smart enuff to focus ur anti nuke

heck u can even cheat urself in a anti nuke if it bothers u so much :P

Re: Complete Annihilation News

Posted: 07 Apr 2008, 04:29
by GBscientist
Managing the anti-nuke's ammo supply is a pain in the butt. If there were an AI to do it for me, I'd consider it, but as it is, using anti-nukes takes all of my attention so offensive operations become impossible.

It's much easier just to disable nuclear weapons from the start.

Re: Complete Annihilation News

Posted: 07 Apr 2008, 04:51
by Otherside
theres a widget that autostockpiles 100 ammo on anything that has ammo

Re: Complete Annihilation News

Posted: 07 Apr 2008, 06:09
by GBscientist
Where might I get this widget?

Re: Complete Annihilation News

Posted: 07 Apr 2008, 07:53
by Evil4Zerggin
AFAIK it is included with Spring as a user widget. You may have to mouse wheel down to see it since mod widgets are listed first.

Re: Complete Annihilation News

Posted: 07 Apr 2008, 08:28
by Google_Frog
If you click on the ammo button multiple times you can stockpile multiple antinukes.

Re: Complete Annihilation News

Posted: 07 Apr 2008, 10:28
by Forboding Angel
press and hold ctrl, then click the button 5 times = 100 builds in queue

Re: Complete Annihilation News

Posted: 07 Apr 2008, 11:23
by [Krogoth86]
Forboding Angel wrote:press and hold ctrl, then click the button 5 times = 100 builds in queue
Holding CTRL should add in just 5 build orders per click if I'm not mistaken. If you want 100 just hold CTRL+Shift because then each click adds 100 build orders...

Re: Complete Annihilation News

Posted: 07 Apr 2008, 12:29
by ginekolog
Best solution:

use stockpiler widget and never wory about this again :)
..
.
Oh noe i gave my uber secret away :oops:

Code: Select all

--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
--
--  file:    unit_stockpile.lua
--  brief:   adds 100 builds to all new units that can stockpile
--  author:  Dave Rodgers
--
--  Copyright (C) 2007.
--  Licensed under the terms of the GNU GPL, v2 or later.
--
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------

function widget:GetInfo()
  return {
    name      = "Stockpiler",
    desc      = "Automatically adds 100 stockpile builds to new units",
    author    = "trepan",
    date      = "Jan 8, 2007",
    license   = "GNU GPL, v2 or later",
    layer     = 0,
    enabled   = false  --  loaded by default?
  }
end

--------------------------------------------------------------------------------
--------------------------------------------------------------------------------


function widget:UnitCreated(unitID, unitDefID, unitTeam)
  local ud = UnitDefs[unitDefID]
  if ((ud ~= nil) and (unitTeam == Spring.GetMyTeamID())) then
    if (ud.canStockpile) then
      -- give stockpilers 100 units to build
      Spring.GiveOrderToUnit(unitID, CMD.STOCKPILE, {}, { "ctrl", "shift" })
    end
  end
end


--------------------------------------------------------------------------------
--------------------------------------------------------------------------------

Re: Complete Annihilation News

Posted: 07 Apr 2008, 20:13
by manored
Well ideally you should have already kicked the AIs ass and ressurected everthing just to kick its ass again way before they have econ for a nuke :) Depends of what AI you are playing against tough.

Re: Complete Annihilation News

Posted: 07 Apr 2008, 20:57
by kiki
manored wrote:Well ideally you should have already kicked the AIs ass and ressurected everthing just to kick its ass again way before they have econ for a nuke :) Depends of what AI you are playing against tough.

This is soo fun! Thanks for the suggestion.

Re: Complete Annihilation News

Posted: 08 Apr 2008, 04:02
by GBscientist
ginekolog wrote:Best solution:

use stockpiler widget and never wory about this again :)
..
.
Oh noe i gave my uber secret away :oops:
[snip]
The stockpiler widget is already part of the list of widgets in LuaUI. How do I got about activating it? Sorry for the extreme newb question.

Re: Complete Annihilation News

Posted: 08 Apr 2008, 04:18
by Evil4Zerggin
Press F11 in-game to bring up the list of widgets, then click on it to activate it (the name will turn from red to green when activated).

Re: Complete Annihilation News

Posted: 08 Apr 2008, 04:25
by GBscientist
Thanks.