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

Pages: [1]
1
UOSteam / Re: New OSI graphics resolutions
« on: March 11, 2017, 11:27:06 AM »
find someone with the old client it works but gives a few monsters that show up as black slimes as the updated graphic does not show so no invs monsters just smaller is okay

2
UOSteam scripts / Re: PVM aide
« on: August 31, 2016, 06:06:50 AM »
hope this helps
target! 'enemy' 125 <-- timed out timer, as with all times the best one is the one You find works
with a pause 126
then canceltarget

if not @injournal 'jarring' and not @injournal 'already' and not @injournal 'would have no effect'
  if timer 'discotimer' >= 2050
    useskill 'Discordance'
    waitfortarget 1000
    target! 'enemy' 125
    settimer 'discotimer' 0
    pause 126
    canceltarget
  endif
endif

3
UOSteam scripts / Honor Attack that "Stay on Target"
« on: November 19, 2015, 09:51:01 AM »
This is an Honor Attack short that stays on target if you stay with in 5 tiles
reply this post if you need a hand with this one
it is fully working
Code: [Select]
// new part
 if @distance 'ene' >= 8 or not @findobject 'ene'
      @unsetalias 'ene'
endif
//
if not @inrange 'ene' 5
  @unsetalias 'ene'
  @getenemy 'enemy' 'murderer' 'criminal' 'gray' 'closest'
  if @inrange enemy 6
    @setalias 'ene' enemy
  endif
endif
//<---- will not Honor if more then 6 away
if @hits 'ene' == maxhits 'ene' and @inrange enemy 6
  if not @buffexists "Blood Oath"
    @getenemy 'enemy' 'murderer' 'enemy' 'criminal' 'gray' 'closest'
    @autotargetenemy!
    virtue 'honor'
    pause 200
    @target! 'ene'
    pause 200
    @target! 'ene'
    pause 25
  endif
endif
if not @buffexists "Blood Oath"
  @setability 'primary' 'on
  @target! 'ene'
  pause 25
  @attack! 'ene'
  pause 25
  @attack! 'ene'
  pause 25
endif
if stam < 50
  cast "Divine Fury"
  pause 55
endif
pause 125

4
UOSteam scripts / Auto Keg maker pandora free server ready
« on: July 22, 2015, 01:26:07 PM »
allways have more boards and ingots then needed
// macro only checks for bottles Have only enough for your kegs
// uses saw and tool kit
Code: [Select]
for 5 //<-------- just a loop never will it just make  five kegs unless you only have bottles for five
  pause 50
  if not @findtype 0xf0e 0 'backpack' 10
    headmsg 'Out of bottles'
    stop
  endif
  if not counttype 0x1db8 0 'backpack' >= 2
    usetype 0x1034
    waitforgump 0x38920abd 15000 //<------ check gump ids
    replygump 0x38920abd 1 // <------- check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    replygump 0x38920abd 23 // <------- check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
  endif
  if not counttype 0x1db8  0 'backpack' == 2
    replay
  endif
  if not counttype 0x1eb1 0 'backpack' >= 3
    usetype 0x1034
    waitforgump 0x38920abd 15000<------ check gump ids
    replygump 0x38920abd 1 // <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    replygump 0x38920abd 21// <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
  endif
  if not counttype 0x1eb1  0 'backpack' == 3
    replay
  endif
  if not counttype 0x1004  0 'backpack' >= 1
    usetype 0x1eb8
    waitforgump 0x38920abd 15000<------ check gump ids make sure its the same on your server
    pause 500
    replygump 0x38920abd 3 // <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
    replygump 0x38920abd 22 // <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
  endif
  if not counttype 0x1004  0 'backpack' == 1
    replay
  endif
  if not counttype 0x1db7 0 'backpack' >= 1
    usetype 0x1eb8
    waitforgump 0x38920abd 15000 <------ check gump ids
    pause 500
    replygump 0x38920abd 3 // <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
    replygump 0x38920abd 28// <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
  endif
  if not counttype 0x1db7 0 'backpack' == 1
    replay
  endif
  if not counttype 0xe7f 0 'backpack'  == 1
    usetype 0x1034
    waitforgump 0x38920abd 15000<------ check gump ids
    pause 500
    replygump 0x38920abd 3// <------- check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
    replygump 0x38920abd 57// <------- check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
  endif
  if not counttype 0xe7f 0 'backpack' == 1
    replay
  else
    usetype 0x1eb8
    waitforgump 0x38920abd 15000<------ check gump ids
    pause 500
    replygump 0x38920abd 7// <------ check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
    replygump 0x38920abd 25// <------- check gump replys ids make sure its the same on your server
    waitforgump 0x38920abd 15000
    pause 225
  endif
endfor

5
UOSteam scripts / Re: lumberjacking List help
« on: July 17, 2015, 09:50:31 AM »
Code: [Select]
a push list of Treebook
a pust list of Runes
for 0 to 'TreeBook'
    for 0 to 'Runes'
//this part to trees
          useobject TreeBook[]
          waitforgump 0x554b87f3 5000
          replygump 0x554b87f3 Runes[]
          pause 1500


//to recall back to drop off spot and wait till your ready to start it back up
if @injournal 'pause'//<-------- type pause push enter
  while @findtype 0x1bdd 'any' 'backpack'
    useobject 'LeftHand'
    waitfortarget 1000
    target! 'found'
    pause 500
  endwhile
  useobject 'Home'
  waitforgump 0x554b87f3 15000
  replygump 0x554b87f3 5
  pause 1500
  organizer 'R LJ'
  while organizing
    pause 5000
    if not organizing
      break
    endif
  endwhile
  useskill "Hiding"
  while not @injournal 'go' // this is the wait part
    pause 10000
    if injournal 'go'  //type    go    hit enter and starts back up
      clearjournal
      break
    endif
  endwhile
  useobject TreeBook[]
  waitforgump 0x554b87f3 5000
  replygump 0x554b87f3 Runes[]
  pause 1000
endif
          
//this part to home bag
          useobject 'Homebook'
          waitforgump 0x554b87f3 5000 //<----- the replygump maybe dif on your shard
          replygump 0x554b87f3 5 //<----- the replygump maybe dif on your shard
          pause 1500
//this part back to last tree
          useobject TreeBook[]
          waitforgump 0x554b87f3 5000
          replygump 0x554b87f3 Runes[]
          pause 1500
     endfor
endfor
hope that clears it up

6
UOSteam scripts / Re: AssistUO - Lethal Darts Quest
« on: July 14, 2015, 05:16:15 AM »
to get gump id's
make a new macro Called test
to make a new macro
 Go to Macros tab
 Click on New
 In the popup put in test
Use new macro test
 Click on test in the left hand side
 Then on the right  hand side click on Record
 Use <-------- quest giver
 This is what I get for all the quests
on the free shard I play on
useobject 0x953c7
waitforgump 0x4c4c6db0 15000
useobject 0x953c7
waitforgump 0x4c4c6db0 15000
useobject 0x953c7
waitforgump 0x4c4c6db0 15000
useobject 0x953c7
waitforgump 0x4c4c6db0 15000
useobject 0x953c7
waitforgump 0x4c4c6db0 15000
useobject 0x953c7
waitforgump 0x4c4c6db0 15000
replygump 0x4c4c6db0 4 <--- that is the lethal Darts for the free shard I
play on hope this helps


7
UOSteam scripts / Oh how i hated marking runebooks for choping trees
« on: July 13, 2015, 11:11:34 AM »
Code: [Select]
// Stand Next to Tree, the tree on the west side
// at prompt /target runebook not the tree
while not dead 'self'
  if not findtype 0x1f14
    headmsg 'Need more runes!!!!!!!!!'
    stop
  endif
  clearjournal
  unsetalias 'setrunebook'
  if not findalias 'setrunebook'
    headmsg 'Target Runebook'
    promptalias 'setrunebook'
  endif
  while not hidden 'self'
    if not findtype 0x1f14
      headmsg 'Need more runes!!!!!!!!!'
      break
    endif
    //use axe to West tile
    pause 1000
    useobject 'LeftHand'
    waitfortarget 15000
    targettileoffset -1 0 0
    pause 5000
    if injournal 'use an axe on that' 'system'
      break
    elseif not injournal 'You chop some' 'system'
      break
    endif
    if injournal 'You chop some' 'system'
      if @findtype 0x1bdd 'any' 'backpack'
        useobject 'LeftHand'
        waitfortarget 15000
        target! 'found'
        pause 1000
      endif
      if findtype 0x1f14
        setalias 'markedrune' 'found'
        pause 500
        if findobject 'markedrune'
          cast "Mark"
          waitfortarget 15000
          pause 1500
          target! 'found' 15000
        endif
        if findobject 'markedrune'
          moveitem 'found' 'setrunebook'
          pause 1500
        endif
      else
        headmsg 'WHERE DiD the runes go!!!!!!!!!!!!!!!!!!!!' 33
        stop
      endif
      if not findobject 'markedrune'
        headmsg 'Off to the next spot'
        break
      else
        headmsg 'Runebook Full'
        stop
      endif
    endif
  endwhile
endwhile

hope this helps

Post Merge: July 13, 2015, 05:09:52 PM
ok I needed to gain hiding on a char (playing on a free shard) so I wanted to know how long  to make my pause times perfect to catch the injournal so I made this little script
Code: [Select]
useskill 'Hiding'
// injournal find time
pause 1000
if injournal 'You must wait a' 'system'
  // if checking skilluse times
  headmsg 'longer pause' 33
  //if checking injournal find time
  //headmsg 'shorter pause' 33
  clearjournal
else
  // if checking skilluse times
  headmsg 'shorter pause' 33
  //if checking injournal find time
  //headmsg 'longer pause' 33
  clearjournal
endif
//skilluse time is a total of injournal find pause and the second
pause 9270
// use loop, best if 10 injournal ten times before changing

8
New member introductions / Updated, I'm new say hello to me
« on: May 07, 2014, 11:20:20 AM »
 ;D
hello, my name on these boards is Yulack.
I have been playing uo off and on for since 1998 with about 6 years off playing WoW. I am now playing on the free shard Pandora http://www.pandorauo.com/portal/#play the server is pop is small still but the perks are great, and OMG the imbuing system is the best so far.
added
oh yea, while I was playing on the Osi shard Great lakes, I was in the guild Reborn, then in the guild AE. The worst thing happened to me I got hacked lost everything. The thing is I was to free with my account log info, its all my fault. I had just bought the newest updates logged into the web site put in the update codes, updated my client and logged into find my char's were gone.  I at the moment in time said to my self it's time to play WoW.
Wow's a great game but every time I had great gear it was time to move on to the next expansion. So all my gear sucked now. 3 times. So I looked around for a free sever, and found Pandora.
   Pandora server pop is kind of low right now I think it maybe the pvp is kind of tough. I got lucky and got with a Very good  guild WSF. the imbuing system is very good you can choose what you want on an item up to full value like 15 str on earrings and you can take one properity off an item with destroying it. Items tier adding 5 more imbuing spots it take a lot of spawns to get to tier 5. hit me up if you play on pandora or start playing there i can give ya a hand.

Pages: [1]