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

Pages: [1]
1
Razor Enhanced / Can someone take a look at this for me?
« on: March 27, 2024, 04:00:40 PM »
Trying to get a fishing script up and running over here on UO Forever. The thing is fishing just fine but once it runs out and the "fish dont seem to be biting", it just sits there and does not move the boat as advertised. Anyway i thought id throw it out there for someone that might be bored lol.  Thanks all.

@clearlist 'mobsound'
@createlist 'mobsound'
@clearlist 'attack'
@createlist 'attack'
@clearlist 'scan'
@createlist 'scan'
@clearlist 'skin'
@createlist 'skin'
@clearlist 'drive'
@createlist 'drive'
//* SETUP **
pushlist 'mobsound' 'yes' // yes for mob sound, no for no sound.
pushlist 'attack' 'yes' // yes to attack, no for no attack
pushlist 'scan' 'yes' // yes to scan the horizons
pushlist 'skin' 'yes' // Will skin & re-open nearby corpses
pushlist 'drive' 'yes' // yes to drive boat
//**
if not timerexists 'Sound Timer'
  createtimer 'Sound Timer'
  settimer 'Sound Timer' 15000
endif
if not timerexists 'Bandage Timer'
  createtimer 'Bandage Timer'
  settimer 'Bandage Timer' 10250
endif
// If we are poisoned or don't have full health
while poisoned 'self'
  autotargetself
  cast 'Cure'
  pause 2000
endwhile
while diffhits > 30 and not dead
  autotargetself
  bigheal
  pause 1500
  if not @findobject 'lefthand'
    equipitem 'bow' 2
  endif
endwhile
if not @listexists 'xaxis'
  @createlist 'xaxis'
  @pushlist 'xaxis' 3
  @pushlist 'xaxis' -3
endif
if not @listexists 'yaxis'
  @createlist 'yaxis'
  @pushlist 'yaxis' 3
  @pushlist 'yaxis' -3
endif
if not listexists 'fish'
  createlist 'fish'
  @pushlist 'fish' '0x9ce'
  @pushlist 'fish'' 0x9cf'
  @pushlist 'fish' '0x9cc'
  @pushlist 'fish' '0x9cd'
endif
if dead
  stop
endif
if not @findobject 'bow'
  promptalias 'bow'
endif
if not @findobject 'pole'
  if @findtype '0xdbf' 'any' 'backpack' 'any' '3'
    setalias 'pole' 'found'
    pause 600
  else
    msg 'No Poles'
    playsound 'error.wav'
    pause 10000
  endif
endif
for 0 to 'xaxis'
  for 0 to 'yaxis'
    while not @injournal 'biting' 'system'
      // If we are poisoned or don't have full health
      while poisoned 'self'
        autotargetself
        cast 'Cure'
        pause 2000
      endwhile
      while diffhits > 30 and not dead
        autotargetself
        bigheal
        pause 1500
        if not @findobject 'lefthand'
          equipitem 'bow' 2
        endif
      endwhile
      // Skin serps
      if @inlist 'skin' 'Yes' or @inlist 'skin' 'yes'
        if @findtype 0x2006 'any' 'ground' 'any' 2
          usetype 0xf52
          waitfortarget 3500
          target! 'found'
          pause 600
          useobject 'found'
          ignoreobject 'found'
          unsetalias 'found'
          pause 600
        endif
      endif
// Scan the Horizons
      if @inlist 'scan' 'Yes' or @inlist 'scan' 'yes'
        msg 'scan the horizons'
      endif
      if not @findobject 'lefthand'
        equipitem 'bow' 2
      endif
      // Reset pole
      if not @findobject 'pole'
        if @findtype '0xdbf' 'any' 'backpack' 'any' '3'
          setalias 'pole' 'found'
          pause 600
        else
          msg 'No Poles'
          playsound 'error.wav'
          pause 10000
        endif
      endif
      @canceltarget
      @useobject 'pole'
      waitfortarget 2000
      targettileoffset! 'xaxis[]' 'yaxis[]' 0
      pause 500
      if not @injournal 'biting' 'system'
        pause 7750
      endif
      //Cheer
      if @injournal 'pull a bottle' 'system'
        clearjournal
        headmsg 'GOT ONE'
        if @inlist 'mobsound' 'Yes' or @inlist 'mobsound' 'yes'
          playsound 'cheer.wav'
        endif
      endif
      if @injournal 'mess' 'system'
        clearjournal
        @usetype! 0xdd6
        pause 1000
        @usetype! 0xdd6
        pause 1000
      endif
      if @injournal 'closer' 'system'
        clearjournal
        resync
      endif
      //fishing cleanup
      if weight >= maxweight
        for 0 to 'fish'
          while @findtype fish[] 'any' 'backpack'
            usetype! 0xf52
            waitfortarget 1000
            target! 'found'
            pause 600
          endwhile
        endfor
// adds to fishsteak pile on floor
        if @findtype 0x97a 'any' 'ground' 'any' 2
          movetype 0x97a 'backpack' 'found'
          pause 600
        else
          //starts fishsteak pile on floor if doesnt exist
          movetypeoffset 0x97a 'backpack'  'ground'
          pause 600
        endif
      endif
      //end fishing cleanup
      if not @findobject 'lefthand'
        equipitem 'bow' 2
      endif
      //attack sea serp
      getenemy 'enemy' 'criminal' 'gray' 'closest'
      while @inrange 'enemy' 10
        if @inlist 'mobsound' 'Yes' or @inlist 'mobsound' 'yes'
          if timer 'Sound Timer' > 10000
            playsound 'bell.wav'
            settimer 'Sound Timer' 0
          endif
        endif
        // Attack!
        if @inlist 'attack' 'Yes' or @inlist 'attack' 'yes'
          attack! 'enemy'
        endif
        while poisoned 'self'
          autotargetself
          cast 'Cure'
          pause 2000
        endwhile
        while diffhits > 30 and not dead
          autotargetself
          bigheal
          pause 1500
          if not @findobject 'lefthand'
            equipitem 'bow' 2
          endif
        endwhile
      endwhile
    endwhile
    clearjournal
  endfor
endfor
if @inlist 'drive' 'Yes' or @inlist 'drive' 'yes'
  msg '[e whistle'
  pause 350
  for 0 to '3'
    msg 'Back One'
    Pause 350
  endfor
  for 0 to '6'
    msg 'Forward One'
    Pause 350
  endfor
  for 0 to '3'
    msg 'Left One'
    Pause 350
  endfor
  for 0 to '6'
    msg 'Right One'
    Pause 350
  endfor
  msg 'Forward'
  pause 4500
  msg 'stop'
  playsound 'pssst.wav'
endif

2
General UO Chat - Freeshard edition / UO Forever
« on: February 07, 2024, 01:46:05 PM »
 Hey gang. Finally started playing again on UOF. I was wondering if anyone else was here or if any of our tools worked over there. I honestly havent tried. I hope everyone is well. Cheers!!

3
ScriptUO Application / Returning player
« on: July 09, 2023, 10:28:11 AM »
 Hey gang its been a long long time lol. I am going to be playing again so i thought id drop by. The only issue i ran into was I cant recover my EUO account to download the current build. The site also isnt allowing me to make a new account. Its not sending emails out for verification. Is there an alternate location to download the client?  Thanks for any help.

4
Scripting Chat / Free shard scripts
« on: April 18, 2015, 08:49:54 AM »
Not like im going to have the know how to do this on my own but i was curious what it took to change scripts from osi to free shard? Does it depend on the script, the shard or both and are all scripts different. What im saying is there anything in common that you can change on most scripts or is it a new animal each time..  Thanks

5
New member introductions / Long time no see
« on: April 12, 2015, 05:46:08 AM »
 Guys its been awhile since i played UO. About a year id guess this time. Ive been hopping around to some other games but something told me to come in here and look around. Ive always liked this community and i lurk from time to time when Im not actually gaming with UO. Im trying to decide whether i want to go back to the game or to find a decent free shard to play on. If i go free shard id rather go to one that our scripters use and or trust. The one i had in mind was apparently shut down last summer. Kind of surprising considering all the hype surrounding it. Im really into fishing and all that goes with it on the high seas.  Anyway feel free to PM me any suggestions.
 Just wanted to say hello again and let you guys know i was around.

6
Off Topic / Other tools
« on: February 03, 2014, 11:42:42 AM »
 I have been using EUO for a few years now off and on. I notice quite abit of chit chat about stealth and steam etc. Are they worth playing with at this point? I was just curious what differences I could expect or if they even do what Im used to seeing with EUO. Thanks for any suggestions.,

7
General UO Chat - Freeshard edition / Recommend a free shard pls
« on: February 02, 2014, 05:10:48 AM »
Any of you vets out there that would recommend a free shard? I do still have an active account running on OSI but would be interested in playing on a free shard thats not just PvP hell. I enjoy high seas so id like that to be implemented or at least in the planning and of course script friendly would be a plus. You can PM me if you dont want to post here. Thanks much

8
Off Topic / IPODS
« on: May 22, 2011, 12:11:19 PM »
 Anyone know anything about these? I have one and attempted to plug into my truck radio. It works fine but as soon as the ipod is turned on, i get some background white noise that can only be eliminated by turning my treble way down. I changed things and plugged my wifes in and it works just fine with no noise, also my sons. They have older models. I was wondering if im just out of luck or if there was a chance that reformatting the ipod would help..  Well thanks

9
UO-Related Tutorials / UO Music
« on: April 21, 2011, 10:24:09 AM »
I dont know about any of the rest of you guys, but I hate the login music we have with UO now. I did some digging around and found a simple fix. Guys when i say simple, i mean so easy a caveman could do it. I figure most of you have already changed to your favorite tunes but here the little fix if you havent.

Go to: C:\Program Files (x86)\Electronic Arts\Ultima Online Classic\music\Digital    Im in windows 7 fyi
Find the mp3 named login loop and change the name to whatever..  cheese or cornbread or something..  I found the old turfin tune to be abit more to my liking. I changed the name of turfin to loginloop then bingo.

 Anyway im not certain that you could even classify this as a tutorial but maybe you can move it to a useful section of misc thoughts... 

10
Feedback / Just a quick thanks
« on: April 20, 2011, 11:06:52 AM »
I found one other site before this one that i dont need to name. I just wanted to say thanks for the way you guys treat us here. I love the site layout and i dont feel like someone is sitting over my head with an axe hoping i say the wrong thing so they can boot me. Thanks for being patient with teh noobs..  :0

11
New member introductions / Back after several years
« on: April 09, 2011, 07:24:59 AM »
 Hey everyone. I returned to UO after being away after 3 years. Im looking to learn abit about scripting myself. Im really dense when It comes to this stuff. I will never be an expert but my goal would be to learn to write a simple script. I figure if i can learn one, then ill be addicted and try something more complex.

If I am able to find a script or two that takes a little of the tedious nature out of some of my gaming time, then im all for it. Im more of a laid back player. I usually fish, craft, or just casual PvM/adventure. Anyway thanks for the site. Ill try not to be a pest while im here. Just looking to learn mainly.  Thanks

I just saw some of the examples and thought id write abit more lol. I started UO nearly by accident when AOS was released. I heard of it watching some history channel on gaming but the funny thing was i didnt order the game. My friend pre-ordered another EA game that was released at the same time and AOS showed up in the mail. I told him what i heard about UO and the rest was history.

I left UO for the launch of SWG. I think it was a great game in the beginning but what always seems to happen , happened. Wow was launched and SWG soon decided they wanted to be space SWGwow. I plyed eve online for about 2 years and still love it but it takes forever to get anywhere on there. You need hours at a time to dedicate and I couldnt do that anymore.

I returned to UO for about a year in 06-07 and really enjoyed the fact that my server was full again. AOL legends had become legends and more people could play. Well i got married in 07 and many here know what happened. Play time went bye bye.

Well after 3 1/2 years of being married, the wife is more secure now. She realizes that gaming isnt me trying to get away from her. I got my stepson started on my second account and we are now back on legends. Ive been back since january and am having a great time except for the low population. I am considering moving to atlantic but i will not make a move until I am sure its what I want. There is something to be said about the nostalgia of playing your original shard.

Pages: [1]