diff options
author | shennetsind <ind@henn.et> | 2014-03-18 14:59:53 -0300 |
---|---|---|
committer | shennetsind <ind@henn.et> | 2014-03-18 14:59:53 -0300 |
commit | 4cc9d5f91cf6276e28cc02bb75fc4158d28d553b (patch) | |
tree | dc1c82395e4996f9a862c52cb165a39bb43fecba /conf | |
parent | 8ed83b91c0984b251740d0cb62870bf4ca889853 (diff) | |
download | hercules-4cc9d5f91cf6276e28cc02bb75fc4158d28d553b.tar.gz hercules-4cc9d5f91cf6276e28cc02bb75fc4158d28d553b.tar.bz2 hercules-4cc9d5f91cf6276e28cc02bb75fc4158d28d553b.tar.xz hercules-4cc9d5f91cf6276e28cc02bb75fc4158d28d553b.zip |
BG Queue Fixes & +++
Fixed issue where players would be able to join a ongoing game when queueing by meeting the criteria.
Fixed/Implemented the maximum_afk_seconds setting.
Fixed issue with the maxPlayers arena setting that'd cause the maximum to be less than specified.
Added a new battlegrounds.conf setting "allowedTypes" for arenas in order for further customisation.
Expect a few more soon.
Special Thanks to AnnieRuru
Signed-off-by: shennetsind <ind@henn.et>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/battlegrounds.conf | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/conf/battlegrounds.conf b/conf/battlegrounds.conf index 6864d1584..0aa81d35d 100644 --- a/conf/battlegrounds.conf +++ b/conf/battlegrounds.conf @@ -10,6 +10,15 @@ //==================================================== //= Link~u! <description> <link to wiki/topic> //= http://hercules.ws/board/topic/928-memory-slasher-may-30-patch/ +//==================================================== +//= Fields (TODO/INCOMPLETE) +//= arenas: ({ +//= //- allowedTypes defines what kind of applications the arena will accept, setting is not case-sensitive and is ok with whitespaces +//= allowedTypes: "Solo | Party" //Arena Accepts solo and party-type joins +//= allowedTypes: "guild|party" //Arena Accepts solo and guild-type joins +//= allowedTypes: "All" //Arena Accepts solo, party and guild-type joins +//= //- fillAnnounce (optional arena param) +//= }) battlegrounds: ( { /* feature is not complete */ @@ -24,6 +33,7 @@ battlegrounds: ( arenas: ({ name: "Tierra Gorge" //must match the name in client files event: "Tierra_BG2::OnPlayerListReady" + allowedTypes: "All" /* Solo, Party and Guild */ minLevel: 80 maxLevel: 150 reward: {/* amount of badges awarded on each case */ @@ -41,6 +51,7 @@ battlegrounds: ( },{ name: "Flavius" //must match the name in client files event: "start#bat_b01::OnPlayerListReady" + allowedTypes: "All" /* Solo, Party and Guild */ minLevel: 80 maxLevel: 150 reward: {/* amount of badges awarded on each case */ @@ -58,6 +69,7 @@ battlegrounds: ( },{ name: "KVM (Level 80 and up)" //must match the name in client files event: "KvM03_BG::OnPlayerListReady" + allowedTypes: "All" /* Solo, Party and Guild */ minLevel: 80 maxLevel: 150 reward: {/* amount of badges awarded on each case */ @@ -75,6 +87,7 @@ battlegrounds: ( },{ name: "KVM (Level 60~79)" //must match the name in client files event: "KvM03_BG::OnPlayerListReady" + allowedTypes: "All" /* Solo, Party and Guild */ minLevel: 60 maxLevel: 79 reward: {/* amount of badges awarded on each case */ @@ -92,6 +105,7 @@ battlegrounds: ( },{ name: "KVM (Level 59 and below)" //must match the name in client files event: "KvM03_BG::OnPlayerListReady" + allowedTypes: "All" /* Solo, Party and Guild */ minLevel: 1 maxLevel: 59 reward: {/* amount of badges awarded on each case */ |