Basic Poison Script?

Looking for a simple auto-poison weapon type script that I can set to a single key to re-DP my kryss during combat. I'm still manually poisoning my weapons like a newb during KOTH and field-fighting haha. I used to have one, but can't find it thru a billion lines of Skype conversation.

Would be very helpful, thank you! :)
 

halygon

Grandmaster
Here is what I use:

Code:
if counter 'cntr-16' < 1
  headmsg 'OUT OF POISONS'
else
  useskill 'Poisoning'
  waitfortarget 1500
  findtype 0xf0a
  target! 'found'
  waitfortarget 1500
  target! '1hweapon'
endif

You can see that I have a counter that I check for a count of my potions. I have a swap weapon hotkey that sets the alias of "1hweapon", so you can either use the same alias or put your own in there.
 

Firecrest

Grandmaster
can this be done to poison a whole bag and refill from a keg?
So fill empty bottle, target non poisoned weapon, etc.
 
Top