Алхимия Инвизиболити

Ask for scripts here

Moderators: Murderator+, Murderator

Post Reply
Greidon[Gods]
Posts: 54
Joined: 2006-12-26 09:32:20
Contact:

Алхимия Инвизиболити

Post by Greidon[Gods] »

Есть у кого нибудь скрипт на варку инвизок? Search не принес результатов :(
IIpocTo TaK
Posts: 35
Joined: 2006-09-16 00:40:39

Post by IIpocTo TaK »

Не может быть чтобы серчь в этом вопросе не помог....

Code: Select all

sub Alchemy(reagent, min_reg, choice)
 while UO.Count('0x0F0E','0x0000')>0 AND UO.Count(reagent)>=min_reg
  UO.DeleteJournal()
  UO.Exec("waitmenu 'What sort of potion do you want to' "+choice)
  UO.UseType(reagent)
  while NOT UO.InJournal("You put") AND NOT UO.InJournal("You toss the failed")
   wait(800)
  wend
 wend
 gong(2)
end sub
 

#==============================================================
#                   greater agility potion
#--------------------------------------------------------------
sub LavaBomb()
 alchemy('0x0F8F', 6, "'Lava Bomb'")
end sub
 

#==============================================================
#                   deadly poison potion
#--------------------------------------------------------------
sub Poison()
 alchemy('0x0F88', 4, "'Poison'")
end sub

 

#==============================================================
#              poison potion
#--------------------------------------------------------------
sub Greater_Poison()
 alchemy('0x0F88', 4, "'Greater Poison'")
end sub
 

#==============================================================
#                   invisibility potion
#--------------------------------------------------------------
sub Invisibility()
 alchemy('0x0F91', 4, "'Invisibility'")
end sub
 
#==============================================================
#                    total mana potion
#--------------------------------------------------------------
sub Total_Mana()
 alchemy('0x0F87', 6, "'Total Mana'")
end sub
 

#==============================================================
#                    Heal potion
#--------------------------------------------------------------
sub Shrink()
 alchemy('0x0F78', 10, "'Shrink'")
end sub
 

#==============================================================
#                    Greater Heal potion
#--------------------------------------------------------------
sub Greater_Heal()
 alchemy('0x0F85', 7, "'Greater Heal'")
end sub
 

#==============================================================
#                    Greater Cure potion
#--------------------------------------------------------------
sub Greater_Cure()
 alchemy('0x0F84', 6, "'Greater Cure'")
end sub
 

#==============================================================
#                    Stoneskin potion
#--------------------------------------------------------------
sub Stoneskin()
 alchemy('0x0F85', 1, "'Stoneskin'")
end sub
 

#==============================================================
#                    Night Sight potion
#--------------------------------------------------------------
sub Nightsight()
 alchemy('0x0F8D', 2, "'Nightsight'")
end sub
#==============================================================
#                    Total refresh potion
#--------------------------------------------------------------
sub Total_Refresh()
 alchemy('0x0F7A', 6, "'Total Refresh'")
end sub
 

#==============================================================
#                    Greater Strength potion
#--------------------------------------------------------------
sub Greater_Strength()
 alchemy('0x0F86', 5, "'Greater Strength'")
end sub
 

#==============================================================
#                    Lesser Explosion potion
#--------------------------------------------------------------
sub Lesser_Explosion()
 alchemy('0x0F8C', 10, "'Lesser Explosion'")
end sub
 

#==============================================================
#                    Greater Explosion potion
#--------------------------------------------------------------
sub Greater_Explosion()
 alchemy('0x0F8C', 10, "'Greater Explosion'")
end sub
u0rypT
Posts: 175
Joined: 2004-12-30 18:13:16
Location: Russia
Contact:

Post by u0rypT »

Code: Select all

#Варим химию
sub ximik()
uo.print('u3 4ero MeLIIaeM?')
UO.Exec('addobject resyrs')
While UO.Targeting()
Wait(100)
wend
repeat
CheckLag()
uo.WaitMenu('What sort of potion do you','In')#Чо мутим, типо In или Total и тд
CheckLag()
uo.Useobject('resyrs')
CheckLag()
wait(10000)
CheckLag()
until UO.InJournal('stop')#Сообщение сюда вставь
end sub
Design, webdev, coding, c#, php, asp.net, xml, perl, sql, ajax, drawing, illustrating, restoration, photo, photoshop, schedule, pron, guitar, lead-guitar, js, jsp, java, dom, html, *nix, struts, cs, etc
Greidon[Gods]
Posts: 54
Joined: 2006-12-26 09:32:20
Contact:

Post by Greidon[Gods] »

Спасибо :roll:
Post Reply