Search found 10 matches

by selila
2004-11-09 17:18:32
Forum: Scripting Ore
Topic: my anti-lag solution
Replies: 3
Views: 1391

yes i define many resource in my script.
:)
by selila
2004-11-09 17:15:59
Forum: General
Topic: anyone can tell me how to use uo.setjournalline() ??
Replies: 4
Views: 1739

i make a script.
to find all my container in my backpack

my way is define dim bag[] in script .and addobject in injection .so every bag will from object "bag1" to "bag200"

after i use this script i want to release those resource. so i need forget those object..
by selila
2004-11-09 09:13:23
Forum: Scripting Ore
Topic: my anti-lag solution
Replies: 3
Views: 1391

my anti-lag solution

i define many resource type in uo.
like log ore blankscroll


and here have a sample way to anti-lag .i think it is a good solution

Sript Begin
---------------------------------------

var log=uo.count("log")

sub bowmake()
start:
uo.waitmenu("make","Bow ...
by selila
2004-11-08 20:53:24
Forum: General
Topic: anyone can tell me how to use uo.setjournalline() ??
Replies: 4
Views: 1739

another question .

if i use
uo.exec("addobject test findtype")
how can i delete it from injection in script?

uo.exec("forget test") ?

it seems no use to delete object
by selila
2004-11-08 20:09:47
Forum: General
Topic: anyone can tell me how to use uo.setjournalline() ??
Replies: 4
Views: 1739

anyone can tell me how to use uo.setjournalline() ??

er..

sorry .
but i read the document yet .and write a sub test try to find out how to use uo.setjournalline() and uo.journal()

but it still confuse me..i dont know how to use it .anyone can teach me or give me some sample code?

thanks .
by selila
2004-10-23 05:17:52
Forum: General
Topic: question with waitmenu
Replies: 3
Views: 1644

thank you very mush!!!!
by selila
2004-10-22 20:31:05
Forum: General
Topic: question with waitmenu
Replies: 3
Views: 1644

question with waitmenu

when i use waitmenu
and in one promt have two same name choice ..how can i choice the latter one?

eg..

tinker on ingot .choice .Jewelry then .have three Necklace choice..how can i identify them??

thanks
by selila
2004-10-18 21:38:43
Forum: General
Topic: some problem with objatlayer
Replies: 2
Views: 1445

some problem with objatlayer

in my shard
sub main()
UO.Print(str(uo.objatlayer("Rhand")))
UO.Print(str(uo.GetGraphic(0x63FB7159)))
end sub

it show
0
0
why it cant get what i have in my right hand?

and 0x63FB7159 is a knife.it also return 0 to me

any problem here?

thanks .
by selila
2004-10-17 08:19:00
Forum: General
Topic: yoko,i have some question
Replies: 4
Views: 2121

another question .if test1 running ..in sub test2 .have any command stop sub test1??
by selila
2004-10-16 18:27:04
Forum: General
Topic: yoko,i have some question
Replies: 4
Views: 2121

yoko,i have some question

1 how can i get my character 's skill value??does it have any command or var i can get skill value

2 if i have two function run in one time . like this

sub test1
if uo.injournal("attacking you") then
uo.say(".guards")
uo.deletejournal()
end if
end sub

sub test2
if uo.injournal ...