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 - Tommy Boy

Pages: [1]
1
Scripting Chat / EUO Tile Issue Workaround
« on: March 21, 2012, 03:48:37 PM »
It seems you can simply copy & paste the mapxx.mul files from an unpatched installation and the scripts that use tile info and commands will work again.

Both my mining scripts and CyberPope's Mining Radar weren't working.  I copied the mapxx.mul files into my patched UO Classic folder and so far all tile related scripts are working as intended.

Hope this helps,

Tommy Boy

2
Scripting Chat / Cheffe posted an update (beta)
« on: March 17, 2012, 06:19:37 PM »
Cheffe made a post on the Mainboard with a link to a beta euox211.

3
Character skill advancement / Detect Hidden Trainer
« on: March 10, 2012, 07:12:44 PM »
OK, this is the very first script I have ever submitted.  I just though this one would be useful to the typical non-scripter.

It's a very short and simple Detect Hidden skill trainer.  I had no luck finding one that isn't outdated or even worked well since the anti-macro code was removed.

It requires only that you buy 25.0 skill pts from the NPC Thief Guildmaster, although you could bypass this and train from zero skill if you wanted to.

It then requires only that you have a GM Tinker crafted and LOCKED box in your backpack.

The script will hide and keep you hidden and train Detect Hidden using the locked box.  It seems to work well in both public areas and/or in your house.  So far I've only tested it on the freeshard ABCUO, but I intend to give it a try on an EA/Mythic server as well

Code: [Select]
;==================================
; Script Name: ABCUO Detect Hidden Trainer
; Author: Tommy Boy
; Version: 1.0
; Client Tested with: 7.0.23.1 (Patch 65)
; EUO version tested with: 1.5 210
; Shard OSI / FS:  FS ABCUO
; Revision Date: 3/10/12
; Public Release: 3/10/12
; Global Variables Used: NONE
; Purpose: Trains Detect Hidden skill
;==================================

display Make sure you have a GM Tinker crafted, locked box in your backpack

chooseSkill Dete
set %currentskill #skill
if %currentskill < 250 2
  {
  display OK You need greater than 25.0 Detect Hidden to start this script.
  halt
  }

menu hideEUO
menu hide
display Target the Locked box
set #targcurs 1
waitfortarget:
if #targcurs = 1
  goto waitfortarget
finditem #ltargetid

gosub checkhidden

mainloop:

event macro 13 14
  target 3s
  event macro 22 0
  wait 6s
gosub checkhidden
gosub checkskill
goto mainloop


sub checkskill
chooseSkill Dete
if #skill = #skillCap
  {
  Display You've Reached Your SkillCap
  halt
  }
return

sub checkhidden
if H in #charstatus
  {
  return
  }
event macro 13 21
wait 11s
return

Hope you like it and I'm looking forward to any suggestions and/or criticism you may have.

Thanks,

Tommy Boy

4
General UO Chat / Resource grid 8x8 4x3, etc
« on: March 03, 2012, 11:24:55 PM »
Is it possible for a server/shard to have a different grid for ore and wood? 

What I mean is, is it possible for the ore and mining to be 8x8 and for the wood/trees to be 4x3?

I'm playing on ABCUO and this seems to be the case.  I'm trying to verify it.

I've been using Cyberpope's Mining and LJing Radar to set up runebooks for both.

Thanks

Tommy Boy

5
New member introductions / Hello
« on: February 02, 2012, 01:37:03 PM »
Hiyas

Iv'e just recently returned to playing UO after about a two year break.  I used to play on Atlantic, Pacific and Seige Perilous.  I just yesterday created an account on ABCUO, my first attempt at a freeshard.

I used to be on uocoders too before it went down.  I actually found uocoders after TM responded to a request about Pennylane's Item search which had disappeared from easyuo.com.

Well, I was into crafting and PvM.  I haven't participated in PvP since around 2006.  Most of my experience scripting has been related to crafting, training and BODs.  Most medic scripts I tried usually just got me killed.

I'm adept enough at minor editing to minimally customize scripts to my needs.  I've only written a few very basic scripts of my own like 25 lines or less stuff.

I reactivated my EA/Mythic account but man is the place ever dead.  I probably won't stay. So far I'm GM on 3 skills on ABCUO.  Skill gain is super fast, I like it.  I need to get some gold there though, so I'm just about ready to get out of New Haven and go kill some stuff in Despise.  I noticed the overland spawn is hella more active than EA shards which is nice although I did run into and Ancient Wyrm which smoked my ass in an instant.

Well thanks TM for getting my IP unblocked.

Tommy Boy

Pages: [1]