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.


Topics - The Ghost

Pages: [1] 2 3 ... 5
1
Orion UO Client / Menu and passing information
« on: December 18, 2022, 08:53:51 AM »
I have decide to tackle menu formation. 

 Since I was unable to located information on menu building,  I use what  was available,and choice Altric concept.     I started small and make this recall menu as a test.  It work as intended, except that if I run it on two different account, both will recall when either account toggle recall function.   So someone mention that it was because it used RegRead and needed to use shared instead.   Did some reading, research and still not close to find solution.

 I need help converting this menu  using shared.  Any tip on how I should proceed.

       

2
Orion UO Client / MoveItemType
« on: May 24, 2022, 09:00:28 PM »
So trying to make little function once again and can't seen to figure that one out.   
I can move items from a bag to my backpack , I decide to move items from backpack to bag and that didn't go well.


function EggToBag()  :  Do not work, getting Error online 25  Orion.MoveItem.     I'm sure it a little mistake so anyone can point me to the right direction.


Code: [Select]
var eggbag = "0x413DB0DD"

function EggToBackpack()
    {
    while(true)
        {
        var egg = Orion.FindTypeEx('0x9F13|0x9F14|0x9F15|0x9F16|0x9F17|0x9F18', any, eggbag, '', 24)[0];
        if(egg)
            {
               Orion.MoveItem(egg.Serial());
          Orion.Wait(500);     
            }
        Orion.Wait(500);
        }
    }

   function EggToBag()
    {
    while(true)
        {
        var egg = Orion.FindTypeEx('0x9F13|0x9F14|0x9F15|0x9F16|0x9F17|0x9F18', any, 'backpack', '', 24)[0];
        if(egg)
            {
           Orion.MoveItem(eggbag.Serial());
          Orion.Wait(500);     
            }
        Orion.Wait(500);
        }
    }
   

3
Orion UO Client / Orion.FindList
« on: May 21, 2022, 11:46:37 AM »
Trying to learn by making small function 

so I 'm Trying to send some wood into a bag at the  bank.   Find some documentation and trying to get this to work. 

I build a list into  Orion assistant ,  no error is present when i run it.   Any idea what I'm dong wrong.

Code: [Select]
var runebook = "0x429C9158"
var bankbag = "0x40CF7E6A"

function LootToBank()
{
Orion.Say('Bank');
var sorttobag = Orion.FindList('Loot', 'backpack', '1');
if(sorttobag.length) {
var sort = sorttobag.length;
for (i = 0; i < sort; i++) {
Orion.MoveItem(sorttobag[i], 0, bankbag);
Orion.Wait(600);
}
}
}







4
General UO Chat / Scannning Party Healy Bar
« on: October 18, 2021, 06:29:01 AM »
Good day,

During the Hythloth event,  having the bard mastering song is a big help.

I'm having an issue  while  my toons are party.  To heal my pet I use the #CONTHP so I can monitor the heal bar,   I just notice that this function doesn't work with the party bar.  If we are not party, I can cross heal my friend no issue, but as soon as I joins the party it stop working.    Any recommendation on how to scan hp   
.     

5
Script Debug / Bag of Sending
« on: October 20, 2019, 10:32:57 AM »
 I needed a sub to send my gold to the bank,  so without reinventing the wheel, I search and found this from TM
http://www.scriptuo.com/index.php?action=post;topic=1356.0;last_msg=113594

  The issue I'm having is  part get turn on.  event if   I have selected an items.   
Like this   gosub SendItems POF
Code: [Select]
          if ( #WEIGHT > ( #MAXWEIGHT - 10 ) ) || ( #WEIGHT > 495 )
          {
            display ok You are nearly overweight, but you have no selected$items to send.  Please unload manually.
            set %weightwarn #TRUE
            namespace pop
            return

Event my own small snippet, wont found the gold in my mainpack.   
[code finditem %1 c_ , #backpackid
   if #findkind = -1
       return
   set %GoldID #findid][/code]


 What event weird is that the script that collect gold from the ground have a build in BOS and this one can send gold,  but one I put it with my PvM build,   none of the BOS sub work.     If I start the script overweight it will find the Gold send it but after that it will always return gold not found.   

 Here the lastest sub that I use
Code: [Select]
sub BOSgold
  namespace push
  namespace local BG
 finditem %1 c_ , #backpackid
   if #findkind = -1
       return
   set %GoldID #findid
  repeat
     finditem CKF c_ , #backpackid
           if #findkind = -1
           {
            event macro 3 0 No BOS
            return
           }
           event property #findid
           sending in #property
           if Sending in #property
             {
              set #lobjectid #findid
              event macro 17 0
              target
               set #ltargetkind 1
               set #ltargetid %GoldID
                event macro 22 0
                wait 21
               return
            }
      ignoreitem #findid
  until sending in #property
 namespace pop
return

Thx for the help.

6
General UO Chat / connection states I am banned.
« on: October 04, 2019, 06:02:37 AM »
Good day

One of our member (Gaderian)  have this issue.  Firefox connection states I am banned - while Chrome lets me login.

Does any of you have seen this issue before.  Can deleting the cookie help.  any option at this point will be appreciated.

7
UO News / Shoot box not working.
« on: July 11, 2018, 04:13:28 AM »
Look like the new patch that Tidus apply  still have some bugs.    Here the msg I receive

There was an error loading new messages, this could be due to losing your session or server being unavailable, please refresh this page or wait 8 seconds while the shoutbox retries.

The shoot box is not working but the rest of the forum is functional so far. 

Dont give up Tidus :)

8
General UO Chat / How to get UOAM & UOCART working again
« on: April 24, 2018, 04:06:25 PM »
Often ppl ask me how did I get my UOAM and UOC to work again.  Here a nice link that can help you get your map up and running again. 
https://stratics.com/threads/uoam-uocart.264446/page-3

You will need to read the post to find the info you are looking for.

I did get UOAM running again my downloading the file and running the map right from the folder.  All the map are available event TOL.


Event the info and thx to Kojak for his work

9
General UO Chat / Text Box color
« on: November 27, 2017, 03:40:26 PM »
Does anyone else have the same issue with the location of the color box.    Mine get on top of the post.

It still work just look weird. 


10
Scripting Chat / Stealth on a rail
« on: May 28, 2017, 08:44:07 AM »
 I have a rail system, I can walk ans perform the task I want.  Good for me.  My problem is I'm trying be stay in stealth mode between  each point.   To help me move I try  have reduce the X Y location to each step, but still having issue. Each time I use Pathfind to move  my toon move to fast.    I try adding some wait but still getting my self of hiding.  Is this a lose cause.

11
Scripting Tutorials / Script modification
« on: March 25, 2017, 05:38:56 PM »
We have new scripter that want to modifier script but don't have the basic knowledge.    Here a tool that i use to find information on gump or screen location.
The picture below show the visual information that are in plain sight but ppl are missing.

using those two line of code will make the last window. items  move to the top left screen at location 0 0.   
Code: [Select]
contpos 0 0
halt
From their you can find the Xy of the option you wish to utilize. 

using the tinker tool location
so if you see this tool option is located at 30 127.  in the script find the closest match for those number.   You might find 30 130  that mean that you found the tool option.  Now go can modified the number to the appropriated shard location.


Their is no magic, just patient.


12
Script Debug / Arch Cure on friend
« on: March 03, 2017, 04:18:06 PM »
Hello, I need some tester on OSI.

I would like to know if it only me that having issue with the spell arch Cure,  here a simple snippet that i would like you to test.   I can cast Cure and heal on the friend but can't cast Arch cure on him. 

Code: easyuo
  1. finditem xxx G_9  ; <   xxx= id of your friend
  2.      if #findcnt > 0
  3.       {
  4.         event macro 15 24    ; <-- 24 = Arch cure,  10= cure  28=G-heal
  5.         target 5s
  6.         set #ltargetKind 1
  7.         event macro 22 0
  8.         wait 10
  9.        }
  10.  halt
  11.  
  12.  

Thx

13
General UO Chat / Doom New Monster ID
« on: March 01, 2017, 06:17:37 PM »
had a chance to hunt in Doom today,    It seen that the new DF Spawms have new ID. Let see if we can compile a list of all the ID in DOOM again. 
Got time to get only one ,
 one of the Lich is      S

Thx

14
 Been a long time since I hunt in the abyss to do this Mini-Champs.   The lvl 2 Clan Chitter Tinkerer have 2200 HP,  does someone have any tip to give me ,  I would like to kill them fast.   

15
Script Debug / #FINDCNT incorrect value
« on: November 13, 2016, 05:56:32 AM »
I'm having so issue with #FINDCNT that returning the correct value.  99% of the time it return the number of monster find, but at some occasion, I only have one monster and #findCnt see 2 on the side bar.   This happen for  3 type of monster so far.   No it not the same ID as me.    Any one would know why this happen

Code: [Select]
Finditem %monstertypes G_1
if #findCnt > 0

Pages: [1] 2 3 ... 5