This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 隱私權政策 | |
| 最後更新日期:2025 年 1 月 28 日 | |
| ## 簡介 | |
| 「農場標題殺手」(以下簡稱「本擴充功能」)尊重並保護使用者的隱私。本隱私權政策說明本擴充功能如何收集、使用和保護您的資訊。 | |
| ## 資料收集 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE `donate` ( | |
| `id` int(11) NOT NULL, | |
| `username` text NOT NULL, | |
| `amount` text NOT NULL, | |
| `paymentMethod` text NOT NULL, | |
| `date` text NOT NULL | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
| CREATE TABLE `gashapons` ( | |
| `id` int(11) NOT NULL AUTO_INCREMENT, | |
| `npcId` int(11) NOT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE `gashapon_items` ( | |
| `gashaponsid` int(11) NOT NULL, | |
| `itemid` int(11) NOT NULL, | |
| `chance` int(11) NOT NULL, | |
| `showmsg` tinyint(1) NOT NULL DEFAULT '0', | |
| `name` varchar(255) NOT NULL, | |
| UNIQUE KEY `gashaponsid_itemid` (`gashaponsid`,`itemid`), | |
| KEY `itemid` (`itemid`), | |
| CONSTRAINT `gashapon_items_ibfk_1` FOREIGN KEY (`gashaponsid`) REFERENCES `gashapons` (`id`) ON DELETE CASCADE ON UPDATE CASCADE | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var points; | |
| var NxPoints; | |
| var status = -1; | |
| var sel, select; | |
| var bosspq = 682020000; | |
| var items = [ | |
| /*永恆武器*/ | |
| [ | |
| [1302081, 130000, 1, -1], | |
| [1312037, 130000, 1, -1], |