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

Pages: [1] 2 3 ... 5
1
Scripting Chat / Re: Working Taming Script?
« on: May 15, 2020, 08:46:08 PM »
Every time I train a tamer I use Roadkills. It just works man.. Making rails is kinda risky but taming bulls on barrier island is remote. Honestly I don't think I had to do much to get it to work again.

Crazy that its still working 17 years later lol.

2
Off Topic / Re: Mesanna & scripting
« on: June 18, 2018, 05:34:39 PM »
If I remember right private or elite scripts were sold by people that didnt make them or something. Long time ago drama.

3
New member introductions / Re: Hello from Strength
« on: June 17, 2018, 07:27:58 PM »
Havent seen you on chessy mr. pvper....

4
Off Topic / Re: Mesanna & scripting
« on: June 17, 2018, 06:48:54 PM »
Ha saw that post in euo last month wondering why he was saying you were talking trash about him Tidus, then saw this post here and It all came together...

5
General UO Chat / Re: Publish 97 pet training boot camp
« on: April 30, 2018, 07:43:27 PM »
A lot of this information is outdated. I will be updating it after pub 100

6
General UO Chat / GM crackdown on botters?
« on: April 25, 2018, 11:01:06 PM »
Top post from mesanna listing ban numbers?? Are they actually going to try to stop this after 20 years?

https://uo.com/2018/04/19/16426/

 :police: :police: :police:

7
Script Debug / Re: Trying to use pathfind
« on: August 03, 2017, 11:04:48 PM »
Not sure if you don't know this or not but there is an easyuo wiki that lists each command and what it does.

http://wiki.easyuo.com/index.php?title=Move

http://wiki.easyuo.com/index.php?title=Event_PathFind

Bob was sorta right, it does try to get to your location but unspecified like in the case of the code you posted, it will timeout after 3 seconds and get you within a few tiles. Path finding is a tad more complicated than move but obviously the results are: You wont get stuck on a twig.

8
Script Debug / Re: lack of skill needed to harvest
« on: August 03, 2017, 09:39:05 PM »
If you can't use the journal to check if a spot is valid or not you could keep an eye on success by checking bag weight after every swing. weight changes - good spot, no weight added - bad spot.

9
Submit your Script / Re: Crisis Legendary Scribe
« on: August 03, 2017, 11:27:35 AM »
Tried to make wood pulp with this today, it goes over weight and cant pull any more bark fragment into your player pack. Need to add a check or even just a dump wood pulp line before it tries to get more bark fragment. Stuck in a loop of attempting to drag a stack of bark fragment into your pack while you can not hold any more weight. It also seems very slow compared to mine.

10
Submit your Script / Re: Crisis Legendary Scribe
« on: August 01, 2017, 11:21:06 AM »
Kinda new to globals but isn't !col a variable?

edit: Looks like its for colored resources, like blue ingots ect. seems to be a typo thats why its displaying !col there needs to be a space between !col$ like this !col $

11
Scripting Chat / Re: The EUO command Display
« on: July 31, 2017, 10:36:24 PM »
Unless there is a command for the command line that can put text onto your clipboard, Only way is to Write a text file and then copy from there. Roadkill wrote a sub for writing multiple lines at a time to a text file, I think it's over on Easyuo.

Isnt that his rail writer? I think it is, I used it about 3 to 4 years ago. Wish that guy would come back  :(

12
Submit your Script / Re: Crisis Legendary Scribe
« on: July 31, 2017, 08:13:01 PM »
Tested! Been waiting for something like this for a long time, thank you crisis.

I found a few thingys. Running out of any resource gives you the resource type then says !Col.

Out of ENK !Col

Please place 50 ENK N/A in your backpack and then press play.

Also if you manually enter the container types at the top of the script it will not open the containers after running the script, you have to manually open them. Because there is no way for the script to check if the container is open, closing any of the containers while the script is running breaks the script as soon as you need to pull more resources.

If you could get around to adding a check for inscription tools in the resource container before trying to use tinkering that would be nice. Having to manually load them is kinda a pain. I do not have tinkering on my mage :(

Update: I did it for you

Code: [Select]
sub CheckScribe
  ; keep two in pack in case current one gets worn out
  finditem %Scribe_Tool C_ , #backpackid
  if #findcnt < 2
  {
    gosub Pullscribe
  }
return
;===================================================================
sub Pullscribe

  finditem %scribe_Tool C_ , %Resource_Secure
  if #findcnt > 2
  {
    exevent drag #findid #findstack
    wait 10
    Exevent Dropc #backpackid
    wait 10
   Return
  }
  Gosub Craftscribe
  Return
;===================================================================

I added that because I am very lazy. for those of you that are lazy like me, pretty sure that is everyone here though because we are using euo. Anywho. I need sleep and crisis needs to make me 126k blank scrolls.

13
Submit your Script / Re: Crisis Legendary Scribe
« on: July 31, 2017, 07:07:08 PM »
Well some one is a busy body, making me feel bad about all my neglected half finished projects in my euo folder. Maybe I will give em some love..... AFTER I try this  :angel:

14
Submit your Script / Re: Crisis Recipe Checker
« on: July 31, 2017, 07:04:16 PM »
Very cool, I will fire this up after the patch is done downloading and toss some feedback.    ;)

Update: Works like a charm, thanks crisis

15
I still believe them to be reactive instead of proactive, like ghost said the only time I have had one pop up is when I am farming semi afk in blackthornes dungeon. I believe that players are reporting people and GMs are responding. I have yet to have one pop my resource gatherer because he is pinging all over the place and actively avoids other plays. I have also yet to have one pop up in my home while running trainers. 3 times I have had one pop up in doom and 2 times in blackthornes. Looks like they are keeping a close eye on arty farming.

Pages: [1] 2 3 ... 5