Macro to train poisoning.

Share your guides, how-tos, FAQs, and so forth. This is not for support -- post questions in General Discussion.
Post Reply
Tempest
Posts: 2507

Macro to train poisoning.

Post by Tempest »

If anyone has a macro to train the poisoning skill, it would be GREATLY appreciated.

Really don't know how to write shit soo..

:D
I T-Bagged Vander's corpse and he came back from the dead and attempted to bite my nutsack.
User avatar
The Silvertiger
Posts: 4469

Re: Macro to train poisoning.

Post by The Silvertiger »

I don't know if this works for our server, but if not get Zulu to fix it for you. My guess would be it would need some ifs and endifs in it + graphic fixing. Press play and find out. ;)

Code: Select all

////////////////////////////////////
//   This macro is designed for   //
//  training poisoning from 30.   //
//    Due to the fact that this   //
//  macro uses kegs, it is easier //
//    to macro from your house.   //
// Make sure you have 50+ greater //
//    cure potions on you and a   //
//         piece of food.         //
//                                //
//  Turn on loop and click play!  //
//                                //
//      ~~Made by kdivers~~       //
////////////////////////////////////
if skill 'poisoning' < 30 not @findobject 'LesserPoison'
  headmsg 'Select the lesser poison keg'
  promptalias 'LesserPoison'
endif
if skill 'poisoning' < 40 not @findobject 'Poison'
  headmsg 'Select the poison keg'
  promptalias 'Poison'
endif
if skill 'poisoning' < 68 not @findobject 'GreaterPoison'
  headmsg 'Select the greater poison keg'
  promptalias 'GreaterPoison'
endif
if not @findobject 'Food' 'any' 'backpack'
  headmsg 'Select a piece of food to be poisoned'
  promptalias 'Food'
endif
if not @findtype 0xf07 0x0 'backpack'
  headmsg 'Get some greater cure potions!
  stop
endif
if skill 'poisoning' < 30
  headmsg 'Buy more poisoning!'
  stop
elseif skill 'poisoning' < 40
  useobject! 'LesserPoison'
  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 10000
elseif skill 'poisoning' < 68
  useobject! 'Poison'
  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 10000
elseif skill 'poisoning' < 100
  useobject 'GreaterPoison'
  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 10000
else
  headmsg 'Poisoning complete!'
  stop
endif
Never forget June 4th 1989!
Selling List & Vendor

"Screenshots will never be used as evidence but more of a reference tool for us to help in our investigations."
Tempest likes this.
Top
Jackie Moon
Posts: 177

Re: Macro to train poisoning.

Post by Jackie Moon »

You beat a guy one time, and hes macroing poison lol. I'm not looking forward to a nox duel!
ortiz likes this.
Top
Tempest
Posts: 2507

Re: Macro to train poisoning.

Post by Tempest »

Jackie Moon wrote:You beat a guy one time, and hes macroing poison lol. I'm not looking forward to a nox duel!

Hey man, you fought with mortal!
I T-Bagged Vander's corpse and he came back from the dead and attempted to bite my nutsack.
Jackie Moon
Posts: 177

Re: Macro to train poisoning.

Post by Jackie Moon »

Not talking crap just dreading mind rot and nox
Post Reply