AL 4.3: How to disable Last Hero event?
Hi everyone,
I've set up a server based on Aion 4.3 using a repack from G-Robson26. Everything is working great and I've been tweaking the settings to try to make a "plain vanilla" server without too much extra stuff. In particular, I'm trying to keep events to a minimum.
One event that I can't seem to disable is the "Last Hero". I've looked through everything in AionGameServer\config\main and AionGameServer\data\static_data. I see a reference to the event in data\static_data\f14_events\events.xml, but I can't see a way to actually disable it. I've also gone into config\main\eventsystem.properties and disabled the FFA system. Despite this and several other trial-and-error tweaks, I still get a periodic server-wide message that the Last Hero event has started.
I'm obviously missing something somewhere... just not sure where else to look. Any tips would be appreciated.
--Trinity
Re: AL 4.3: How to disable Last Hero event?
In \data\static_data\f14_events... try to set the values of this,
<schedule>0 0 0/3 ? * *</schedule>
<registration_time>1200</registration_time>
<reentry_cooldown>1200</reentry_cooldown>
for this... Do this in all.
<schedule>0 0 0/0 ? * *</schedule>
<registration_time>0</registration_time>
<reentry_cooldown>0</reentry_cooldown>
Re: AL 4.3: How to disable Last Hero event?
Thanks much! That seems to have done the trick.