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

Pages: [1]
1
UOSteam / Afk Vet Trainer(Steam)
« on: April 01, 2017, 06:46:35 PM »
So this was just thrown together today for a friend, I have the bandages set to the color you can buy off luna vendor
and they'll pick them up from the top left of the bank box.
I prefer harm because if you stand 1 tile away it does less damage, or more if preferred.

Need to swap serial ids for whatever pet you're hitting and or resing, other than that it seems to work.

I added two bandages to poison for the purpose of healing any damage buildup from poison, but it wouldn't heal enough for gains
so I also added harm so it would at least count for something.
>
>
>
>
//change target serials to pets and put bandages in top left of bank, 1742 is color of bandages, only thing you need to change if using dif bandages.
if not listexists 'bank'
  @createlist 'bank'
else
endif
if not listexists 'harm'
  @createlist 'harm'
else
endif
if not listexists 'poison'
  @createlist 'poison'
else
endif
if not listexists 'res'
  @createlist 'res'
else
endif
@poplist 'bank' 'front'
if not @findtype 0xe21 1742 'backpack'
  msg 'bank'
  @movetype 0xe21 'bank' 'backpack' 18, 105, 0 1742 100
  pause 600
  turn 'east'
  walk 'east'
  turn 'west'
  walk 'west'
  @pushlist 'harm' 'front'
else
  @pushlist 'harm' 'front'
endif
@poplist 'harm' 'front'
if not @findtype 0xe21 1742 'backpack'
  @pushlist 'bank' 'front'
else
  while  skill 'Veterinary' < 60
    cast "Harm"
    pause 1250
    @target 0x2671ed2
    pause 1000
    @usetype 0xe21 1742
    waitfortarget 5000
    @target 0x2671ed2
    pause 1150
  endwhile
else
  @pushlist 'poison' 'front'
endif
@poplist 'poison' 'front'
if not @findtype 0xe21 1742 'backpack'
  @pushlist 'bank' 'front'
else
  if skill 'Veterinary' < 85
    @clearusequeue!
    cast "Poison"
    waitfortarget 3000
    pause 500
    @target! 0x2671ed2
    pause 500
    cast 'Harm'
    waitfortarget 2000
    pause 500
    @target! 0x2671ed2
    pause 500
    usetype 0xe21 1742
    waitfortarget 2000
    pause 500
    @target! 0x2671ed2
    pause 2000
    usetype 0xe21 1742
    waitfortarget 2000
    pause 500
    @target! 0x2671ed2
    pause 1000
    @clearusequeue!
  endif
else
  @pushlist 'res' 'front'
endif
@poplist 'res' 'front'
if not @findtype 0xe21 1742 'backpack'
  @pushlist 'bank' 'front'
else
  if skill 'Veterinary' < 120
    @usetype 0xe21 1742
    pause 750
    @target! 0x2671ed2
    waitfortarget 5000
  endif
else
  stop
endif


My first long trainer macro, any feedback would be appreciated.

2
UOSteam / Macro problems with autoheal friends
« on: March 31, 2017, 12:37:17 PM »
alright so I'm not the best for sure, but I was trying this out to get it to register an allies hps below 100% and cast heal on them, one issue regarding these is that they'll only check a single friend at a time, so I was planning to try and set it up to repeat the same script 3-4x while ignoring previous friends found unharmed, then pressed again it will clear the ignored friends and recheck all.
Now I had this working below.

@getfriend 'friend'
if not poisoned 'friend'
  @ignoreobject 'friend'
else
  setalias '0' 'friend'
  cast 'Arch Cure'
  waitfortarget 2000
  @target '0'
  pause 750
endif
(at this point I repeat it 3x then clearignorelist at bottom to make sure it checks multiples, if any ideas on how to improve the searching for poisoned friends process, that would be awesome.)

But I can't figure out how to find below 100% hps, or preferably like 80% if you can specify

Any help is appreciated :D

clearignorelist
if not getfriend 'friend'
  sysmsg 'forever alone'
  stop
else
  setalias 'o' 'found'
endif
sysmsg '1'
if friend 'o' hits == 'maxhits'
ignoreobject 'o'
  stop
else
endif
sysmsg '2'
cast 'Greater Heal'
waitfortarget 2000
target 'o'
pause 750
endif

3
Public Bugs / Client loading error?
« on: May 24, 2016, 05:38:30 PM »
Okay so I was playing then disconnected, net went down kinda, I restarted computer, ran without a few extra processes I usually run fine with it..
Tried winxp sp3, administator, and nothing worked.. Image is what the error is, I get into login, proceed and then it just loads and says I can't connect?
I built me my own lil macro's and I feel like I can't go without now D: Help please!

Post Merge: May 24, 2016, 05:40:50 PM

4
New member introductions / Hey guys! Returning to UO.
« on: May 22, 2016, 01:07:21 AM »
Hello everyone, I'm just starting back up on UO, and after a little time doing it the old fashioned way, with some help with friends, it's still going pretty slow. I'm trying to get ahead a little so I can start running some fun stuff sooner than later and get the stuff I need to broaden my characters.. Anyways any advice and guidance would be helpful.

Anyways, I play on Pacific, I started playing around 8 years old on Chesapeake with my parents, they were in well with everyone, but I was too young to really appreciate the game by then.. So I spent most of my time on test shards with the free skill points.
I quit at about 12, and I'm 22 now. It's a much different game than I remember it and I've been having fun with everyone on Pacific and a lot of really kind and helpful people have broadened my access to new content I've never touched.

My friend Tan told me about some scripting so I became interested, as some software has already helped improve certain aspects of the game (The very tedious) anyways I'm hoping to learn more about scripts as I'm full on newb in this area.

Pages: [1]