我的風格裡面沒有rpg_header.tpl耶.......
代碼: 選擇全部
CREATE TABLE `phpbb_rpg_items` (
`item_id` mediumint(8) unsigned NOT NULL auto_increment,
`item_name` varchar(60) default NULL,
`item_description` varchar(255) default NULL,
`in_which_store` tinyint(1) default '0',
`need_level` smallint(5) default '0',
`custom_made` mediumint(8) default '0',
`need_class` varchar(10) default NULL,
`item_addition1` varchar(60) default NULL,
`item_addition2` varchar(60) default NULL,
`item_price` int(11) NOT NULL default '0',
`item_spec_price` smallint(5) NOT NULL default '0',
`item_type` tinyint(4) NOT NULL default '0',
`item_position` tinyint(4) NOT NULL default '0',
`item_order` smallint(5) default '0',
`need_to_use` tinyint(1) default '0',
`attack_property` decimal(4,1) default '0.0',
`defense_property` decimal(4,1) default '0.0',
`magic_property` decimal(4,1) default '0.0',
`speed_property` decimal(4,1) default '0.0',
`hp_property` decimal(4,1) default '0.0',
`mp_property` decimal(4,1) default '0.0',
PRIMARY KEY (`item_id`)
) TYPE=MyISAM;
INSERT INTO phpbb_rpg_items VALUES("1", "拔釘器", "解除草人的詛咒", "0", "0", "0", "", "", "", "10000", "1", "0", "0", "0", "1", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0");
INSERT INTO phpbb_rpg_items VALUES("2", "頭銜名片", "建立自己專屬的頭銜名稱", "0", "0", "0", "", "請輸入頭銜名稱", "請輸入圖示網址", "50000", "0", "0", "0", "0", "1", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0");
INSERT INTO phpbb_rpg_items VALUES("4", "神偷手套", "無視對手保鑣防禦力,百分之百成功\\偷到對手 20% 的存款,若對方有草人每隻可多偷 2% 現金,但自己會多十隻草人", "0", "0", "0", "", "請輸入行竊對象", "", "300000", "0", "0", "0", "0", "1", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0");
INSERT INTO phpbb_rpg_items VALUES("5", "草人禮盒", "詛咒草人娃娃禮盒,送禮自用兩相宜,但是有二成的失敗率,失敗則自己增加一隻草人", "0", "0", "0", "", "請輸入送禮對象,送禮對象必須人在線上", "", "10000", "0", "0", "0", "0", "1", "0.0", "0.0", "0.0", "0.0", "0.0", "0.0");