Author Topic: Paulonius Bowcraft Trainer 0-100 + ROT  (Read 17270 times)

0 Members and 1 Guest are viewing this topic.

Offline Spankin

  • Newbie
  • *
  • Posts: 6
  • Activity:
    0%
  • Reputation Power: 1
  • Spankin has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: Paulonius Bowcraft Trainer 0-100 + ROT
« Reply #15 on: June 02, 2013, 02:21:21 PM »
0
Hello, I am having an issue with the trash barrel. I've tried to move around the barrel in all directions.

- Display A secure trash barrel was not found within reach.  Correct this and restart


Offline Bookwyrm

  • Elite
  • *
  • *
  • Posts: 357
  • Activity:
    0%
  • Reputation Power: 5
  • Bookwyrm has no influence.
  • Gender: Male
  • Better Civilization Through Medication
  • Respect: +34
  • Referrals: 0
    • View Profile
Re: Paulonius Bowcraft Trainer 0-100 + ROT
« Reply #16 on: June 02, 2013, 02:26:51 PM »
0
Can you access the trash barrel from that spot manually? Also I would recommend dismounting from beetle and stabling it if you intend to macro. Bad things can happen.
"The most preposterous notion that H. Sapiens has ever dreamed up is that the Lord God of Creation, Shaper and Ruler of all the Universes, wants the saccharine adoration of His creatures, can be swayed by their prayers, and becomes petulant if He does not receive this flattery. Yet this absurd fantasy, without a shred of evidence to bolster it, pays all the expenses of the oldest, largest, and least productive industry in all of history."   Lazarus Long

"The second most preposterous notion is that copulation is inherently sinful."   L.L. 

Offline Spankin

  • Newbie
  • *
  • Posts: 6
  • Activity:
    0%
  • Reputation Power: 1
  • Spankin has no influence.
  • Respect: 0
  • Referrals: 0
    • View Profile
Re: Paulonius Bowcraft Trainer 0-100 + ROT
« Reply #17 on: June 02, 2013, 02:58:10 PM »
0
Yes, I am able to access it. I also tried moving the trash barrel with no luck.

I am running Windows 7.

Thanks for the advice ;] Beetle is gone!

Offline bfs

  • Jr. Member
  • **
  • Posts: 12
  • Activity:
    0%
  • Reputation Power: 1
  • bfs has no influence.
  • Respect: +4
  • Referrals: 0
    • View Profile
Re: Paulonius Bowcraft Trainer 0-100 + ROT
« Reply #18 on: June 03, 2013, 04:22:12 PM »
0
I have the same problem as wardox. 

I debugged through and found that the repeater xbow's %itemboards is set to 7 when the repeater takes 10 wood to make.  I changed the value from 7 to 10 on line 516 in the sub item7 sub-routine.  Doing that fixed the problem with not refilling after 90 skill.

yup after switching number there working flawlessly!

Offline Crisis

  • Global Moderator
  • *
  • *
  • Posts: 2998
  • Activity:
    3.2%
  • Reputation Power: 41
  • Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.
  • Gender: Male
  • Scripting well enough to break things!
  • Respect: +205
  • Referrals: 2
    • View Profile
Re: Paulonius Bowcraft Trainer 0-100 + ROT
« Reply #19 on: December 27, 2013, 06:06:15 AM »
0
I am having the same problem as Spankin.

I have moved the trash barrel many times and it cannot find it. I made sure that it had the same ID as what the script was looking for which matched. I really don't know why it isn't seeing it.


Offline 12TimesOver

  • Another Day, Another Vendetta
  • Global Moderator
  • *
  • *
  • Posts: 3694
  • Activity:
    0%
  • Reputation Power: 41
  • 12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.
  • Gender: Male
  • Respect: +321
  • Referrals: 2
    • View Profile
Re: Paulonius Bowcraft Trainer 0-100 + ROT
« Reply #20 on: December 27, 2013, 06:31:51 AM »
0
I see that Paulo is searching for any container within a 2-tile radius that has a type value of BKF. Are you saying that your trash barrel has a type of BKF when you mention the "ID" being the same that the script is looking for?

I would do something like this -

Replace:

Code: [Select]
Finditem BKF G_2
For %TrashSearch 1 #FindCnt
   {
   Set #Findindex %TrashSearch
   Event Property #FindID
   If Trash in #Property && Secure in #Property
      {
      Set %TrashBarrel #FindID
      Set %TrashSearchSuccess Yes
      }
   }
If %TrashSearchSuccess <> Yes
   {
   Display A secure trash barrel was not found within reach.  Correct this and restart
   pause
   }

with:

Code: [Select]
Display Ok Select the trash barrel.
  set #targcurs 1
      while #targcurs = 1
         wait 1
      set %Trashbarrel #ltargetID

Then it will specifically use your targeted container instead of automatically looking for all containers and checking #property to see if its a trash barrel. Just another way to do the same thing without the automation.

X
When they come for me I'll be sitting at my desk
     with a gun in my hand wearing a bulletproof vest
My, my, my how the time does fly
     when you know you're gonna die by the end of the night

Offline Crisis

  • Global Moderator
  • *
  • *
  • Posts: 2998
  • Activity:
    3.2%
  • Reputation Power: 41
  • Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.
  • Gender: Male
  • Scripting well enough to break things!
  • Respect: +205
  • Referrals: 2
    • View Profile
Re: Paulonius Bowcraft Trainer 0-100 + ROT
« Reply #21 on: December 27, 2013, 07:11:46 AM »
0
I see that Paulo is searching for any container within a 2-tile radius that has a type value of BKF. Are you saying that your trash barrel has a type of BKF when you mention the "ID" being the same that the script is looking for?

I would do something like this -

Replace:

Code: [Select]
Finditem BKF G_2
For %TrashSearch 1 #FindCnt
   {
   Set #Findindex %TrashSearch
   Event Property #FindID
   If Trash in #Property && Secure in #Property
      {
      Set %TrashBarrel #FindID
      Set %TrashSearchSuccess Yes
      }
   }
If %TrashSearchSuccess <> Yes
   {
   Display A secure trash barrel was not found within reach.  Correct this and restart
   pause
   }

with:

Code: [Select]
Display Ok Select the trash barrel.
  set #targcurs 1
      while #targcurs = 1
         wait 1
      set %Trashbarrel #ltargetID

Then it will specifically use your targeted container instead of automatically looking for all containers and checking #property to see if its a trash barrel. Just another way to do the same thing without the automation.

X

That's exactly what I ended up doing so I could use the script. I mainly posted so that the author knows that it is still happening so he can edit his script. A year ago I wouldn't have known how to fix it. I added this to it.

Code: [Select]
Display Ok Select your trash barrel.
  set #targcurs 1
      while #targcurs = 1
         wait 1
      set %trashbarrel #ltargetID
      set #lobjectID #ltargetID
      set #nextcposx 800
      set #nextcposy 0
      event macro 17
      wait 20

Offline 12TimesOver

  • Another Day, Another Vendetta
  • Global Moderator
  • *
  • *
  • Posts: 3694
  • Activity:
    0%
  • Reputation Power: 41
  • 12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.12TimesOver is a force to reckon with.
  • Gender: Male
  • Respect: +321
  • Referrals: 2
    • View Profile
Re: Paulonius Bowcraft Trainer 0-100 + ROT
« Reply #22 on: December 27, 2013, 09:10:10 AM »
0
Well done then! :)

I ditched everything after "set %trashbarrel #ltargetID" simply because you don't need to open the trashcan to use it but either way, problem solved!
When they come for me I'll be sitting at my desk
     with a gun in my hand wearing a bulletproof vest
My, my, my how the time does fly
     when you know you're gonna die by the end of the night

Offline Crisis

  • Global Moderator
  • *
  • *
  • Posts: 2998
  • Activity:
    3.2%
  • Reputation Power: 41
  • Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.Crisis is a force to reckon with.
  • Gender: Male
  • Scripting well enough to break things!
  • Respect: +205
  • Referrals: 2
    • View Profile
Re: Paulonius Bowcraft Trainer 0-100 + ROT
« Reply #23 on: December 27, 2013, 09:49:22 AM »
0
Well done then! :)

I ditched everything after "set %trashbarrel #ltargetID" simply because you don't need to open the trashcan to use it but either way, problem solved!

I never thought about that, I am so use to needing containers open lol.

Offline Gemviper

  • Sr. Member
  • *
  • Posts: 481
  • Activity:
    0%
  • Reputation Power: 0
  • Gemviper hides in shadows.
  • Respect: +57
  • Referrals: 2
    • View Profile
Re: Paulonius Bowcraft Trainer 0-100 + ROT
« Reply #24 on: October 01, 2015, 12:59:08 AM »
0
I needed to set the number of boards used by a repeating crossbow to 10 from 7(Set %ItemBoards 10) and, also, the problem with the trash barrel is that the script is looking for the words trash AND "secured" on your barrel. When you place a barrel now they are no longer secured by default but you CAN secure it after creating it. Just secure the barrel and the problem is solved.

Tags: