• You've discovered RedGuides 📕 an EverQuest multi-boxing community 🛡️🧙🗡️. We want you to play several EQ characters at once, come join us and say hello! 👋
  • IS THIS SITE UGLY? Change the look. To dismiss this notice, click the X --->
  • Unfortunately, yes, there is a suspension wave happening around the new tlp launch. :'( Please keep regular discussion to Suspension MegaThread and please consider submitting a Suspension report to RG.

Got the problem.. need solution (1 Viewer)

Hoecus

Member
Joined
Dec 6, 2006
RedCents
91¢
Ok, got the crashing problem figured out. Took me forever because I never watched my toon that was main tank/main looter. The game only boots the character that loots. As soon as he opens the corpse he is booted as well as any other character that loots... SO.... makes it dumb for me to farm things until I can get some help.

Anyone know what could be happening to boot me only when I loot?

Hoecus
 
It is the AFK Melee from here , I just modified to be simple and easy :

#include ninjadvloot.inc

Sub Main
/declare LootTotal int outer
/declare LootSlot int outer
:main
/doevents
/keypress F8
/if (${Spawn[gm].ID}) /q
/if (${Me.PctHPs}<=80) /goto :heal
/delay 1s

/if (!${Target.ID}) /target doomfire




/if (${Target.Type.Equal[Corpse]}) {
/warp target
/delay 1s
/call Lootcorpse
/warp t
/call lootcorpse
/keypress esc
}
/if (${Target.ID}) /goto :move
/goto :main



:move
/warp target
/keypress back hold
/delay .5s
/keypress up
/stick 7
/goto :kill

:kill
/delay 1s
/attack on
/stick 7
/goto :wait

:wait
/if (${Me.PctHPs}<12) {
/warp succor
/delay 1s
/warp succor
/fade
/delay 40s
/goto :heal
}
/doevents
/if (!${Target.ID}) /goto :main
/if (${Target.ID}) /goto :kill


:heal
/if (${Me.PctHPs}>80) /goto :main
/if (${Me.PctHPs}<=80) {
/delay 10s
/goto :heal
}


Hoecus
 
Please enclose any macros you post inside code tags so it shows up correctly
PHP:
 [code=rich] [/CODE]


No clue where your loot code came from but that's whats crashing you. Below is from Ninjadvloot.inc

Rich (BB code):
| Usage: add the following to your macro for looting
| 	#include Ninjadvloot.inc
|	/call SetupAdvLootVars
|	/call LootMobs


1. add /call SetupAdvLootVars

Rich (BB code):
Sub Main
/declare LootTotal int outer
/declare LootSlot int outer
/call SetupAdvLootVars
:main
/doevents

Change Lootcorpse to LootMobs
Rich (BB code):
/call Lootcorpse

Rich (BB code):
/call LootMobs
 
Got the problem.. need solution

Users who are viewing this thread

Back
Top