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 - JlM

Pages: [1]
1
Stealth Snippets\Library / Python item counter, for backpack
« on: December 19, 2018, 05:44:59 AM »
I have a def that will work if I reach a certain weight. I'm needing one for item count in my backpack. Can someone shoot me in the direction of a example or some documentation. Any help would be appreciated.

2
UOSteam / Program or Plugin to help with Steam Coding
« on: September 15, 2018, 10:48:11 AM »
Is there a program or a plugin that will help with steam script writing, specifically when making long macros I get lost in the if/end if there are several nested inside each other over and over. Something like if you select the IF it highlights where its closed below with the endif.

3
Stealth Client / Script not sorting properly (python)
« on: September 12, 2018, 04:31:42 AM »
I have the following script to sort bods in my bag. It currently only puts blacksmith bods Into my book that is labeled tailor. Any help would be appreciated.

def SortBods():
    res = FindTypeEx(8793, 0, Backpack(), False)
    FoundBooks = GetFindedList()
    res = FindTypeEx(8792, 1155, Backpack(), False)  # Tailor
    FoundTailorBods = GetFindedList()
    res = FindTypeEx(8792, 1102, Backpack(), False)  # Blacksmith
    FoundBlacksmithBods = GetFindedList()
    for book in FoundBooks:
        tooltip = GetTooltip(book)
        if 'tailor' in tooltip:
            for tbod in FoundTailorBods:
                MoveItem(tbod, 0, book, 0, 0, 0)
                Wait(100)
        else:
            for bbod in FoundBlacksmithBods:
                MoveItem(bbod, 0, book, 0, 0, 0)
                Wait(100)

4
New member introductions / Hi, my name is JlM
« on: August 28, 2018, 10:36:49 AM »
Hi, My name is JlM, I am 35 years old and from Louisiana. I have been playing Ultima Online since release, with several breaks. I have played OSI, and several free servers. Recently I decided to start playing again. I found a lot of my EUO and Steam scripts but now realize both have advanced alot. I would like to learn to use them to their full ability again. I currently enjoy PvP, Tamer and Sampire Play .

I look forward to being a productive member of ScriptUO

JlM

Pages: [1]