Lua major boss object - VanaDev/Vana GitHub Wiki

Table of Contents

Example Major Boss Object

 boss = {
 	["attempts"] = 2,
 	["channels"] = { -1 },
 };

Properties

attempts

Required: No

Type: number

Notes: Describes how many times a player may attempt a particular major boss in a day. Default value is 0.

channels

Required: No

Type: table of number

Notes: Describes on which channels a player may challenge a major boss. A value of -1 indicates that all channels are acceptable. Any other number is considered a channel identifier. i.e. if you would like Zakum to only be available on channel 1, you would use { 1 }. Default value is no channels.

⚠️ **GitHub.com Fallback** ⚠️