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

Pages: 1 [2]
16
Scripting Chat / Re: Doom Artisan for a tanker?
« on: September 05, 2018, 06:35:40 AM »
Hi, anyone here has a working script for farming Doom afk for a tanker /samper?

I'm planning to try to rework the one posted in the Gold Farming section to run off of a type of Samp build. I'm a ways off from even getting around to it, but if I end up working on it I'll keep you posted.

17
Razor Enhanced / Re: Razor Enhanced section
« on: September 05, 2018, 06:20:37 AM »
Going to look into this a bit when I have some spare time, but seems like it would be a good replacement for UOSteam,

Anything comparisons you can provide if you have used much UOSteam bendel? It seems to have much of the same features from looking at the gui, but one of the main reasons I even use steam at all is for it's seemingly excellent target handling in macros - does RE provide a similar feature?

18
Gold Farming / Re: [Freeshard] Doom Artisan
« on: September 05, 2018, 06:16:58 AM »
I'd like to try this script but my tamer has Chivalry instead of Magery as requested by the script.

Is it possibile to modify the requests?

At a quick look through the code, it looks like it's using:

Arch Cure
Greater Heal
Reveal
Invisibility

I'm not sure how crucial all of those are but it seems like it would be pretty simple to replace the heal/cure with Chiv stuff.

19
I think you're right.  Gotta love when cut/paste goes wacky!  Looks like I just bolted on the call handler, so the easiest fix for that is to just change this:

Yea, that's what I ended up changing as well. I believe the same issue was present in TM_AdvancedFileSystem ( http://www.scriptuo.com/index.php?topic=22.0 )  I didn't check any others.

Any thoughts on the client crash?

Here's my use case:

Code: [Select]
call tm_ngfs.txt TM_NGFS_InitializeScript TrigBot

// some code to init
call tm_ngfs.txt TM_NGFS_RegisterVariables TrigBot std std scriptEndTime
call tm_ngfs.txt TM_NGFS_SaveVariables TrigBot

// bunch more code running script
call tm_ngfs.txt TM_NGFS_LoadVariables TrigBot // Crashes client here

I'm going to do a little more testing in isolation - I'll report back if I have a fully repeatable crash.

20
Hey TM,

I've been playing with a handful of your file system based scripts lately, and think I noticed an issue across a few of them.

With the stuff you added for allowing "call" or "gosub" I think there is a mismatch in same variable names:

Code: [Select]
if !TM_FunctionCalled = #TRUE ; successfully called function.
  exit
if %0 = N/A
  display ok You may not run this script directly.
else
  display ok Function " , %1 , " not found.
stop

However, at the end of all the subs:
Code: [Select]
sub TM_NGFS_GetFSIndexVal
  namespace push
  namespace local TM_NGFS , _ , %1
  set #RESULT *TM_FS . %1
  namespace pop
  set !TM_Function_found #TRUE
return #RESULT

TM_Function_found  =/= TM_FunctionCalled

It's a simple enough fix I think, unless I'm missing some reason for them being different.


EDIT: As a second note - though I'm not sure if will accomplish anything, it seems that subsequent calls to this and the AFS both cause client crashes. It could be the way I'm using them but them seem to work fine 90% of the time. Often times when "loading" in either case it will just crash the UO client to desktop... it seems weird

I love the concept, the viewer is really nice and I have some ideas I'd love to implement using these features but having a hard time debugging the crashes :(

21
New member introductions / Re: Hi, I'm Trigs
« on: August 24, 2018, 09:13:37 AM »

Thanks for your introduction - restricted status lifted - feel free to enjoy all the benefits of the site!


WELCOME!

Thanks!

And holy crap, I had no idea what I was stumbling upon when I came here. As I mentioned, it seemed like a great resource to learn and share some snippets from other developers... but SUO :O

It's like a dream come true after writing thousands of lines of code in the crappy EUO editor.

Just wanted to say thanks, I know it's been a long time since it was released ( and possibly updated ) but this one of the reasons I've always loved UO - the communities are great. 

22
New member introductions / Hi, I'm Trigs
« on: August 23, 2018, 10:05:00 AM »
Hello,

I've been playing UO on and off over the last 10-15 years hoping between various freeshards. I've always been involved in scripting and primarly have used EUO, came across the Stealth client forums here with some useful examples of using Python which seems like a neat approach since a lot of the language support for EUO leave something to be desired!

I'm currently playing on a freeshard that allows for AFK collection/macroing etc and I'm working on a complete suite of scripts that allows for a module based approach of saying "RunXX for 10 minutes, RunYY for 5 minutes" etc from a nice config file.

I've finished:
TrigMiner
TrigBodCollector
TrigBodCrafter
TrigBodExchanger
TrigFarmer ( give it a book of runes, some mobs to kill, and it hunts + loots )
TrigChampFarmer

Mostly working on optimizing at this point :)

Thanks!

Pages: 1 [2]