RevisionHistory:Patch Notes 20-29
From ISXOgre\Aion
Patch Version-20 (Current)
Versions: ISXOgreAion-2013.05.24, Patch Version-20, OgreBot-1.0017 (Available from autopatcher) - Kannkor
- If you encounter an empty loot window, the bot will close it down.
- If you get "You are carrying too many items." bot will hit ESC (an effort to close down the window).
- Buffing will no longer happen when you have a conversation window open.
- Buffing will no longer happen if you are moving.
- Abilities with a duration of 5 minutes or less are now classified as 'combat' abilities only, and will only be used while you are in combat.
- DP abilities are now supported (Checks if you have enough DP).
- Buffs that require DP to cast are now classified as Incombat only.
- MCP
- Added -execute <ForWho> <CommandToExecute>
- Dataparses and executes the Command passed. (Can be used for anything global, however the intent of this is to toggle checkboxes)
- CommandToExecute - In regards to changing UI options you must do the following:
- Each 'tab' in the bot, has it's own file. For example: Anything on the 'Settings' tab is inside of Settings.xml. Open this file.
- Find the option you want to change. For example, lets enable (or disable) Assist/Follow.
- In this case, we are wanting to change a checkbox: <checkbox name="assistnameenabled">
- We are going to mimic it being clicked. Inside of the <OnLeftClick> you will see this code: OA.Settings.Config:AssistNameEnabled[${This.Checked}, TRUE]
- We will never use the last parameter. (This just determines if the results is being read from the UI, or from code. In this case, it's being read from code).
- The second parameter is the value we want. 'TRUE' for checked, and 'FALSE' for unchecked.
- Therefore, our MCP button would look like this: This turns OFF Assist name.
- Select Command: Execute
- Parameter1: All
- Parameter2: OA.Settings.Config:AssistNameEnabled[FALSE]
- If you wanted to check it, parameter2 would be changed to TRUE.
- Parameter2: OA.Settings.Config:AssistNameEnabled[TRUE]
- Worth noting: TRUE and FALSE are case sensitive. This means 'true' and 'false' will give you unexpected results. You need to use 'TRUE' and 'FALSE'.
- Added -execute <ForWho> <CommandToExecute>
- Accepting invites/trades are now based off the auth list instead of the follow/assist box.
- Popup tab
- Added accept sorc port -- "Do you want to travel using the magical passage?"
- If you get "You cannot have this item as you already have the limited possession item" you will close the loot window.
- Temporary pet support - If you get the message: You can only use that when you have a spirit. you will do the following:
- If grouped: Cast wind spirit.
- If solo: Cast Fire spirit.
- Abilities that take HP are now checked to ensure you have enough HP. (I know will have to do something with this later.. cause you probably wouldn't want to take yourself to 1 HP).
- Pet heals will no longer check if it should cast them on players.
- For now, all pet abilities will only have VERY basic checks. IE: Is it available and not on cool down, since no way of seeing your pet information yet.
- Classified more abilities as 'Attacks' that were previously marked as 'Unknown'
- Corrected -Cast to requiring the base name. IE: Kick (correct) and Kick II (Incorrect). Previously, it was the reverse by accident.