das ist das macro package das man von gewissen ebay scammern bekommt:
Bot 1 :
Bot 2
Dancedance
purer shit..
Bot 1 :
Code:
SETActiveWindow World of Warcraft
delay 2000 //initial delay
While 1=1 //main while loop
keys {tab} //target the nearest enemy
delay 250 //buffer delay to make sure the previous command Tab is finished
Loop 30 //inner loop. Loop X means loop x times
// Insert script commands here
//for example this will make your bot do action in hotkey2 slot 30 times PER ONE MONSTER! hopefully your target is dead after that!
//If your target dies before the loop is finished, it's OK as your char will not have a target hence will not waste mana casting spells
//He will just wait until the loop finishes, regen up in the meantime and acquire a new target.
keys 2
delay 1500 //delay of your action/spell
end //end of inner loop.
end //end of main while loop
Code:
SETActiveWindow World of Warcraft //always put this as the first line
delay 2000 //initial delay
While 1=1 //main while loop
//you may also use tab to target instead of mouse
//whichever works best for the situation
//keys {tab}
LeftClick //left click the mouse, used to target static spawns.
delay 500
keys 2 //uses hotkey2 which should be linked to a skill/spell your char uses in combat.
//the game delay of whatever action you perform + 1 sec.
//for example if your heroic strike takes 2 sec to cast, it should be delay 3000 (2sec+1sec)
delay 1500
keys 3 //another skill/spell action.
delay 1500
//insert as many actions as you want here.
//If the respawn is faster than you can regen, might want to add the keys /sit
//and keys /stand command to rest between fights.
end //whatever action is above will be repeated over and over.
Code:
//****************************************
// Visit us online at [url]www.weeatshit.com[/url]
//****************************************
SETActiveWindow World of Warcraft
delay 4000
While 1=1
delay 5000
keys {RETURN}
delay 200
keys /dance
delay 200
keys {RETURN}
end
Movement
SETActiveWindow World of Warcraft
delay 2000
While 1=1
KeyDown w 3000 //hold the w key for 3 sec = run north for 3 second
//********************
//insert your action codes here that you want the char to perform before turning
//******************
keydown a 490 //stop then turn left 90 degrees by holding the a key for 0.49 sec.
//Note: holding the a key for /delay 490 equals turning 90 degrees precisely. So it's about 5.4 delay per extra degree.
//So to turn 120 degrees, you will do 490+(5.4*30) = 652. ie: keydown a 652
//********************
//insert your action codes here that you want the char to perform after turning
//******************
KeyDown w 3000
keydown a 490
KeyDown w 3000
keydown a 490
KeyDown w 3000
keydown a 490
end