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

Pages: [1]
1
TM, you mentioned Lower Requirements is not working in script comment and indeed that's also what I observed.

Do you have a bit of background what's wrong with it maybe I can help to do some digging in the code?

2
The specific problem that jenovauh pointed out was with the buttons.  It was something that I brought up with Cheffe quite a while back, but he refused to do any kind of garbage collection on his end.  So it's basically possible to create 2 or more of the same buttons with the same name, but only one of the buttons retains the "Pressed" callback.  The other one becomes an orphan and become useless.  It became apparent when you look at the #MENUBUTTON variable.  It becomes non-functional once a new button of the same name is created.  Anyhow, still irked that Cheffe couldn't account for existing controls of the same name, but oh well.  It was his bug in the first place that we all though was a feature and utilized. In the long run, I have no idea how many scripts it broke.  I know it broke my Item Finder and the CLAw.  I'm sure there's many others.  Since there's so few scripters actively scripting anymore, it's extra silly.

Thanks for fixing the button issue. I also noted #MENUBUTTON became non functional after clicking some of the buttons and now you've explained the reason behind!

3
Resource Farming / Re: Seerius High Seas Land Fisher v1.5b
« on: September 03, 2020, 06:42:06 PM »
Great script, still very useful today. Thanks a lot!

4
_C2_ Script Library / Re: C2's Lobster and Crab Farmer
« on: August 25, 2020, 10:30:16 PM »
Excellent script still working today.

Just one issue, the script uses TM's travel sub which requires %charname (not the system #charname variable) to be defined to scan journal for spell failure, but %charname is never defined in the script.

If you are using the script you can add this line inside "Edit here" section:

Code: [Select]
set %charname YOUR_CHAR_NAME_REPLACE_SPACE_WITH_UNDERSCORE_AND_NO_LORD_LADY_TITLE
or as simple as this if you don't have lord / lady title and no space in your name
Code: [Select]
set %charname #charname ;this will be wrong for people with lady / lord and space in their name
So if your char name is Lady Victoria Secret

add this

Code: [Select]
set %charname Victoria_Secret

5
Script development tools / Re: TrailMyx's Advanced Journal Handler
« on: August 21, 2020, 02:30:15 AM »
My char has Lord title, while #CHARNAME will return Lord XXX, in journal the title Lord doesn't show up so the Journal scanning missed the detection. (actually I hit this issue when using your own full-auto fisherman script, in which it can't detect "the fish doesn't seem to be biting here" and keep fishing the same spot)

I made a quick dirty fix and the journal scan works again:


  if !charname = N/A
  {
    if lord in #charname || lady in #charname
    {
       str len #charname
       str mid #charname 6 #strres
    }

    set !charname #strres

6
Character skill advancement / Re: Gaderian's Remove Trap trainer
« on: August 11, 2020, 02:52:18 PM »
Got it, this is a great script! Thanks for your hard work and I appreciate it. ;D

7
Character skill advancement / Re: Gaderian's Remove Trap trainer
« on: August 11, 2020, 04:30:34 AM »
this is amazing, i have no idea how it works but it's working : D

One thing I don't understand thought, the puzzle has already given you the color of the first slot, why you still need to try with different color for the first slot?

8
Character skill advancement / Re: Thimotty Fast Stealth Trainer
« on: May 01, 2012, 01:24:17 AM »
Change

set %travel_gump_type AOZC

to

set %travel_gump_type KXY

There you go.

9
New member introductions / Re: An old player coming back after 8 years
« on: February 09, 2012, 08:43:41 AM »
Thanks for all the warm welcoming. Am so excited to see there are still many people around!!!  :D :D

10
New member introductions / An old player coming back after 8 years
« on: February 06, 2012, 08:24:56 AM »
It was a long journey.... I left UO when it was 2004, and out of nowhere I spotted there is an promotion about 14 day free trial for renewing the UO account last month and so I did. Guess what, the characters I played 8 years ago were still there. Of course my house was lonnnng gone so were my friends and guidemates, but the characters and skills are still there. That indeed saved me lots of "training" time considering money is no longer a concern for me anymore. I'm not a child anymore and I'm more financially capable than I was to buy millions of gold in UO. I consider that as a nice shortcut and good investment for having fun. Everything is set and there you go, a new journey is going to start and I'm looking forward to immersing into this magical world, once again : )

Pages: [1]