Page 1 of 3

Farming BODs Free Gold ***New Players Look***

Posted: March 27th, 2017, 8:13 pm
by Tanya
If you are new player on Demise and looking how to make gold, this is one of the ways to make gold, without too much effort.

Here in this topic I will show step by step how to make in 2-3 min about 200k gold, just with fresh made characters.

Ok lets start!

0.1 elf reset BOD books - what the hell is this?

(BOD = Bulk Order Deed)

First of all on Demise you can create 4 accounts with 7 characters on each account. Very important: the character that will be collecting bods must be an elf! Even if they are human it still works, but BODS that are collected by elf will be selling better and worth more gold.
0.1 - is amount of tailoring and blacksmith skills your collector will have (when you train skills first time, you give NPC 1 gold coin, and this will make 0.1 skill). No need to have more, with 0.1 skill you can collect BODs each hour, and the BODs are best for later filling and reset.

After your BOD collectors are ready, place them all on top of Luna Bank! Why? Because on top of Luna Bank you can instantly log in and log out, without waiting a lot of time. You can stay in one spot without moving, and take 2 BODs, one from tailor and one from smith.
bod collectors luna.jpg
bod collectors luna.jpg (93.6 KiB) Viewed 11052 times
If you have 28 collectors, and each one collects 2 BODs, you have 56 BODs, and this is about 200k in gold, farmed in 1-3 min, depends how good is your macro.

10 times you collect BODs with all characters, and you already have a full 500 BODs book! And this is already 1.5kk-2.5kk gold when you sell the book! (price can change, I give here the prices like they are now).

Here is a little UOSteam macro for taking 2 BODS when you stay on top of Luna Bank:
(select Wendy as tailor and Betty as Blacksmith)

Code: Select all

if not @findobject 'Tailor'
  promptalias 'Tailor'
endif
if not @findobject 'Blacksmith'
  promptalias 'Blacksmith'
endif
pause 100
if contextmenu 'Tailor' 1
  waitforgump 'any' 15000
  @replygump 'any' 1
endif
if contextmenu 'Blacksmith' 1
  waitforgump 'any' 15000
  @replygump 'any' 1
endif
pause 200
//logoutbutton
Don't worry about sorting out tailor and smith BODs separatelly in different books, for that there is a macro too.
Buy for each character 2 bulk order books, name one book "bs" another book "tailor". Done! Run this macro, and all BODS will be sorted out in each book! You can wait till your backpack is full with BODs and then run this macro.

Macro for sorting out smith and tailor BODs into 2 different books, thanks Bama for sharing this macro!

Code: Select all

while @findtype 0x2259 'any' 'backpack'
  waitforproperties 'found' 2000
  if @property 'BS' 'found'
    //msg a
    setalias 'BS' 'found'
    ignoreobject 'found'
  else
    setalias 'Tailor' 'found'
    ignoreobject 'found'
  endif
endwhile
while @findtype 0x2258 1102 'backpack'
  @moveitem 'found' 'BS'
endwhile
while @findtype 0x2258 1155 'backpack'
  @moveitem 'found' 'Tailor'
endwhile
pause 1500
clearignorelist
//logoutbutton
Ok what next? After all characters have at least 30 bods (or more), it's time to combine BODs into a full book! I was usually waiting till my backpack became full, and only then started to combine books, but you can do this any time.

Macro to combine any number of books into one book (don't forget to have in a backpack only one type of books, because this macro is not using filters on a book). We don't want to mix BODs, because some players buying only tailor bods, another players buying only BS bods.

2 macros for combining any number of books (same type BODs) into one book, thanks MB for sharing this macro!

Code: Select all

//COMBINE ALL SMITH BOOKS IN PACK
clearignorelist
promptalias 'book1'
ignoreobject 'book1'
while @findtype '0x2259' 'any' 'backpack'
  @setalias 'booktoempty' 'found'
  if @property 'Deeds in Book' 'booktoempty' > 0
    while @property 'Deeds in Book' 'booktoempty' > 0
      useobject 'booktoempty'
      waitforgump 0x54f555df 1500
      while @property 'Deeds in Book' 'booktoempty' > 0 and @property 'Contents' 'backpack' < 123
        if counttype 0x2258 1155 'backpack' > 0
          sysmsg 'Tailor Bods! Stopping!' 34
          stop
        endif
        replygump 0x54f555df 5
        waitforgump 0x54f555df 1500
      endwhile
      while counttype 0x2258 '1102' 'backpack' > 0
        movetype 0x2258 'backpack' 'book1' [(0 0 0)] 1102
        pause 100
      endwhile
      pause 550
    endwhile
  endif
  ignoreobject 'booktoempty'
endwhile

//COMBINE ALL TAILOR BOOKS IN PACK
clearignorelist
promptalias 'book1'
ignoreobject 'book1'
while @findtype '0x2259' 'any' 'backpack'
  @setalias 'booktoempty' 'found'
  if @property 'Deeds in Book' 'booktoempty' > 0
    while @property 'Deeds in Book' 'booktoempty' > 0
      useobject 'booktoempty'
      waitforgump 0x54f555df 1500
      while @property 'Deeds in Book' 'booktoempty' > 0 and @property 'Contents' 'backpack' < 123
        if counttype 0x2258 1102 'backpack' > 0
          sysmsg 'Blacksmith Bods! Stopping!' 34
          stop
        endif
        replygump 0x54f555df 5
        waitforgump 0x54f555df 1500
      endwhile
      while counttype 0x2258 '1155' 'backpack' > 0
        movetype 0x2258 'backpack' 'book1' [(0 0 0)] 1155
        pause 100
      endwhile
      pause 550
    endwhile
  endif
  ignoreobject 'booktoempty'
endwhile
After you have a full book you can sell it to another players but don't forget that unattended gathering is not allowed.

If you have any questions about farming BODs, let me know.
If someone has better macros for collecting BODs, post them here!
Good luck!

Re: Farming BODs Free Gold ***New Players Look***

Posted: March 27th, 2017, 8:27 pm
by Amish Hammer
This makes me sad. When I really try to farm gold, the best I get is around 180k per hour.

Re: Farming BODs Free Gold ***New Players Look***

Posted: March 27th, 2017, 9:04 pm
by Bama
Tanya wrote:If you are new player on Demise and looking how to make gold, this is one of

If you have any questions about farming BODs, let me know.
Where does a new player get 56 bod books to start out with?

Re: Farming BODs Free Gold ***New Players Look***

Posted: March 27th, 2017, 9:27 pm
by Tanya
Bama wrote:
Tanya wrote:If you are new player on Demise and looking how to make gold, this is one of

If you have any questions about farming BODs, let me know.
Where does a new player get 56 bod books to start out with?
Right, new player has nothing but I'll be happy to donate him empty bod books!

Re: Farming BODs Free Gold ***New Players Look***

Posted: March 27th, 2017, 9:58 pm
by Bama
Tanya wrote:
Bama wrote:
Tanya wrote:If you are new player on Demise and looking how to make gold, this is one of

If you have any questions about farming BODs, let me know.
Where does a new player get 56 bod books to start out with?
Right, new player has nothing but I'll be happy to donate him empty bod books!

Now they know!!!!!!

Re: Farming BODs Free Gold ***New Players Look***

Posted: March 28th, 2017, 10:41 am
by GamliBaykus
Tanya wrote: new players
where are they, i cant see ...

Re: Farming BODs Free Gold ***New Players Look***

Posted: March 29th, 2017, 1:17 am
by Arden
Tanya wrote:
Bama wrote:
Tanya wrote:If you are new player on Demise and looking how to make gold, this is one of

If you have any questions about farming BODs, let me know.
Where does a new player get 56 bod books to start out with?
Right, new player has nothing but I'll be happy to donate him empty bod books!

Can you makers mark bod books?

If you can Tanya you should hand them out to new players and if they bring you a full BOD book with your Makers Mark on it, they get an extra 100k or something lol!

Re: Farming BODs Free Gold ***New Players Look***

Posted: April 20th, 2017, 4:11 am
by hrs024
I really appreciate this bod collector macro, im having an issue tho, instead of it going for a bod, it goes and tries to buy the skill from the vendor instead of going for BOD.. what am i doing wrong?

Re: Farming BODs Free Gold ***New Players Look***

Posted: April 20th, 2017, 4:27 am
by hrs024
oops nevermind i figured it out

Re: Farming BODs Free Gold ***New Players Look***

Posted: April 23rd, 2017, 9:30 am
by wasq
I am a new player and I just want to say thank you for this!

Re: Farming BODs Free Gold ***New Players Look***

Posted: April 27th, 2017, 7:49 pm
by wasq
Script worked flawlessly for few days, but now every time I have to point at "tailor". Smithy is OK, but it can´t find tailor. Even if I can clearly see him on the screen. I tried clear objects even create new macro and it didn´t help.

Btw I have 1 full book of tailor and 1 full book of smith if somebody wants! :)

Re: Farming BODs Free Gold ***New Players Look***

Posted: April 27th, 2017, 8:18 pm
by Tanya
wasq wrote:Script worked flawlessly for few days, but now every time I have to point at "tailor". Smithy is OK, but it can´t find tailor. Even if I can clearly see him on the screen. I tried clear objects even create new macro and it didn´t help.
Not sure what happened, maybe the tailor was far away on the screen.
But you can also set alias by serial like this, I just checked and for me it worked:

Code: Select all

//Wendy
@setalias 'Tailor' 0x62992
//Betty
@setalias 'Blacksmith' 0x4102e
pause 100
if contextmenu 'Tailor' 1
  waitforgump 'any' 15000
  @replygump 'any' 1
endif
pause 200
if contextmenu 'Blacksmith' 1
  waitforgump 'any' 15000
  @replygump 'any' 1
endif
pause 200
//logoutbutton

Re: Farming BODs Free Gold ***New Players Look***

Posted: April 28th, 2017, 12:00 am
by Souced
make sure you are targeting a tailor that gives you bods when you are setting this up or as above just hard code them in

Re: Farming BODs Free Gold ***New Players Look***

Posted: April 28th, 2017, 5:49 am
by hrs024
ah i never thought of hard coding, so would i put 'betty the blacksmith' ?(im not the one with the issue, but this did strike my curiosity}

Re: Farming BODs Free Gold ***New Players Look***

Posted: May 1st, 2017, 12:07 am
by Keeshi
Excuse a newbie here - But - Would it be good to do this and KEEP the BOD's and try and fill them out? Would it be worth doing that?