razor script for fighting npcs please?

Topics related to Second Age
Post Reply
trajan
Posts: 21
Joined: Sun Jul 18, 2010 6:02 pm

razor script for fighting npcs please?

Post 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

User avatar
nightshark
UOSA Subscriber!
UOSA Subscriber!
Posts: 4550
Joined: Mon Apr 20, 2009 10:47 pm

Re: razor script for fighting npcs please?

Post 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
<green> grats pink and co. .... the 3 of you f---ing scrubs together can blow up a bard. IMPRESSIVE

JimmyTheDriver
Posts: 158
Joined: Fri Apr 30, 2010 12:02 pm

Re: razor script for fighting npcs please?

Post 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

Post Reply