Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - altiric

Pages: 1 [2] 3 4 ... 6
16
General UO Chat / Re: Secret way to detect hidden players?
« on: April 12, 2023, 09:09:09 PM »
Only thing ive ever known to see hidden players was i believe the first version of razor, which had an option to see and target hidden players. I cant remember if hiding was changed because of it, or the creator took it out in an attempt to become a valid 3rd party tool, but it would suggest there is some method of seeing hidden players through packets.

17
Orion UO Scripts / Re: Brute Force Egg Hunter
« on: June 07, 2022, 03:30:53 PM »
Glad you seem to have gotten most of itbworjed out.
Simple setting ingotTurnin to false will skip that step and continue collecting eggs.
line 20: const insureEggs = true;        // Insure eggs on pickup

change true to false

line 20: const insureEggs = false;        // Insure eggs on pickup
I figured out why backpacks to When Max Backpack Items won't swap
It's really a language problem. I switch the system to English and it will be exchanged.
But there is another problem, if the egg is exactly 10 at the end of the exchange
Will execute the swap but won't switch it to any item, it will get stuck and repeat the swap

Post Merge: June 07, 2022, 04:46:52 AM
What can I do so that he doesn't Turn in Ingots after executing the egg swap
Then execute the script I set and execute it again

18
Orion UO Client / Re: Help! Casting string array elements to integers
« on: June 06, 2022, 04:39:36 AM »
Orion gives you: pairIntInt.Index, pairIntInt.Value, pairIntString.Index, and pairIntString.Text to work with.

19
Orion UO Scripts / Re: Brute Force Egg Hunter
« on: June 05, 2022, 05:46:38 PM »
line 20: const insureEggs = true;        // Insure eggs on pickup

change true to false

line 20: const insureEggs = false;        // Insure eggs on pickup

20
Orion UO Scripts / Re: Brute Force Egg Hunter
« on: June 05, 2022, 12:42:10 PM »
I have changed the original client to English
Direct start is sure to be in English
But after using Orion to start, it magically changes back to Chinese

Change the language from the main screen of the Orion Launcher. Near the top, right under UO Files path and Orion path. Looks like it only has english and russian to choose from though.

21
Orion UO Scripts / Re: Brute Force Egg Hunter
« on: June 05, 2022, 12:28:02 PM »
Does Orion need a special main program?
Or just use orion's launcher to start the official main program.
I can't find the option to switch to English interface in the game
Forgive my bad English, I can only use google translate

I am not 100% sure on the language settings for Orion but i do know the Original client uses the operating systems default language, I would assume Orion works the same way.

22
Orion UO Scripts / Re: Brute Force Egg Hunter
« on: June 05, 2022, 12:03:18 PM »
需要將遊戲切換成英文模式
能在官方伺服器工作嘛?
我以自動啟動方式啟動後他不會工作

從未嘗試過用另一種語言運行。它只使用遊戲 ID 而不是文本,所以我不知道如何修復它。我現在正在編寫可以使用任何語言的伐木工人腳本

23
Orion UO Scripts / Re: Brute Force Egg Hunter
« on: June 05, 2022, 05:43:24 AM »
does it work with runic atlas too or just rune books? script doesnt start for me after i select everything, but im new to orion as well, so maybe my fault.

It was only setup to use rune books. Atlas' requires a very different setup to use. If you're making it through the settings, the script will start in pause mode by default. There is a button on the bottom right (a circle). Clicking that should have you up and running, clicking it again will re-pause.

24
Orion UO Scripts / Re: Brute Force Egg Hunter
« on: June 01, 2022, 09:46:27 PM »
Does this only work with Orion program?

Correct, it only works with Orion.

25
Orion UO Scripts / Re: Brute Force Egg Hunter
« on: May 30, 2022, 02:00:15 AM »
Packed some serious upgrades into version 2.0!

Version 2
-Faster and more responsive than the original!
-Better Egg scanning, more range
-Better interaction with NPCs
-Ability to insure eggs/ingots
-Can now toggle EggTurnin and IngotTurnin on/off
-Added pause once pack is full (Will still recall to destard book location first, it does not have to be destard in this case)
-Added function to move Eggs from backpack to a container
-Can now switch between recall/sacred journey
-Added Pause/Resume button
-Added ignore egg button (For those porch locked eggs)

26
Orion UO Scripts / Re: Building a Lumberjacking Script
« on: May 29, 2022, 12:54:40 PM »
Its very close to making it on my priority list! Just got a couple things to finish off, should be able to focus on this one beginning next week. Already have most of the issues you and Gaderain were able to find solved.

27
Orion UO Client / Re: MoveItemType
« on: May 27, 2022, 04:58:42 PM »
yeah... just throw an Orion. infront of MoveItem lol sorry...

28
Orion UO Client / Re: MoveItemType
« on: May 27, 2022, 01:25:13 AM »
If it helps, this is one i wrote for a friend to do the same thing.

Quote
function moveEggsToContainer(){
    var eggTypes = '0x9F13|0x9F14|0x9F15|0x9F16|0x9F17|0x9F18';
    Orion.CharPrint(self, 0x43, "Select new Egg Container");
    Orion.WaitForAddObject('eggContainer');
    Orion.FindType(eggTypes, any, backpack).forEach(function(egg){
        Orion.MoveItem(egg, 0, 'eggContainer');
        Orion.Wait('moveitemdelay');
    });
    Orion.CharPrint(self, 0x43, "Move Complete");
}

29
Orion UO Client / Re: MoveItemType
« on: May 25, 2022, 10:58:38 AM »
Maybe try MoveItemType as an alternative, see if it works better for you.

Orion.MoveItemType('graphic', 'color', 'containerFrom', count, 'container'); //Can add multiple graphics as usual seperating with |

30
Orion UO Client / Re: MoveItemType
« on: May 24, 2022, 09:37:02 PM »
MoveItem needs a count and destination

Orion.MoveItem(egg.Serial(), 0, container.Serial); 

0 will move all in a stack, or use a number to move up to that amount, since its just an egg 1 will work the same since they don't stack.


Pages: 1 [2] 3 4 ... 6