You got my vote for RA2 Wizard. Always and forever.
ALERT- Another WS coming up...
I'm fine with hugging reier
That drivetrain is overkill for a LW side popup.
class donQuichotte(AI.SuperAI): "donQuichotte strategy" name = "donQuichotte" # like omni but give 3 'Fire' command after the count down def __init__(self, **args): AI.SuperAI.__init__(self, **args)[color=red] self.reloadTime = 0 self.reloadDelay = 3 self.InverterTime = 0 self.fireDone = 0[/color] ... def Tick(self): # fire weapon if self.weapons:[color=red] if ( self.fireDone < 3 ) and (self.InverterTime <= 0) : self.Input("Fire", 0, 1) self.InverterTime = self.reloadDelay self.fireDone += 1[/color] ....AI.register(donQuichotte)
Craaig's bot