• Visit Rebornbuddy
  • [Request] Adamantite Ore

    Discussion in 'Rebornbuddy Profiles' started by becto, Aug 25, 2015.

    1. ExMatt

      ExMatt Active Member

      Joined:
      Jul 5, 2015
      Messages:
      1,030
      Likes Received:
      14
      Trophy Points:
      38
      Did you change this value? Also, if you moved the initial spots x/z coordinates, then the headings towards the nodes could be and you might have to adjust them.


      try this code in console from your initial location

      Code:
      
      var nodes = GameObjectManager.GetObjectsOfType<GatheringPointObject>()
      		.OrderBy(gpo => gpo.Distance2D(Core.Player.Location)).ToArray();
      
      foreach(var node in nodes)
      {
      MovementManager.SetFacing2D(node.Location);
      Log(node);
      Log("Location: " + node.Location);
      Log("Heading: " + Core.Player.Heading);
      Log("Distance2D: " + node.Location.Distance2D(Core.Player.Location));
      }
      
      
       
    2. Mooncloud

      Mooncloud Member

      Joined:
      Aug 19, 2015
      Messages:
      120
      Likes Received:
      2
      Trophy Points:
      18
      Current C# code has that heading logic updated for the South East node. I also let it run completely autonomously, I don't interfere with its positioning at all. Ill add that logging logic in and see what spits out for you.
       
    3. tishat

      tishat Member

      Joined:
      May 29, 2015
      Messages:
      735
      Likes Received:
      7
      Trophy Points:
      18
      I've had that happen too, went to 1 when the node is at 3
       
    4. ExMatt

      ExMatt Active Member

      Joined:
      Jul 5, 2015
      Messages:
      1,030
      Likes Received:
      14
      Trophy Points:
      38
      Just place that in reborn console next time you are at the initial location.
       
    5. tichy

      tichy Member

      Joined:
      Jun 6, 2015
      Messages:
      142
      Likes Received:
      3
      Trophy Points:
      18
      After this bad boy is done, let me know if you need any help extending it to any of the other unspoiled nodes ExMatt! Happy to do some of the grunt work, this is amazeballs!!
       
    6. SinisterJoint

      SinisterJoint Member

      Joined:
      Feb 13, 2015
      Messages:
      83
      Likes Received:
      2
      Trophy Points:
      8
      the update that becto put in is also amazing. So when im done with red scrips I can gather regular ores. Great work ExMatt. Inc more donations :)
       
    7. Mooncloud

      Mooncloud Member

      Joined:
      Aug 19, 2015
      Messages:
      120
      Likes Received:
      2
      Trophy Points:
      18
      Finally got the information you wanted ExMatt. I had to remove the first Log though since it was getting a compile error trying to pass it just the node.

      [08:37:06.433 N] [SafeCollectAdamantite] Location: <25.29292, 0.5668808, -833.7905>
      [08:37:06.434 N] [SafeCollectAdamantite] Heading: 4.796586
      [08:37:06.434 N] [SafeCollectAdamantite] Distance2D: 24.14199
      [08:37:06.434 N] [SafeCollectAdamantite] Location: <72.07767, 0.7522836, -854.5031>
      [08:37:06.434 N] [SafeCollectAdamantite] Heading: 4.796586
      [08:37:06.434 N] [SafeCollectAdamantite] Distance2D: 29.42114
      [08:37:06.434 N] [SafeCollectAdamantite] Location: <79.63015, 0.5219008, -804.5839>
      [08:37:06.434 N] [SafeCollectAdamantite] Heading: 4.796586
      [08:37:06.434 N] [SafeCollectAdamantite] Distance2D: 43.5048
       
    8. ExMatt

      ExMatt Active Member

      Joined:
      Jul 5, 2015
      Messages:
      1,030
      Likes Received:
      14
      Trophy Points:
      38
      That isn't what I asked you to do =P. I asked you just to run it in console...and the headings didn't work. Run the code in console, All i wanted to see was the 3 headings.
       
    9. Mooncloud

      Mooncloud Member

      Joined:
      Aug 19, 2015
      Messages:
      120
      Likes Received:
      2
      Trophy Points:
      18
      Well then, don't I look like a moron! Here's what you needed:

      Unspoiled Mineral Deposit 0xF2DFC80
      Location: <72.07767, 0.7522836, -854.5031>
      Heading: 2.460094
      Distance2D: 26.4372
      Unspoiled Mineral Deposit 0xF2DF6E0
      Location: <25.29292, 0.5668808, -833.7905>
      Heading: 4.718385
      Distance2D: 30.13098
      Unspoiled Mineral Deposit 0xF2DFAA0
      Location: <79.63015, 0.5219008, -804.5839>
      Heading: 0.6890361
      Distance2D: 38.07335
       
    10. magoclow

      magoclow Member

      Joined:
      Mar 17, 2015
      Messages:
      39
      Likes Received:
      0
      Trophy Points:
      6
      Can we have Porcini Unpoiled Node?
       
    11. Djdave

      Djdave New Member

      Joined:
      Feb 22, 2015
      Messages:
      166
      Likes Received:
      1
      Trophy Points:
      0
      I ran this for a while but on one of the nodes it landed on top of the rock and gets stuck running back and forth. I'm on my phone at the moment but will try and get more detail later.

      Awesome stuff though as normal, thanks Matt.
       
    12. Azoth

      Azoth Member

      Joined:
      Mar 6, 2014
      Messages:
      470
      Likes Received:
      8
      Trophy Points:
      18
      Are Cordials working? I see the files for them, but not sure if they're fully implemented. Working on a profile atm but need to use cordials due to the tight time windows.
       
    13. ExMatt

      ExMatt Active Member

      Joined:
      Jul 5, 2015
      Messages:
      1,030
      Likes Received:
      14
      Trophy Points:
      38
      I need a few more minutes!!!!... then I will have everything up there.
       
    14. ExMatt

      ExMatt Active Member

      Joined:
      Jul 5, 2015
      Messages:
      1,030
      Likes Received:
      14
      Trophy Points:
      38
      Ok...this has improved sooooo much.... I should sell it...but here... take it for free!

      https://github.com/MGramolini/ExBuddy/tree/master/OrderBotTags

      I will be starting a new thread with instructions...but here is the basics.

      you will need directories Common and Gather.

      If you do not have FlightPointTo, or just want to use my slightly modified version (still seems to be having some issues in CWH).

      you will also need the Imported directory.


      You can also just pull the whole OrderBotTags code and it will be fine. (just make sure to remove any duplicate files you may have put in a different place for the Fish or Gather code.

      Or... Donate....
      [​IMG]
       
    15. fuegonova

      fuegonova New Member

      Joined:
      Jun 30, 2015
      Messages:
      7
      Likes Received:
      0
      Trophy Points:
      0
      Sweet!!! Now I have a reason to force myself to stay awake a little longer :D

      Thanks man! and..Donated!
       
    16. ExMatt

      ExMatt Active Member

      Joined:
      Jul 5, 2015
      Messages:
      1,030
      Likes Received:
      14
      Trophy Points:
      38
      Well, cordial code is not 100% working, it broke with my refactor... working on it now.
       
    17. magoclow

      magoclow Member

      Joined:
      Mar 17, 2015
      Messages:
      39
      Likes Received:
      0
      Trophy Points:
      6
      You could sell, I will buy it.
      So, donated for you, and make one request, can you make one profile for porcini unpoiled node?

      thank you.
       
    18. ExMatt

      ExMatt Active Member

      Joined:
      Jul 5, 2015
      Messages:
      1,030
      Likes Received:
      14
      Trophy Points:
      38

      I do need to test the distance between node spawns, that seems to be an issue with some of the blue scrip unspoiled nodes. There would be ways to hack it with some logic in the XML profile, but I am working my way to putting in hotspots like the original gather tag.

      If all the nodes are within range of a single location, I will gladly make a quick profile for you. If not, I have to complete what I am working on first to get it fixed for that type of profile to work without XML magic.

      My higher priority item is creating a "touch and go" epheremal node strategy.
       
    19. ExMatt

      ExMatt Active Member

      Joined:
      Jul 5, 2015
      Messages:
      1,030
      Likes Received:
      14
      Trophy Points:
      38
      Major update, fixed cordials, created more rotations and added in some extra logging.
       
    20. Mooncloud

      Mooncloud Member

      Joined:
      Aug 19, 2015
      Messages:
      120
      Likes Received:
      2
      Trophy Points:
      18
      Just donated, thanks for your hard work.
       

    Share This Page