- Added Buffmanager for Botting
- Added Kisk Resurrect System for Botting
For existing Users the following files have been updated:
- AionInterface.dll
- AionScript.exe
- Extensions Folder
- Scripting/OfficialGrinderFramework/GrinderFramework.lua
- Scripting/OfficialGrinderFramework/HelperFunction.lua
- Scripting/OfficialGrinderFramework/Settings.lua
- Scripting/OfficialGrinderFramework/Settings/ExamplePlayer.lua
1.) Set settings in Settings.lua or Settings/YourCharname.lua correctly.
Code: Select all
-- Indicates whether or not resurrecting and quitting is allowed.
self.AllowRessurectQuit = false;
-- Indicates whether or not resurrecting on Kisk is allowed.
self.AllowRessurectKisk = true;
3.) Setup Travellist correctly and create an Travel Node with Action Kisk.

4.) Congrats you have setup it correctly. Now just start the bot and you are done. It will automatically place kisk bind to it and in death resurrects.
How to use Buff Manager:
1.) Set settings in Settings.lua or Settings/YourCharname.lua correctly.
Code: Select all
-- Enable Buffmanager to keep up buffs
self.BuffManager = true;
-- List of Buffs to Apply Item Name and Buff Name Needed (Hover over Buff to get Name of Buff)
self.BuffManagerList = {
{ Item = "Running Scroll", State = "Increase Movement Speed" },
{ Item = "Awakening Scroll", State = "Casting Speed Increase" },
};
State is the buff name which gets applied to your character.
Hover over your buff ingame and you find the state name to use.
Code: Select all
{ Item = "Running Scroll", State = "Increase Movement Speed" },
