Poisoning

Anything and all.

Moderators: Murderator+, Murderator

Post Reply
Knight1106
Posts: 64
Joined: 2005-09-08 18:38:12

Poisoning

Post by Knight1106 »

What is wrong ? i'm wanting poison a weapone but this script doesn't funtions... Sometimes, when i put other commands, appears "Unknow Command ..... ". How do i get it funtion ?

Code: Select all

sub poison()
     uo.waittargettype('0x1404') ; Weapon
     uo.useskill('Poisoning')
     uo.waittargettype('0x0f0a') ;Poison Bottles
end sub



How do I i do "AttackLast" Command in INjection ?

thanks for help...
PCGamer
Posts: 125
Joined: 2005-08-12 03:04:00

Post by PCGamer »

Try uo.poison('weapon') or bind a key with command "poison weapon_item" and be shure that "poison bottle then object" is not checked in main menu.
I NEED HELP at viewtopic.php?t=4903
Knight1106
Posts: 64
Joined: 2005-09-08 18:38:12

Post by Knight1106 »

Code: Select all

sub main()
     uo.poison('0x0f43') ;Weapon
endsub


I Did it, but appears "Can't see the target"...

what do I do now ?
Leo
Expert!
Posts: 791
Joined: 2005-01-15 19:15:05
Location: Dragon World
Contact:

Post by Leo »

Code: Select all

sub Poison()
   UO.FindType('0x0F0A','0x0998','backpack')
   If UO.FindCount() > 0 Then
      UO.WaitTargetType('0x1404', 'finditem' ) 
      UO.UseSkill( 'Poisoning' )
   Else
      UO.Print( 'Bottles not found!' )
   Endif
endsub
Knight1106
Posts: 64
Joined: 2005-09-08 18:38:12

Post by Knight1106 »

Leo wrote:

Code: Select all

sub Poison()
   UO.FindType('0x0F0A','0x0998','backpack')
   If UO.FindCount() > 0 Then
      UO.WaitTargetType('0x1404', 'finditem' ) 
      UO.UseSkill( 'Poisoning' )
   Else
      UO.Print( 'Bottles not found!' )
   Endif
endsub


Hey Leo, I tried your script but it doesn't function so well. I Made this and it function:

Code: Select all

sub Poison()
 uo.findtype('0x143e','backpack')
 uo.poison('finditem')
end sub


but is so boring to stay every time changing the Type of the weapon... Is there something that i could do to put the Type of the weapon that i seted in ",setarm 1" ???

plz someone help me !
Post Reply