Poisoning Guide

I have 90.3 poisoning and my gain was 0.1 with one keg o.o holy mother...I am macroing at home. Is that the problem? I was not hungry.
 

Frye

Novice
Yo. so i know this is old n such. If anyone sees this.. I'm using greater poison on fishsteaks in a dungeon, and I've went from 70.7 to 71.3 on 2 kegs. That sound about right? Not using show real.
 

wil3ur

Grandmaster
make sure you're eating food until you're full and drink once an hour from the fountain east of the tailor shop in Britain. It'll give you a boost on training. You can also poison your noob dagger rather than fish cakes. I GM'd doing just my dagger.
 

Weiznit

New Member
//by Weiznit
//my... shit... don't... hang
//thanks to "her" on github for sharing (or writing) "alchemyfactory", which is where most of the syntax for this came from.
//
// this is only set up to do whatever type of poison that is in the bag that is selected. if you are on regular poison, just select that bag. you can //keep that bag on the floor or you can put the "GreaterPoisonBag" and "empty" bags in your backpack , but you will only be able to hold 3. good enough for a dungeon run. Happy grinding


@clearjournal

if not @findobject 'Food' 'any' 'backpack'

headmsg 'Select a piece of food to be poisoned'

promptalias 'Food'

endif

pause 100

//

if not @findobject 'GreaterPoisonbag'

headmsg 'Select the poison keg bag' '49'

promptalias 'GreaterPoisonbag'

endif

pause 100

//

if not @findobject 'empty'

headmsg 'Select the empty Keg Bag' '49'

promptalias 'empty'

endif

// poisoning

if not @findtype 0xf07 'any' 'backpack'

headmsg 'You are without an antidote!'

stop

endif

@clearjournal

usetype! 0x1940 'any' 'backpack'

//if you have poison

if skill 'poisoning' < 100 and findtype 0xf0a 'any' 'backpack'

pause 600

useskill 'Poisoning'

waitfortarget 2000

targettype! 0xf0a 0x0 'backpack'

waitfortarget 2000

target! 'Food'

pause 1000

if poisoned 'self'

usetype! 0xf07 0x0 'backpack'

endif

pause 250

pause 9750

//empty keg

elseif skill 'poisoning' < 100 and not findtype 0xf0a 'any' 'backpack'

if @findtype 0x1940 'any' 'backpack'

setalias 'targetKeg' 'found'

pause 600

moveitem 'targetKeg' 'empty'

pause 2500

endif

if @findtype 0x1940 'any' 'GreaterPoisonbag'

setalias 'targetKeg' 'found'

pause 600

moveitem 'targetKeg' 'backpack'

pause 600

usetype! 0x1940 'any' 'backpack'

pause 1000

usetype! 0x1940 'any' 'backpack'

pause 1000

usetype! 0x1940 'any' 'backpack'

pause 1000

else

headmsg 'there is no more poop juice to rub your food in'

stop

endif

else

headmsg 'I am now ready to assassinate world leaders!'

stop

endif

//long live Leon Czolgosz

//smash the state
 
Top