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

Pages: [1]
1
Scripting Chat / Usefull subs
« on: November 03, 2011, 06:21:53 AM »
Hi 2 all!
I need some subs in order to start working on my BOD gatherer/filler/sorter system
Last two major parts has lots of examples, so I will need only to modify and loop em(but it will be nice if you will shove me best(fast&stable&with good code) script for those two.
And about gatherer - there are lots of em too, but none of them can recall, drop bod in secure and move in order to safe logout in a house.
The system will be like this :
1) Matherial gatherers will work with that house too. So resources(ingots mostly) will be dropped into one chest
2) Log in -> recall to BS&Tailor -> take bods-> recall home -> drop BOD -> move to a safe tile -> logout
3) Just gathered bods(tailor&bs in separate) will be dropped in the chest
4) Then they will be tooked from this chest and filled, then moved to the other chest
5) From filled chest it will be sorted to bod books(until there will be 500 in a book), or I don't know - maybe big bods may be filled too, etc.

So I need :
1) Login system that can accept login name(password will be default for all accounts) and position of the character in the list. Needs to be TOTALLY STABLE.
2) Small rail engine that can move to a specific location. Needs to be stable.
3) Recall sub? Saw some realisations of this.
4) Follow the bod giver&accept bod
5) Pre filter(I don't need large bod for weapons or bone) - if no need in this -> drop into a trash can in a house.

The main part is login system, other are much more easier.

PS also need a script that will launch clients and log in all characters and keep em logged and start all of this scripts.

2
Scripting Chat / Posts deleting
« on: October 07, 2011, 06:02:56 AM »
I had a script that was a bit like donate-o-matic, my script worked faster, but a bit unsafe(d-o-m script has a lot of checks, and most of them waste more time than running the script from the beginning)
And I have posted my script in the donate-o-matic, like an alternative for his script, and yes, my post were criticized(like do your own script, with blackjack and sluts).
And now I don't have my scripts on hard drive, and I have come here in order to find my pieces of scripts, and founded only one basic script...
SO who has deleted my script? And can I recover it back? I remember the algorithm, but it will be better to copy-paste it back(even if it is in beta version).

It's a pity that some informative posts are deleted...

3
New member introductions / Hi 2 all
« on: September 14, 2009, 07:13:46 AM »
I'm playing UO for 5 years in a Ukrainian sector(now it is a shard called RofL - Realm of forgotten Legends, rofl.net.ua. Osi style). I like scripting, because it is fun to just watch on a work, that a good script did for you. Dunno what to say more about me =) I just like to play UO, because it is a greatest MMORPG in a whole world =).

4
Inactive Submissions / Last item craft script
« on: September 14, 2009, 07:02:21 AM »
Quote
; Set this up
Set %tool TBG ; With what do you want to craft
Set %rawMaterial ENK ; Resourse type wich you will use to craft
Set %stack 150 ; how much materials do you need to craft
Set %trash NSH ; crafted item
Set %secure HQLUWMD ; From where do you want to gain materials and tools
Set %secureForItems APGMKMD ; A place where you want to put crafted item . It can be also a trash barrel.
Set %skill Blac ; What skill do you want to train. See http://wiki.easyuo.com/index.php/ChooseSkill for a full list.
Set %skillValue 1064 ; What is the last gain to change item-craft-type. If you want to disable that - put more than 1200.
Set %DragOrSmelt Smelt ; Drag = drag, Smelt = smelt or cut.
Set %SmeltOrCut Smelt ; Cut = cut, Smelt = smelt.
Set %scissiors TGB ; scissiors type
; Do not touch this
chooseSkill %skill
if #skill >= %skillValue
{
      msg Last gain. Choose new item to craft and adjust the script again.
   halt
   }
finditem %rawMaterial C_ , #backpackid
If #findstack < %stack
{
      finditem %rawMaterial C_ , %secure
      Exevent Drag #findid %stack
      Exevent Dropc #backpackid
      wait 15
   }
finditem %tool C_ , #backpackid
   if #findcnt < 1
  {
      finditem %tool C_ , %secure
      if #findcnt > 0
    {
         Exevent Drag #findid
         Exevent Dropc #backpackid
      }
      else
    {
         display ok No more tools =(
      halt
      }
   }
set #lobjectid #findid
event macro 17 0
wait 15
click 330 465 ; Make last button position
finditem %trash C_ , #backpackid
if #findcnt > 0
{
   If %DragOrSmelt = Drag
  {
      Exevent Drag #findid #findstack
      Exevent Dropc %secureForItems
      wait 15
   }
   If %DragOrSmelt = Smelt
  {
      If %SmeltOrCut = Cut
    {
         finditem %scissiors
         set #lobjectid #findid
         event macro 17 0
         wait 5
         finditem %trash C_ , #backpackid
         set #ltargetid #findid
         set #ltargetkind 1
         event macro 22
      }
      If %SmeltOrCut = Smelt
    {
      finditem %tool C_ , #backpackid
         set #lobjectid #findid
         event macro 17 0
         wait 5
         click 80 400 ; Smelt item button position
         finditem %trash C_ , #backpackid
         set #ltargetid #findid
         set #ltargetkind 1
         event macro 22
      }
   }
}
Purpose : crafting items or for gains.
HowTO use: read comments.
Works for : any craft-related prof.

Pages: [1]