; ******************* MINE TRACER ******************** ; ; this bot is quite simple, ; uses radar to track down enemy and if near enough ; lays mines ; ; the reason for writing this bot was, that i want to ; show that there doesn't exist a thing like the best ; bot ... ; Mine Tracer blasts bots like Gladys, LittleZ, Master, ; TridentX and Gunman away :-) ; ; written by GreatGeorge (Georg Schnabel), georg.schnabel@mycity.at #config engine=5 #config scanner=0 #config weapon=0 #config heatsinks=0 #config armor=2 #config mines=5 #def RANGE !SETUP mov ax, 1500 int I_OVERBURN !TRACK cmp [0], 100 jeq !NOACC opo P_THROTTLE, 100 opo P_STEERING, 30 !NOACC mov RANGE, ax cmp RANGE, 100 jb !FIRE !CHECK ipo P_RADAR, ax cmp ax, RANGE jb !TRACK opo P_STEERING, 25 jmp !TRACK !FIRE opo P_MINELAYER, 20 jmp !CHECK