hi clinton, is there any way i can DL the bot?
Quote:
hi clinton, is there any way i can DL the bot?
Quote:
plz i neet it upload in anther site
Quote:
please help us clint!
plzzzzzzzzzzzzz Im a stupid eggy... send t me in my emalQuote:
plz i need program this site give me bandel plz send to me in my mail or upload in anther site [Only registered and activated users can see links. Click Here To Register...]
plz clintonselk send melee to my email [Only registered and activated users can see links. Click Here To Register...] or upload in anther site i need it man plzQuote:
R35 - working w/ 5180... still working on the crash bug.
man help me i have melee but i dont have update for it when patch 5173 i need Conquer that it can work in itQuote:
Also guys,
Replace the code in Melee.py with the following... it stops the crashing, but its goes a bit slower... maybe u guys can play w/ the delays to perfect it.
Good LuckCode:import math def distance(x1,y1,x2,y2): dx = x2 - x1 dy = y2 - y1 return dx*dx + dy*dy class CMob: def __init__(self, mobBase): self.X = GetXCoord(mobBase) self.Y = GetYCoord(mobBase) self.UID = RoleUID(mobBase) nextTime = TimeStamp() def update(): global nextTime if TimeStamp() < nextTime: return #print "Melee bot update()" heroBase = HeroBase() hx = GetXCoord(heroBase) hy = GetYCoord(heroBase) num = NumMobs() mobs = [] for i in range(0, num-1): mobBase = GetMob(i) if mobBase == 0: break if AniFlag(mobBase) == 32: continue if RoleUID(mobBase) > 0x0F423F: continue mobs.append(CMob(GetMob(i))) #print repr(num) + " mobs are on the screen." #print "The hero is positioned at (" + repr(hx) + ", " + repr(hy) + ")" nearMob = 0 nearDist = 100*100 for mob in mobs: mx = mob.X my = mob.Y if mx > 1000 or my > 1000 or mx < 0 or my < 0: break #print "A mob is seen at (" + repr(mx) + ", " + repr(my) + ")" dist = distance(hx,hy,mx,my) #print "he is " + repr(dist) + " units squared away" if dist < nearDist: nearMob = mob nearDist = dist if nearMob != 0: if nearDist > 16*16: dx = nearMob.X+1 - hx dy = nearMob.Y+1 - hy a = 16.0 / math.sqrt(dx*dx+dy*dy) dx = int(a * dx) dy = int(a * dy) Jump(hx + dx, hy + dy) nextTime = TimeStamp() + 1000 elif nearDist <= 4*4: Melee(nearMob.UID, nearMob.X, nearMob.Y) nextTime = TimeStamp() + 200 else: Jump(nearMob.X+1,nearMob.Y+1) nextTime = TimeStamp() + 1000 print "Melee bot loaded."