Skip to main content

⚔️ GUILD VS GUILD EVENT ⚔️

Quick Description

The Guild VS Guild event allows multiple guilds to battle at the same time, earning points by defeating rival members. The event can be started automatically by schedule or manually by a GM.


How it works

  • Guilds register using /globalwar.
  • Minimum 2 guilds (at least 2 online members each) to start.
  • Maximum 20 members per guild.
  • Up to 6 guilds can participate at once.
  • Event phases: announcement, preparation, combat, end.
  • Kill scoring: regular members (1 point), leaders/officers (3 points).
  • Guild with highest score wins.

Main commands

  • /globalwar — Register guild in the event
  • /startglobalwar — (GM) Start event manually

Quick config (GuildVSGuildConfig.lua)

DurationTime = 180,           -- Event duration in seconds (3 minutes)
MinGuildCount = 2, -- Minimum participating guilds
GuildMaxMember = 20, -- Max members per guild
ProtectTime = 10, -- Protection time after death/start (seconds)
KillScore = {
[0] = 1, -- Regular member = 1 point
[32] = 3, -- Battle Master = 3 points
[64] = 3, -- Assistant = 3 points
[128] = 3 -- Guild Master = 3 points
}
-- Schedule example:
{Year = -1, Month = -1, Day = -1, DoW = 1, Hour = 11, Minute = 00}

See GuildVSGuildConfig.lua for all parameters and detailed examples.