Page 1 of 1

razor script for fighting npcs please?

Posted: Tue Jul 20, 2010 9:26 pm
by trajan
can someone post a script for razor that i can copy to equip multiple skinning knives as they break and continously use bandaids to heal a npc as i am sparring it?

Thanks

Re: razor script for fighting npcs please?

Posted: Tue Jul 20, 2010 10:40 pm
by nightshark
just add

if (hands = empty)
equip by type skinningknife
endif

into your macro.

so heal + equip skinningknife macro would be

if (hands = empty)
equip by type skinningknife
wait 1s // action delay, so your bandages will successfully apply if your hands empty - not really needed
endif
doubleclick (bandages)
wait for target (timeout 1)
absolute target (npc)
wait 6s // change this based on how often you want to apply aids

Re: razor script for fighting npcs please?

Posted: Wed Jul 21, 2010 4:10 pm
by JimmyTheDriver
You really don't even need an IF to accomplish the knife part. At the start of every healing loop, just have an equip by type and target skinning knife. It will equip one whether or not your hands are empty.

equipbytype (skinning kife)
doubleclick (bandages)
wait for target (timeout 1)
absolute target (npc)
wait X seconds // the X value goes down as you gain skill as you will need to heal faster.

-Jimmy