• Visit Rebornbuddy
  • [Release] RebornBuddy64 Version 1.0.424 - DirectX11 / x64 bit compatible

    Discussion in 'Rebornbuddy Forum' started by mastahg, Feb 29, 2016.

    1. y2krazy

      y2krazy Community Developer

      Joined:
      Jun 21, 2011
      Messages:
      2,803
      Likes Received:
      70
      Trophy Points:
      48
      It's a little late to bump this, but please post a full log .txt file. My guess is that you did not click Unblock in the .zip file properties before extracting it as I do not see that error when running RB and having the Sparrow plugin installed.
       
    2. rainio

      rainio New Member

      Joined:
      Aug 11, 2014
      Messages:
      17
      Likes Received:
      0
      Trophy Points:
      1
      Hi, I think the link to download the rebornbuddy zip might be broken? I keep clicking it and a blank chrome tab opens for a split second then closes and nothing happens. Downloads are not blocked, I checked and am able to download other things (downloaded the BuddyWizard just fine)
       
    3. crpaul

      crpaul Member

      Joined:
      Jun 23, 2016
      Messages:
      137
      Likes Received:
      4
      Trophy Points:
      18
      works fine here try other browser
       
    4. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,229
      Likes Received:
      364
      Trophy Points:
      83
      Working fine for me, try right clicking save as if you can't get it to work normally.
       
    5. nt153133

      nt153133 Member

      Joined:
      Nov 11, 2017
      Messages:
      68
      Likes Received:
      7
      Trophy Points:
      8
      BagId in `ff14bot/Managers/Bag.cs` is off, it's the int at +8 not +4. Not sure what +4 is but it seems like a bag type, normal inventories are all 0x280 which is what bagid is reporting now.
       
    6. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,229
      Likes Received:
      364
      Trophy Points:
      83
      Pushing new build now.
       
    7. crpaul

      crpaul Member

      Joined:
      Jun 23, 2016
      Messages:
      137
      Likes Received:
      4
      Trophy Points:
      18
      Mastahg is there a way to and a anti AFK cus as of right now we get kicked even if we are gathring
       
    8. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,229
      Likes Received:
      364
      Trophy Points:
      83
      New build coming now
       
    9. Zamphire

      Zamphire Member

      Joined:
      May 16, 2013
      Messages:
      349
      Likes Received:
      11
      Trophy Points:
      18
      It looks like FishManager currently only supports Mooch and has the spellID hard coded. Is it possible to get MoochII added in?
       
    10. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,229
      Likes Received:
      364
      Trophy Points:
      83

      You can use this for now

      Code:
              public static RunStatus Mooch2()
              {
                  if (FishingManager.CanMooch)
                  {
                      Logging.Write(@"Casting Mooch ({0})", FishingManager.MoochLevel);
                      if (ActionManager.DoAction(ActionType.Spell, 268, null))
                      {
                          FishingManager.MoochLevel++;
                      }
                  }
                  return RunStatus.Success;
              }
      
       
    11. Akira0245

      Akira0245 Member

      Joined:
      Mar 9, 2019
      Messages:
      72
      Likes Received:
      0
      Trophy Points:
      6
      hi mastahg, i met a problem when trying to make dragoon elusive jump to a specified direction when received an echo message,

      Code:
              private void GamelogManager_EchoRecevied(object sender, ChatEventArgs e)
              {
                  if (e.ChatLogEntry.Contents.StartsWith("@escape", StringComparison.InvariantCultureIgnoreCase))
                  {
                      var cameraheading = Core.Memory.Read<float>(CameraManager.CameraPtr + 0x130);
                      if (e.ChatLogEntry.Contents.Contains("invert")) cameraheading += 3.1415926f;
      
                      //character heading offset: +0xB0
                      Core.Memory.Write(Core.Me.Pointer + 0xB0, cameraheading);
                      ActionManager.DoAction(@"Elusive Jump", null);
      
                  }
              }
      this working in most situations, but i found when many spells is using by CR simultaneously, it sometimes can not jump to the proper direction. i guess it is because the gamelog event and treeroot are in different threads.
      how can i make sure a memory value is my expected value before greymagic's calls get executed?
       
    12. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,229
      Likes Received:
      364
      Trophy Points:
      83
      You can try wrapping your code in a framelock, but its kinda skecthy.
      Best bet would be to set a flag that code in the main thread will check and then execute

      Code:
                              using (Core.Memory.AcquireFrame(true))
                              {
      }
      
       
    13. Akira0245

      Akira0245 Member

      Joined:
      Mar 9, 2019
      Messages:
      72
      Likes Received:
      0
      Trophy Points:
      6
      hi mastahg, could you tell me when should i use ff14bot.Ext.NoCacheRead<T> rather than Read<T>? is there a performance difference between them?
       
    14. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,229
      Likes Received:
      364
      Trophy Points:
      83
      Read<T> is cached for the current game frame and should be preferred as it will be faster if you read the same address within a frame, if the value might change midframe say after a function call then you might want to use nocacheread
       
      Akira0245 likes this.
    15. Akira0245

      Akira0245 Member

      Joined:
      Mar 9, 2019
      Messages:
      72
      Likes Received:
      0
      Trophy Points:
      6
      thank you!
       
    16. RositaSchaefer

      RositaSchaefer New Member

      Joined:
      Aug 16, 2021
      Messages:
      1
      Likes Received:
      1
      Trophy Points:
      3
      cfw34683 likes this.
    17. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,229
      Likes Received:
      364
      Trophy Points:
      83
      Thanks, I was trying to find some external confirmation that the timers were infact removed but I haven't been able to find anything, have you seen this information posted anywhere else?
       
    18. bob12345654321

      bob12345654321 New Member

      Joined:
      Aug 27, 2021
      Messages:
      6
      Likes Received:
      0
      Trophy Points:
      1
      can anyone help me out here, whenever i try to open the executable it gives me the error message that i need VC++ 2015 14.0, i installed both x86 and x64 versions and still got this error, i downloaded the buddy wizard and its just permanently stuck "installing VC++ 2015" for over 10 minutes now, how should i go about fixing this?
       
    19. mastahg

      mastahg Administrator Staff Member

      Joined:
      Feb 27, 2011
      Messages:
      5,229
      Likes Received:
      364
      Trophy Points:
      83
    20. bob12345654321

      bob12345654321 New Member

      Joined:
      Aug 27, 2021
      Messages:
      6
      Likes Received:
      0
      Trophy Points:
      1
      i just downloaded that and the x64 checks out on buddywizard, but the x86 just wont install, any advice on how to fix this?
       

    Share This Page