Search found 51 matches

by Thdin
2004-09-09 05:57:44
Forum: Help
Topic: hack
Replies: 2
Views: 1551

I'm not sure bankhack exists on Yoko's injection version.

What ,boxhack does it rail the next container you open. So, if you typed ,boxhack and then opened a container, no matter how far you move away from it it would never close. This works for banks too, but I find it useless. Once you've moved ...
by Thdin
2004-09-09 05:54:40
Forum: Scripting Ore
Topic: a little question
Replies: 5
Views: 1708

i wrote it like this:
UO.exec("waitmenu 'What would you' 'Jewelry' 'What would you like' 'Necklace',2")
but it doesnt seem to work,can u help me?

Try this instead:

UO.Waitmenu('What would you' 'Jewelry' 'What would you like' 'number of necklace as it appears')

Let's say after opening the ...
by Thdin
2004-09-08 23:35:49
Forum: Requests
Topic: Change log
Replies: 3
Views: 2829

That would be quite useful :) If you need any help with that, Yoko, I will be glad to assist.
by Thdin
2004-09-07 21:52:59
Forum: Help
Topic: moveitem
Replies: 2
Views: 1235

Do a simple search for "ore smelting", you'll find it.
by Thdin
2004-09-07 21:51:11
Forum: Requests
Topic: Cast necro spells?
Replies: 5
Views: 3828

No matter if the shard is RunUO (Or "OSI" as you said) or SphereServer the recall function works for any gump. Each gump have buttons which can be pressed by the mouse. The recall function presses these buttons for you using a pre-defined number according to whatever button it is on the gump.
by Thdin
2004-09-07 21:48:47
Forum: Scripting Ore
Topic: YOKO HELP ME> I need this !!
Replies: 8
Views: 2184

Nevermind. Ignore my last post and look at the script again. I changed it a bit. Try using that one now :)
by Thdin
2004-09-07 21:47:30
Forum: Scripting Ore
Topic: YOKO HELP ME> I need this !!
Replies: 8
Views: 2184

You have to have more then 1 poison potion in your backpack otherwise the script ends. Keep all the poison potions and weapon in your pack and when you run the script you only have to target the pot and weapon once and then it will keep repeating.
by Thdin
2004-09-07 21:45:53
Forum: Scripting Ore
Topic: Blacksmithing script
Replies: 1
Views: 1166

If you scrolled down JUST a bit you'd find my old one. Otherwise you can just search for them! That's what the search button is for!
by Thdin
2004-09-06 17:53:13
Forum: Scripting Ore
Topic: Minin script
Replies: 31
Views: 12391

Um well...what I posted isn't the entire script.. you have to put it IN to the section that matches it lol

Also, you can't have it say timeout=timeout+200 and then have a Wait(20). Timeout has to match it (both 20) since timeout is the time that passes. If 200 milliseconds "pass" every 20 ...
by Thdin
2004-09-06 17:49:10
Forum: Scripting Ore
Topic: YOKO HELP ME> I need this !!
Replies: 8
Views: 2184

Thanks... ?

lol
by Thdin
2004-09-06 17:23:29
Forum: Scripting Ore
Topic: YOKO HELP ME> I need this !!
Replies: 8
Views: 2184



sub Poisoning()

VAR poisontime=5000

UO.Addobject('weapon')
While UO.Targeting()
Wait(100)
Wend

UO.Addtype('poisonpot')
While UO.Targeting()
Wait(100)
Wend

Poison:
UO.Findtype('poisonpot','-1','-1')
If UO ...
by Thdin
2004-09-05 22:08:20
Forum: Scripting Ore
Topic: Minin script
Replies: 31
Views: 12391

This should do it. If you replace my posted code here with the matching section in your script it should all work fine. Remember to place a bag inside your backpack and add it as an object named "orebag".



UO.SetCatchBag('orebag')
Repeat
timeout=timeout+20
Wait(20)
#UO ...
by Thdin
2004-09-05 04:46:28
Forum: Scripting Ore
Topic: Minin script
Replies: 31
Views: 12391

It's got to do with timers. You should fix up the mining triggers to stop mining and go to next location if it reads "World save" or something. In my script above I have actually made that change. Check it out :)
by Thdin
2004-09-05 04:43:02
Forum: Help
Topic: injection.xml not saving
Replies: 1
Views: 1338

Try to get the new DLL version and do a complete wipe of your current Injection installation. Sometimes everything works fine and then you change one small thing that you forget about and it messes up :?
by Thdin
2004-09-03 09:21:50
Forum: Scripting Ore
Topic: How to Save Object in a var?
Replies: 5
Views: 2406

That's exactly what an addobject does.
by Thdin
2004-09-01 04:21:27
Forum: Free
Topic: X2: The Threat
Replies: 4
Views: 3070

Yoko, I don't understand. What exactly is this? :?
by Thdin
2004-09-01 04:15:43
Forum: Scripting Ore
Topic: Minin script
Replies: 31
Views: 12391

Sure!

Read through this code and make SURE to read the commentary (after the # tags)



sub Oredroppings()

UO.DeleteJournal()

Checkmana()

UO.Cast('Mark','temprune') #Keep an extra rune loose inside your backpack and add it to your Objects in Injection ...
by Thdin
2004-08-31 03:48:26
Forum: Free
Topic: Newbies
Replies: 3
Views: 2521

Exactly! :( And it isn't nice.

I'm just glad Yoko can ignore all the bullshit and keep the site up. I'm glad you can keep helping people even though some aren't too grateful for it.
by Thdin
2004-08-30 18:14:03
Forum: Free
Topic: Newbies
Replies: 3
Views: 2521

Newbies

This is a rant against all those newbies who come here and post for the first time without reading through all the forum first and learning how things work around here and just expecting people to write scripts for them!

Haha just joking. But really, I hope you new guys don't just come, get what ...
by Thdin
2004-08-30 18:07:43
Forum: Scripting Ore
Topic: Minin script
Replies: 31
Views: 12391

Make sure you record it slowly and there are no obstacles blocking your path. Also, make sure all the journal triggers in the script match the ones on your server. You will have to add UO.InJournal("Try mining elsewhere") for those spots where you cannot actually mine. That way the script can pick ...