YOKO HELP ME> I need this !!

Anything and all.

Moderators: Murderator+, Murderator

Post Reply
joeliang
Posts: 7
Joined: 2004-08-07 16:58:11

YOKO HELP ME> I need this !!

Post by joeliang »

i got many poison potion in my backpack. how to use poisoning skill for one poison potion then work on a weapon. and next time use poisoning skill for another poison potion then work on to that weapon.

could u write a script that can repeat this action. thx u!
Yoko
Site Admin
Posts: 1964
Joined: 2004-04-03 16:49:38
Contact:

Post by Yoko »

i do write complete scripts only for some fee.
but i always may tell most important things

in your case it is something like
,poison weapon;ignore _poison
Thdin
Posts: 51
Joined: 2004-07-22 07:37:37

Post by Thdin »

Code: Select all


sub Poisoning()

VAR poisontime=5000

UO.Addobject('weapon')
While UO.Targeting()
Wait(100)
Wend

UO.Addtype('poisonpot')
While UO.Targeting()
Wait(100)
Wend

Poison:
UO.Findtype('poisonpot','-1','-1')
If UO.Findcount()>0
UO.Useskill('Poisoning')
Wait(1000)
UO.Target('weapon')
Wait(1000)
UO.Usetype('finditem')
Wait(poisontime)
goto Poison
Endif

endsub



That should do it. Wrote it up in a second. If your server takes longer or shorter change "poisontime" to whatever it matches. Remember, every 1000 is equal to 1 second. For example, 5000 is 5 seconds.

Enjoy :)
Last edited by Thdin on 2004-09-07 21:48:22, edited 1 time in total.
joeliang
Posts: 7
Joined: 2004-08-07 16:58:11

thank u very much Thdin

Post by joeliang »

i love u :)
Thdin
Posts: 51
Joined: 2004-07-22 07:37:37

Post by Thdin »

Thanks... ?

lol
joeliang
Posts: 7
Joined: 2004-08-07 16:58:11

hm. it doesn;t work well./

Post by joeliang »

but it donesn't choose poison potion and weapon automaticly after used poisioning skill. i have to select these two by MOUSE :*
joeliang
Posts: 7
Joined: 2004-08-07 16:58:11

what happend?

Post by joeliang »

what happend?hmm time to sleep now . it's 4:00am , tomorrow have a test!!!!!!!!!!,i will come back to see this morning later on :) . i love u :)
Thdin
Posts: 51
Joined: 2004-07-22 07:37:37

Post by Thdin »

You have to have more then 1 poison potion in your backpack otherwise the script ends. Keep all the poison potions and weapon in your pack and when you run the script you only have to target the pot and weapon once and then it will keep repeating.
Thdin
Posts: 51
Joined: 2004-07-22 07:37:37

Post by Thdin »

Nevermind. Ignore my last post and look at the script again. I changed it a bit. Try using that one now :)
Post Reply