Page 1 of 1

Melee Macro 1

Posted: January 17th, 2004, 12:13 pm
by Tault_admin
This macro requires ACTool to use.

Code: Register to unlock hidden link

// Basic melee macro 
// 
// Author: Ingeloak  
// 
// This macro is good for starting out a new character.   
// It will repeatedly do three tasks: 
// 1. Fight a monster 
// 2. Loot the monster 
// 3. Rest 
// 
// Note: The macro assumes your character is standing and NOT in  
//     fighting mode when starting. 
//       
//      The macro also assumes you have: 
//     "a" selected as your "select next monster" hotkey, 
//    "c" selected as your "combat mode" hotkey,  
//    "f" selected as your "default action" hotkey,  
//      "z" selected as your "stand/sit" hotkey, and 
//  1024x768 as your display mode for the mouse coordinates  
//     (It may still work with different resolutions...). 
//      
 
// ENTRY POINT ******************************** 
SetActiveWindow Shadowbane  
Delay 1000  
 
Loop 10000  // Fight, 10,000 times 
 Call Fight 
End 
// TERMINATION POINT *************************** 
 
Procedure Fight 
 // Find a monster and fight it for 10 seconds 
 Keys t 
 Delay 100 
 Keys c 
 Delay 100 
 Keys a 
 Delay 10000 
End