You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
808 B
Plaintext
26 lines
808 B
Plaintext
4 months ago
|
// Status Change Restriction Database
|
||
|
//
|
||
|
// Defines restrictions of status changes (SC).
|
||
|
// Disabled SC will always be removed or fail to be inflicted on this map.
|
||
|
//
|
||
|
// Structure of Database:
|
||
|
// SCType,Flag
|
||
|
//
|
||
|
// Legend for 'Flag' field (bitmask):
|
||
|
// 1 - restricted in normal maps
|
||
|
// 2 - restricted in PVP
|
||
|
// 4 - restricted in GVG
|
||
|
// 8 - restricted in Battlegrounds
|
||
|
// Restricted zones - configured by 'restricted <number>' mapflag
|
||
|
// 32 - restricted in zone 1
|
||
|
// 64 - restricted in zone 2
|
||
|
// 128 - restricted in zone 3
|
||
|
// 256 - restricted in zone 4
|
||
|
// 512 - restricted in zone 5
|
||
|
// 1024 - restricted in zone 6
|
||
|
// 2048 - restricted in zone 7
|
||
|
//
|
||
|
// Example:
|
||
|
// SC_ENDURE,4 // Endure status will be removed when the player enters GvG and WoE Castle maps; Also cannot be inflicted again.
|
||
|
|