What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

RebornBuddyCN r586

Please try the new version and let me know if you can still reproduce the issue.
 
Please try the new version and let me know if you can still reproduce the issue.
Hello dear Mastahg, I tested it for 2 hours in 8 Fps with no any issue, it should have been fixed.

I will continue to test it, and if there are any problems after that, I will report to you. Thank you.
 
New version fixes blacklisting players who attempt to trade with the player.



Best thing would be to look at how other profiles handle it.

You can find some profiles here

https://github.com/sodimm/RebornBuddy
https://github.com/y2krazy/Rebornbuddy-Profiles

You'll need exbuddy which is not officially supported, there are several versions of it floating around.

One such version is found here

https://github.com/Entrax643/ExBuddy
Hi, mastagh
I would like to know, if there is a timer I can use to count seconds, for instance, count for 15s.
And when I am fishing, how can I get the fish's name which I just got.
 
Hi, mastagh
I would like to know, if there is a timer I can use to count seconds, for instance, count for 15s.
And when I am fishing, how can I get the fish's name which I just got.


Code:
Clio.Utilities.Helpers.WaitTimer

As for telling what fish you just got you'd have to do something like this

Code:
            var itemCounts = new Dictionary<string,uint>();
            InventoryManager.FilledSlots.ForEach(slot =>
            {

                var sb = new StringBuilder();

                sb.AppendFormat("{0}-{1}", slot.Item.EngName, slot.IsHighQuality);


                if (slot.IsCollectable)
                {
                    //include the bag, and bagslot incase we get a item of the same exact collectability
                    sb.AppendFormat("-collectable:{0}|{1},{2}", slot.Collectability, slot.BagId, slot.Slot);
                }

                var itemString = sb.ToString();

                if (!itemCounts.ContainsKey(itemString))
                {
                    itemCounts[itemString] = 0;
                }

                itemCounts[itemString] += slot.Count;

            });

running this before and after the catch and checking the differences between itemcounts.
 
在5.0飞行的命运中,很容易出现伪造,导致游戏崩溃,尤其是在amu eland地图上,坐标x:25.1 Y:17.1。我希望它可以得到改善。cn服务器很容易被禁止,因为许多人会报告
 
在5.0飞行的命运中,很容易出现伪造,导致游戏崩溃,尤其是在amu eland地图上,坐标x:25.1 Y:17.1。我希望它可以得到改善。cn服务器很容易被禁止,因为许多人会报告

Need a log. need ingame x,y,z and zoneid.
 
Need a log. need ingame x,y,z and zoneid.
Hi,mastahg

As I already knew that how to use BuyItem tag to buy one dialog items, but how to buy items from more than 1 dialog?
For example, I want to auto buy something from script exchanger, first dialog is to choose which type(crafter of gather), the second dialog is to choose which levels(50,60,70 or 80), how to set the variable to autobuy items from such merchants?
Thank you for answering.
 
Hi,mastahg

As I already knew that how to use BuyItem tag to buy one dialog items, but how to buy items from more than 1 dialog?
For example, I want to auto buy something from script exchanger, first dialog is to choose which type(crafter of gather), the second dialog is to choose which levels(50,60,70 or 80), how to set the variable to autobuy items from such merchants?
Thank you for answering.

There isn't a built in tag to do it, you could do it via a code tag tho.

SpecialShopManager.Items
ShopExchangeCurrency.Purchase

Could also look at the tags that exbuddy provides.
 
@mastahg is it possible to add a universal 'click' method in RaptureAtkUnitManager.GetWindowByName().FindButton() more than just a clickable check?
also is there any plan to add more listed RemoteWindows and RemoteAgent objects? such as a looting remotewindow so we can roll loots automatically...
 
@mastahg is it possible to add a universal 'click' method in RaptureAtkUnitManager.GetWindowByName().FindButton() more than just a clickable check?
No

also is there any plan to add more listed RemoteWindows and RemoteAgent objects? such as a looting remotewindow so we can roll loots automatically...

@zzi had done that but never never got it wrapped up for me, its outside what i would consider reversing since we don't ship any party based bots with the bot.
 
Hey mastahg,rb's database doesn't seem to have updated the 5.15 version of the bluemage's localized spell names yet
Code:
DataManager.GetSpellData(18321).LocalizedName
returns nothing
 
Hey mastahg,rb's database doesn't seem to have updated the 5.15 version of the bluemage's localized spell names yet
Code:
DataManager.GetSpellData(18321).LocalizedName
returns nothing

New build coming now with the updated names.
 
Hi mastahg, sorry to bother. I wonder if theres a way to distinguish the grandcompany of an enemy player belongs to in pvp frontlines?
Also is theres a way to detect whether a gameobject has a ingame "attack1" mark or not?
 
Hi mastahg, sorry to bother. I wonder if theres a way to distinguish the grandcompany of an enemy player belongs to in pvp frontlines?
Also is theres a way to detect whether a gameobject has a ingame "attack1" mark or not?

Not currently.
 
在最近使用期间,我的重生预算经常自动退出.It usually has two situations, one is displaying "Authentication failure", and the other is displaying "Session with specified sid does not exist in China region."
 

Attachments

I think the auth server might be having intermittent connectivity issues. Currently looking into it.
 
[QUOTE =“ mastahg,文章:2570695,成员:50500”]我认为身份验证服务器可能会出现间歇性的连接问题。目前正在调查中。[/ QUOTE]
Okay, looking forward to your recovery
 
Back
Top