Search found 55 matches

by Infectous
2008-10-16 15:18:56
Forum: General
Topic: Questions (about RunUO scripting)
Replies: 4
Views: 4581

I bound 2 keys primary & secondary. I was after concussion from a hally & a xbow. both weps used the different buttons (xbow was primary & the hally was secondary for concussion). My take on this was to search for the hally and if it was there to use primary, if not the xbow would be there & it was ...
by Infectous
2008-09-23 09:39:19
Forum: I need script!
Topic: Whats wrong? need help
Replies: 2
Views: 900

that is a dead cycle or what ever they call it, (burn out your cpu) try reading more info in the tutorials, I use googles translator to understand the Russian... least you will pick up on the theory... looks like you had the right idea just use and "ELSE"

sub heal()
repeat
if uo&#46 ...
by Infectous
2008-08-10 21:32:07
Forum: Scripting Ore
Topic: AOS (RunUO) выход из парализа trapped pouch
Replies: 3
Views: 1284

add

Code: Select all

uo.ignore('finditem')
by Infectous
2008-08-02 15:23:28
Forum: I need script!
Topic: Помогите поправить скрипт на ковку фулл Dwarven Platemail
Replies: 1
Views: 1248

uo.waittargettype(type,color)
by Infectous
2008-06-11 11:53:48
Forum: I need script!
Topic: HI, once again i need ur help :(
Replies: 2
Views: 1334

a mass if wants to run through all the arrays each time it is ran...

example: sub killbird()
var i
DIM t[9]
t[0] = "0x0005" ; eagle
t[1] = "0x0006" ; bird
t[2] = "0x00D0" ; chicken
t[3] = "0x00E7" ; cow
t[4] = "0x00D8" ; cow
t[5&#93 ...
by Infectous
2008-05-31 21:59:04
Forum: General
Topic: Agility [doubt]
Replies: 6
Views: 2792

think combos... script imo = better, you can detect wop & have anti spells like magic arrow a para & have auto targets etc... may be I have said too much haha
by Infectous
2008-05-31 04:47:55
Forum: Help
Topic: problem with healing sc
Replies: 2
Views: 1220

sub healing()
while uo.count('0x0e21')>=1 or not uo.dead()
if uo&#46;poisoned&#40;&#41; or uo&#46;life <= uo&#46;str-10 then
uo&#46;bandageself&#40;&#41;
wait&#40;900&#41; ; ??? you can heal this fast may want to work on this part 1000 = 1 second &#40;is prolly why ...
by Infectous
2008-05-26 17:35:14
Forum: Help
Topic: reconnect script error
Replies: 1
Views: 1266

could be your macro script
check your settings
http&#58;//i280&#46;photobucket&#46;com/albums/kk196/Infectous_Injection/203_injection&#46;jpg

you may have to check " Autostart "

I added a couple lines to the reconnector to stop/restart my scripts
find the line(s)... & add the bold ...
by Infectous
2008-05-24 11:51:49
Forum: Help
Topic: Не сохраняет в Hotkey Клавиши Бинда
Replies: 1
Views: 890

,fixhotkeys>,saveconfig>"log out">"quit"
by Infectous
2008-05-22 12:20:13
Forum: Help
Topic: waittargettile problem.
Replies: 4
Views: 1382

& if you need to know the tile# ,infotile
the -1 = 'any' if it works for you
by Infectous
2008-05-22 12:14:38
Forum: Help
Topic: Hotkey command help version 505.18
Replies: 4
Views: 1353

yes

2 containers, grab a couple pouches & put one if each in either

uo.findtype ('type of scroll', -1, 'container1')

uo.findtype ('type of scroll', -1, 'container2')
by Infectous
2008-05-11 08:07:52
Forum: I need script!
Topic: resend
Replies: 1
Views: 1009

resend is a command, not a good idea to use it as the name of a sub
simply make your key say ,resend
why are you using this? the only time I resend is when I go into a room/use tele pad and the screen doesn't refresh & items/npc's are missing, I use it once and they reappear...
alls you are doing ...
by Infectous
2008-05-11 07:55:25
Forum: Help
Topic: Configuration file error
Replies: 9
Views: 2099

Ignition.cfg NOT ilpatch.cfg
Image

look at the picture... you chose the wrong *.cfg
by Infectous
2008-05-10 16:02:53
Forum: I need script!
Topic: Carpentry Help
Replies: 3
Views: 1272

use gump "makelast"

,infogump

check primary reply
ex 0001 = 0x0001

use uo.recall('ingot_ID','0x0001')

if not waitmenu is case sensitive
makelast?
Make Last?
make Last?
make last....
by Infectous
2008-05-10 15:51:09
Forum: I need script!
Topic: Hi, just a little tips!
Replies: 5
Views: 1270

,info
then target your chest
then check the text window that pops up for "ID= 0x00000000"
note this also gives you type,color etc....

another tip is before you start that script you must "open" the chest to let injection know what's in there so add uo.useobject('chestID') or uo.usefromground ...
by Infectous
2008-04-30 06:43:49
Forum: I need script!
Topic: Reseting target with script HELP!!!
Replies: 1
Views: 1043

Uo.Print('Magic Arrow!')
by Infectous
2008-04-30 06:27:21
Forum: Help
Topic: Login with 6.0.6.2
Replies: 1
Views: 989

Re: Login with 6.0.6.2

The last client version that i can login is 5.0.8.2 (sphere 0.56b)

and thats it

yup, i've seen some people post different codes but I never got any of them to work, most servers I use 203 any way, try version faking... simply don't patch... most sphere only runs into problems if you do weather ...
by Infectous
2008-04-30 06:16:53
Forum: Help
Topic: autoloot
Replies: 3
Views: 2460

sub LootLastCorpse&#40;&#41;
VAR Gold = '0x0EED' ; gold
UO&#46;UseObject&#40; 'lastcorpse' &#41;
wait&#40;300&#41;
UO&#46;FindType&#40; Gold, '-1', 'lastcorpse' &#41;
While UO&#46;FindCount&#40;&#41; > 0
UO&#46;Grab&#40;0, "finditem"&#41; ; UO&#46;MoveItem&#40; 'finditem','0' &#41;**
wait ...
by Infectous
2008-04-30 06:01:36
Forum: Help
Topic: autoloot
Replies: 3
Views: 2460

sub Autohealing&#40;&#41;
While NOT uo&#46;dead&#40;&#41; ; uo&#46;life > 0 is the same as not uo&#46;dead&#40;&#41;
If UO&#46;Life < UO&#46;Str Then
UO&#46;Bandageself&#40;&#41;
wait&#40;20&#41; ; ???
UO&#46;DeleteJournal&#40;&#41; ; no need repeat to give Injection time to read below wait&#40 ...
by Infectous
2008-04-14 14:53:43
Forum: Help
Topic: Hang when launch a spell
Replies: 1
Views: 854

tip: we need to know what client/server, how you are casting (via command/scripts/natural/in game macros), what settings you have

please be more descriptive.