injection

  1. zerakl

    Injection - Heading-Stels

    ##Injection - Heading-Stels sub main() while not UO.Dead() while not UO.Hidden() UO.Useskill("Hiding") wait(3200) wend UO.Press(37,2,300) wait(500) UO.Press(39,2,300) wait(500) wend end sub
  2. zerakl

    Injection - Tracking

    ##Injection - Tracking sub main() While not UO.Dead() UO.UseSkill("Tracking"); wait(100); UO.exec("waitmenu 'Tracking' 'Monsters'"); wait(200); UO.exec("waitmenu 'Tracking' 'Monsters'"); wait(200); UO.exec("waitmenu 'Tracking' 'Monsters'"); wait(200); wend end sub
  3. zerakl

    Injection - EvalutIntel

    ##Injection - EvalutIntel sub main() While not UO.Dead() UO.Exec("useskill 'Evaluating Intelligence' self"); wait(1800); wend end sub
  4. zerakl

    Injection - Armslore

    ##Injection - Armslore sub main() var count=0 uo.print('totem') uo.exec('addobject TOT') while uo.targeting() wait(100) wend UO.DeleteJournal() repeat uo.waittargetobject('TOT') UO.Useskill('Arms Lore') wait(1000) until UO.Dead() end sub
  5. zerakl

    Injection - Lumberjacking

    ##Injection - Lumberjacking sub hatch() var printcolour = '1069' var knopka = 67 ; укажи кнопку, на которую у тебя забит в опциях уо LastObject UO.DeleteJournal() UO.FindType('0x0f43','-1','backpack') if UO.FindCount() > 0 then uo.Usetype('0x0f43') while...
  6. zerakl

    Injection - Fishing

    ##Injection - Fishing var TryToHide=0 ## 1 - Включить хаид перед рыбалкои , 0 - Отключить. var TakeFish=0 ## 1 - Собирать рыбку, 0 - Не нужна она нам. var Chest="backpack" #Куда кладём рыбку? sub main() var mX=0, mY=0, mZ=0, i, j, r=0 mX=uo.getX("self") mY=uo.getY("self")...
  7. zerakl

    Injection - Magery

    ##Injection - Magery sub main() repeat if UO.Life<(UO.Str*0.80) then UO.bandageself() wait(4000) endif If UO.mana>=5 Then UO.Exec("cast 'Magic Arrow' self") wait(2100) Else while uo.mana<(UO.INT) UO.useskill('Meditation') wait(10000) wend EndIf until false end sub
  8. zerakl

    Injection - Animal Taming

    ##Injection - Taming sub Taming() if uo.getglobal("Taming") == "On" then uo.setglobal("Taming", "Off") else uo.setglobal("Taming", "On") end if if uo.getglobal("Taming") == "On" then uo.deletejournal() uo.warmode(0) uo.print('Select Animal')...
  9. zerakl

    Injection - AutoLoot

    ##Injection - AutoLoot sub loot() repeat UO.FindType("0x0EED","-1","lastcorpse") #Gold if UO.FindCount()>0 and Uo.GetDistance("lastcorpse")<=2 then UO.Grab("0","finditem") wait(500) end if...
  10. zerakl

    Injection - AutoHeal

    ##Injection - AutoHeal - bandage sub main() while not UO.Dead() while UO.Life == UO.STR wait (2000) wend while UO.Life < UO.STR UO.Exec("bandageself") wait (4200) wend wend end sub