mirror of
https://github.com/brighton-chi/mod-aoe-loot.git
synced 2026-01-13 00:58:34 +00:00
54 lines
2.1 KiB
Plaintext
54 lines
2.1 KiB
Plaintext
########################################
|
|
# AoeLoot Module Configuration
|
|
########################################
|
|
#
|
|
# AoeLoot.EnableMod
|
|
# Values: 0 = Disable module
|
|
# 1 = Enable module
|
|
# Default: 1 (Enabled)
|
|
|
|
AoeLoot.EnableMod = 1
|
|
|
|
# AoeLoot.EnableAOELoot
|
|
# Values: 0 = Disable AoE looting feature
|
|
# 1 = Enable AoE looting feature (solo play only)
|
|
# 2 = Enable AoE looting feature (solo and group play)
|
|
# Default: 2 (Enabled for solo and group play)
|
|
|
|
AoeLoot.EnableAOELoot = 2
|
|
|
|
# AoeLoot.Range
|
|
# Description: Radius for AoE looting area
|
|
# Default: 55.0
|
|
|
|
AoeLoot.Range = 55.0
|
|
|
|
# AoeLoot.DefaultLootMethod
|
|
# Description: Sets the default loot method for newly created groups
|
|
# Values: 0 = Free For All (players can loot everything)
|
|
# 1 = Round Robin (players take turns looting)
|
|
# 2 = Group Loot (Blizzard default; players take turns looting, except items at or above the DefautlLootThreshold are rolled for by all players)
|
|
# 3 = Need Before Greed (players take turns looting, except items at or above the DefaultLootThreshold are rolled for by players who can use them)
|
|
# 4 = Master Loot (only master looter can distribute items)
|
|
# Default: 2 (Group Loot)
|
|
|
|
AoeLoot.DefaultLootMethod = 2
|
|
|
|
# AoeLoot.DefaultLootThreshold
|
|
# Description: Item quality threshold for group loot rolls (applies only to Group Loot and Need Before Greed)
|
|
# Values: 0 = Poor (Gray)
|
|
# 1 = Common (White)
|
|
# 2 = Uncommon (Green)
|
|
# 3 = Rare (Blue)
|
|
# 4 = Epic (Purple)
|
|
# 5 = Legendary (Orange)
|
|
# Default: 2 (Uncommon)
|
|
|
|
AoeLoot.DefaultLootThreshold = 2
|
|
|
|
# Chat Commands
|
|
# .AoeLoot off Disables AoE looting for player
|
|
# .AoeLoot on Enables AoE looting for player (requires module to be enabled)
|
|
# .AoeLoot lootall Loot all enemies within AoeLoot.Range
|
|
#
|