Search found 9 matches

by knicholes
2009-05-18 21:31:26
Forum: I need script!
Topic: Challenging Script
Replies: 1
Views: 1446

Your UO.DeleteJournal() calls aren't being called because they're after the goto. Gotos are sloppy.

Also, just do uo.exec("useskill Stealing lasttarget")
by knicholes
2007-01-19 03:49:23
Forum: I need script!
Topic: Gump`s
Replies: 10
Views: 3466

Yes, it pops up in random locations every time.
by knicholes
2007-01-18 07:01:10
Forum: I need script!
Topic: Gump`s
Replies: 10
Views: 3466

Sweet, thanks for that script, too. I'm still having the exact same problem as the guy who started this thread. I have the exact same gump pop up and if I don't respond in time it teleports me away. I run the first listed AFK script, but it doesn't work. Do you have any idea why?
by knicholes
2007-01-08 04:47:50
Forum: I need script!
Topic: Gump`s
Replies: 10
Views: 3466

ANTI-AFK SCRIPT

Hey, does this script work? How would I use the ,ongump to select the big icon? This looks like it just clicks on location 0,0, but the gump doesn't always appear there.

On some shards, I've even seen gumps require you to do simple math. I challenge anyone to find an answer to these anti-afk ...
by knicholes
2006-08-21 02:25:49
Forum: Help
Topic: Wait for spell
Replies: 7
Views: 2895

To cast the spell over and over again, the best way to code this would be:

sub F3() #Disturb
VAR m
m=uo.mana
uo.cast('Weaken','laststatus')
repeat
wait(5)
until uo&#46;mana<m
end sub

but there is no sense in that script


sub F3&#40;&#41; #Disturb
loop ...
by knicholes
2006-08-21 01:23:45
Forum: Scripting Ore
Topic: The Best Mining/Lumberjacking Script Yet
Replies: 1
Views: 2223

The Best Mining/Lumberjacking Script Yet

Okay guys-- We need to write a code that randomly searches for a tree/mining area, finds it, mines it, then records it. After running it for so long, you'll have a big file full of mining locations. This is sort of like "The Ultimate Lumberjacking Script", but the script will find the locations for ...
by knicholes
2006-08-21 00:46:34
Forum: Help
Topic: Wait for spell
Replies: 7
Views: 2895

Try this one

This code is called right after you cast a spell. It will wait until you lose mana or if it fizzles.



##### Waits until you lose mana #################
sub lostmana&#40;&#41;
var current
current = UO&#46;MANA
while UO&#46;MANA >= current
if UO&#46;InJournal&#40;"fizzle"&#41; then
return
endif ...
by knicholes
2006-08-19 22:54:17
Forum: Scripting Ore
Topic: Wandering Animal Taming
Replies: 2
Views: 2286

Wandering Animal Taming

This script makes you walk around until you allnames something. Once it allnames it, it walks over to it and tames it. Then it kills it.

When there is no animal on your screen, it keeps looking until it finds one. Here is the code.



sub HoMeSlIcEsTaMiNg()
var J, serial, finded
var ALL ...
by knicholes
2004-05-16 01:00:38
Forum: General
Topic: How to disable Resent
Replies: 10
Views: 5297

RESENT!!!!!

I use version 4ZD. I've died countless times because of 'resent'. I'm running, get attacked, then I'm basically frozen and can't move until I'm dead, because it keeps saying 'resent'. I'm not really frozen, but it keeps jerking me back.

Also, how do I access the 'Verbose menu'?
How do I ...