What's new
  • Visit Rebornbuddy
  • Visit Resources
  • Visit API Documentation
  • Visit Downloads
  • Visit Portal
  • Visit Panda Profiles
  • Visit LLamamMagic

Changelogs

Status
Not open for further replies.

Out

Active Member
Joined
Jun 2, 2012
Messages
2,972
Reaction score
13
27.09.2014
- Various bug fixes.
- DeleteCharacter(string name) - Delete character.
- Account Manager auto enter to game world.
16.09.2014
- Euro ArcheAge release support.
15.09.2014
- Add Russian Archeage client support. (You can start at the same time both RU and EU clients with account manager)
- Obtain the game client path reworked. (if you got any problems - please, write to me).
13.09.2014
- Beta release.
 
Last edited:
29.09.2014
- Added PolygoneZone support to PlantItemsInZone and CollectItemsInZone
- LastError.NotEnouthOp renamed to LastError.NotEnouthLaborPoints. You need to change this in your plugins and recompile them.
- Self.opPoints renamed to Self.laborPoints. You need to change this in your plugins and recompile them. Self.opPoints left deprecated.
- onOPAmountChanged renamed to onLaborAmountChanged
- Core.ProveInnocence - Free yourself from false accusations.
- Item.mountAlive - Returns is mount alive, which can be summoned with this item.
- Item.mountLevel - Returns mount level, which can be summoned with this item.
- Gazebo scarecrow support.
 
Last edited:
05.10.2014
- Fixed few bugs.
- Optimized gps system path find.
- Fixed plugins autostart (both global for all accounts in settings and custom for each account in plugin manager)
 
07.10.2014
- Buddy Store support. Detailed info will be soon.
 
10.10.2014
- Few bugfixes.
- Account manager improvments:
- Add gold & nickname columns.
- Add settings button in the Account Manager. Options here:
- Show\hide columns in the account manager.
- Auto launch game accounts.
- Delay between auto launch.
- Auto close game client that disconnected.
 
14.10.2014
- getAuctionBuyList,getAuctionSellList,getAuctionBetList - added new param (int delayBetweenPages = 0) - Delay between pages requests in msec. If 0 - will be random from 250 to 550.
- PickupAllDrop(Creature obj) changed for PickupAllDrop(SpawnObject obj)
- Fixed major bug with "Gods disconnect you"
- Few minor bugfixes
- On RU all auction functions now doesnt request auctioneer near.
- RunPlugin and StopPlugin - added support for buddy store plugins (example: RunPlugin("ArcheQuester - Questing 1-30"); )
- Option to select character that will be autologin added in Account Manager
 
Last edited:
18.10.2014
- Fixed few bugs
- getCurrentWorld() - Returns current game world.
- InviteAreaToRaid() - Invite area to raid.
 
19.10.2014
- Fixed major bug with thatched farmhouse.
 
Some stuff updated.
Build-in antiafk temporary removed. Please, use your custom anti afk plugins
 
29.10
- Bugfixes
- Item.ConstructHouse - added new param, bool checkAnotherBuildings = true
Check whether other buildings at construction point.
You should recompile all plugins, that use ConstructHouse Method
 
3.11
* Various bugfixes.
+ Class InstanceDimension - Instance dimension information.
InstanceDimension.index - Dimension index.
InstanceDimension.uniqId - Dimension unique id.
InstanceDimension.currentOnline - Сurrent number of players in this dimension.
InstanceDimension.maximumOnline - Maximum allowable number of players in this dimension.
InstanceDimension.Enter() - Enters to this dimension.
+ Core.getInstanceDimensions() - Returns instance dimensions list.
Code:
UseDoodadSkill(24356, getNearestDoodad(20404)); //Open dimension list  
           foreach (var ins in getInstanceDimensions())
           {
               Log("Instance with index #" + ins.index + " have online: " + ins.currentOnline + "/" + ins.maximumOnline);
               if (ins.index == 9)
                   ins.Enter();
           }

+ Core.getFishVisibleOnRadar() - List of fish that can be seen on the fishing radar.
+ SellBackpack - added support for fish backpacks.
+ Solar Scarecrow Farm support in Plant and Collect farm methods
 
4.11
* After teleport\enter instance gameState now will change to LoadingGameWorld. And after your load screen dissapear - gameState will change back to Ingame. Need tests for this.
+ BattleField type. (BattleField.DrillCampArena and BattleField.GladiatorArena).
+ RequestDialog.BattleFieldInvite.
+ onBattleFieldInvite event. Event occurs when you receive battle field invitation.
+ BattleFieldInviteAnswer(bool agree) - Respond to an invitation to battle field.
+ LeaveBattleField() - Leaves from battle field.
+ CancelBattleFieldRegistration() - Cancels the request to participate in the battles in the battle field.
+ RegisterToBattleField(BattleField battleField) - Send request to participate in the battles in the battle field.
+ Self.isInsideBattleField - Is the character currently in the battle field
+ Self.isRegisteredToBattleField - If the application for participation in the battles in the battle field submitted

Attension. Game client does not show that you registered or have battle field fight, if you register with AB instead of game client.
So, you should use AB only for auto accept battle field invites \ auto leave from arena, or for complex register->accept->leave (in this case game client can display arena enemy as neutral oO/ and etc bugs. 99% that you can attack enemies with AB, but cant with game client).
Simple example:

Code:
public void PluginRun()
{   
  onBattleFieldInvite += () => BattleFieldInviteAnswer(true); 
  try
  { 
    RegisterToBattleField(BattleField.GladiatorArena);
    while (true)
    {
      Thread.Sleep(1000);
      if (LeaveBattleField())
        break;
    }
  }
  finally
  {
    CancelBattleFieldRegistration();
  }
}
 
Last edited:
- Few bugs fixed
- Now log functions agains can colorize text
- GetNearestPoint();
- GetNearestPoint(double X, double Y, double Z)
- GetAllGpsPolygons();
- GetAllGpsPoints();
Beta gps editor now build in with AB update
 
public List<GpsPoint> GpsGetPath(GpsPoint endPoint);
public List<GpsPoint> GpsGetPath(double X, double Y, double Z);
public bool GpsMove(GpsPoint endPoint, double doneDist = 0);
public bool GpsMove(double X, double Y, double Z, double doneDist = 0);
 
Core.getScheduleItems() - Returns a list of scheduled items.
ScheduleItem class - Information about item, received on schedule.
id - Returns schedule item ID from DB.
totalReceivedCount - The number of items received today.
remainTime - How much time is left for the next request.
updated - Last update time.
Claim() - Claim schedule item.
 
SkipPrologue() method - will skip prologue
 
Now account manager will save autostart checkbox.
Now you can edit default widget.
 
Status
Not open for further replies.
Back
Top