I think SM is a pretty cool guy, eh builds unicycle-bots and doesn't afraid of anything
Sorry the exchange rate for that is awful, $AUD would be better :P
I need help with an custom AI. Basically, the chassis spins vertically while moving with torque reaction. Since the chassis will be spinning vertically, the AI will need to do this1. A custom inverted handler that switch it's facing 180 degrees. (The back is the front when inverted, so the bot moves in the same direction while the chassis spins).Here's is the bot for those interested.https://gametechmods.com/Robot_Exchange/DSL_LW/123savethewhales_LWBigWheel.bot
def Throttle(self, throttle): # if we're car steering and we're not moving much, throttle up if self.bCarSteering and self.last_turn_throttle != 0: speed = self.GetSpeed() if speed > 0 and speed < self.top_speed / 3: throttle = self.last_throttle + 10 elif speed < 0 and speed > -self.top_speed / 3: throttle = self.last_throttle - 10 throttle = min(max(throttle, -100), 100) if self.bInvertible and self.IsUpsideDown(): throttle = -throttle self.set_throttle = throttle self.Input('Forward', 0, throttle) self.DebugString(0, "Throttle = " + str(int(throttle)))
Now I hope I don't regret unleashing this scourge upon the tournament scene...
Edit2: Can you show the binding you used for this?
So is/ will someone work on my .py? If not, don't worry.
Quote from: Squirrel_Monkey on January 15, 2011, 06:24:01 AMSo is/ will someone work on my .py? If not, don't worry.I will have a crack at THz to SnS... still waiting for my real money though D:send me the robot too...
list.append(("LW - Big Wheel","TRFBD",{'invertible':True,'range':5,'radius':1,'topspeed':99,'throttle':100,'turn':100,'turnspeed':1,'weapons':(0,)}))