So, this only applies to Spider's Bite Poisons, and Rogues (w/e they get when they summon with the item I talk about below). THE RESULTING POISONS ARE NOTRADE. YOU CANNOT SELL THEM!!!
First, let me say that this REQUIRES Legends of Norrath. It's not very difficult to do, but may require some trial and error on your part.
As of August 13th, they unveiled a new scenario (which only lasts for the month of August, so hurry up!)
Details:
http://forums.station.sony.com/strategygames/posts/list.m?topic_id=21840&post_id=111950
----------
Step 1: Download LoN (You can get a stand alone client from their website if EQ's LoN crashes for you)
Step 2: Challenge, and Win Chalandria's Fang and claim it into EQ
Step 3: Download the macro I posted below.
Step 4: Put Chalandria's Fang into a General slot in your inventory
Step 5: /macro makepoison
Step 6: Wait, watch, and enjoy =)
I posted a screen shot, showing the poison/item I received on my character above 80. I assume it will match whatever level range you are.
------------
The REASON THIS WORKS:
The item summoned is granted immediately, instead of when the effect is cast. This means, as long as the effect is interrupted, you can re-use it w/o incurring a 20 hour recast timer.
Enjoy!
Warning: Potentially, they can track this... I can't imagine getting banned for it, but it could create some suspicion for your account due to the fact that you can only summon 1 every 20 hours (legitimately) and if you have 100+ only a few days after its been released.. suspicious? :P
MakePoison.mac
First, let me say that this REQUIRES Legends of Norrath. It's not very difficult to do, but may require some trial and error on your part.
As of August 13th, they unveiled a new scenario (which only lasts for the month of August, so hurry up!)
Details:
http://forums.station.sony.com/strategygames/posts/list.m?topic_id=21840&post_id=111950
----------
Step 1: Download LoN (You can get a stand alone client from their website if EQ's LoN crashes for you)
Step 2: Challenge, and Win Chalandria's Fang and claim it into EQ
Step 3: Download the macro I posted below.
Step 4: Put Chalandria's Fang into a General slot in your inventory
Step 5: /macro makepoison
Step 6: Wait, watch, and enjoy =)
I posted a screen shot, showing the poison/item I received on my character above 80. I assume it will match whatever level range you are.
------------
The REASON THIS WORKS:
The item summoned is granted immediately, instead of when the effect is cast. This means, as long as the effect is interrupted, you can re-use it w/o incurring a 20 hour recast timer.
Enjoy!
Warning: Potentially, they can track this... I can't imagine getting banned for it, but it could create some suspicion for your account due to the fact that you can only summon 1 every 20 hours (legitimately) and if you have 100+ only a few days after its been released.. suspicious? :P
MakePoison.mac
Rich (BB code):
|- MakePoison.mac
|- Created by Kallo ( 08 / 13 / 09 )
|- Steps:
|- (1) Put Chalandria's Fang in general inventory slot
|- (2) Change variable COUNT to however many you want (default is 20... one stack)
|- (3) /macro MakePoison.mac
|- (4) Sit and watch! =)
Sub Main
/declare index int outer
/declare count int outer 20
| indices start at 1
/for index 1 to ${count}
|--Make us standing!
/if (${Me.Ducking}) /keypress duck
|-- Wait a second; important, since rapid ducking can fail the macro
/delay 1s
/echo Making Poison #${index} of ${count}....
|-- Summon the Poison
/cast item "Chalandria's Fang"
|-- Duck to interrupt casting.
/keypress duck
|--Wait a second... for the item to appear on cursor..
/delay 1s
|--Add to inventory
/autoinv
/next index
/return
Last edited:




