#146 holiday_flag to mirror expansion_flag

クローズ
3 年 前image によって開かれました · 1 コメント
image3 年 前 にコメントしました

Since LUA doesn't play nice with native int64 (need to do either lua user data or trickery).. going to have holidays handled in their own column.

0 = Default All Holidays

1 = No Holidays (DO NOT SET SPAWNS/TRANSPORTERS TO THIS HOLIDAY_FLAG VALUE)

2 = Erollisi Day

4 = Brew Day

8 = Chronoportal Phenomenon

16 = Bristlebane Day

32 = Beast'r Eggstravaganza

64 = Oceansfull Festival

128 = Scorched Sky

256 = Tinkerfest

512 = Nights of the Dead

1024 = Heroes' Festival

2048 = Dragons Attack!

4096 = Frostfell

8192 = City Festival

16384 = Moonlight Enchantments

32768 = Summer Celebration Fireworks

65536 = ???
Since LUA doesn't play nice with native int64 (need to do either lua user data or trickery).. going to have holidays handled in their own column. ``` 0 = Default All Holidays 1 = No Holidays (DO NOT SET SPAWNS/TRANSPORTERS TO THIS HOLIDAY_FLAG VALUE) 2 = Erollisi Day 4 = Brew Day 8 = Chronoportal Phenomenon 16 = Bristlebane Day 32 = Beast'r Eggstravaganza 64 = Oceansfull Festival 128 = Scorched Sky 256 = Tinkerfest 512 = Nights of the Dead 1024 = Heroes' Festival 2048 = Dragons Attack! 4096 = Frostfell 8192 = City Festival 16384 = Moonlight Enchantments 32768 = Summer Celebration Fireworks 65536 = ??? ```
image3 年 前 にコメントしました
共同編集者
alter table transporters add column holiday_flag int(10) unsigned not null default 0;
alter table spawn add column holiday_flag int(10) unsigned not null default 0;
``` alter table transporters add column holiday_flag int(10) unsigned not null default 0; alter table spawn add column holiday_flag int(10) unsigned not null default 0; ```
image この課題がコミット 3 年 前 から参照されました
image 3 年 前 に閉じられました
image この課題がコミット 3 年 前 から参照されました
会話に参加するには サインイン してください。
読み込み中…
キャンセル
保存
まだコンテンツがありません