Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- SET FOREIGN_KEY_CHECKS=0;
- -- ----------------------------
- -- Table structure for `fake_pcs`
- -- ----------------------------
- DROP TABLE IF EXISTS `fake_pcs`;
- CREATE TABLE `fake_pcs` (
- `npc_id` int(11) NOT NULL,
- `race` int(11) NOT NULL DEFAULT '0',
- `sex` int(11) NOT NULL DEFAULT '0',
- `class` int(11) NOT NULL DEFAULT '0',
- `title` varchar(255) NOT NULL,
- `title_color` int(11) NOT NULL DEFAULT '0',
- `name` varchar(255) NOT NULL,
- `name_color` int(11) NOT NULL DEFAULT '0',
- `hair_style` int(11) NOT NULL DEFAULT '0',
- `hair_color` int(11) NOT NULL DEFAULT '0',
- `face` int(11) NOT NULL DEFAULT '0',
- `mount` tinyint(4) NOT NULL DEFAULT '0',
- `team` tinyint(4) NOT NULL DEFAULT '0',
- `hero` tinyint(4) NOT NULL DEFAULT '0',
- `pd_under` int(11) NOT NULL DEFAULT '0',
- `pd_under_aug` int(11) NOT NULL DEFAULT '0',
- `pd_head` int(11) NOT NULL DEFAULT '0',
- `pd_head_aug` int(11) NOT NULL DEFAULT '0',
- `pd_rhand` int(11) NOT NULL DEFAULT '0',
- `pd_rhand_aug` int(11) NOT NULL DEFAULT '0',
- `pd_lhand` int(11) NOT NULL DEFAULT '0',
- `pd_lhand_aug` int(11) NOT NULL DEFAULT '0',
- `pd_gloves` int(11) NOT NULL DEFAULT '0',
- `pd_gloves_aug` int(11) NOT NULL DEFAULT '0',
- `pd_chest` int(11) NOT NULL DEFAULT '0',
- `pd_chest_aug` int(11) NOT NULL DEFAULT '0',
- `pd_legs` int(11) NOT NULL DEFAULT '0',
- `pd_legs_aug` int(11) NOT NULL DEFAULT '0',
- `pd_feet` int(11) NOT NULL DEFAULT '0',
- `pd_feet_aug` int(11) NOT NULL DEFAULT '0',
- `pd_back` int(11) NOT NULL DEFAULT '0',
- `pd_back_aug` int(11) NOT NULL DEFAULT '0',
- `pd_lrhand` int(11) NOT NULL DEFAULT '0',
- `pd_lrhand_aug` int(11) NOT NULL DEFAULT '0',
- `pd_hair` int(11) NOT NULL DEFAULT '0',
- `pd_hair_aug` int(11) NOT NULL DEFAULT '0',
- `pd_hair2` int(11) NOT NULL DEFAULT '0',
- `pd_hair2_aug` int(11) NOT NULL DEFAULT '0',
- `pd_rbracelet` int(11) NOT NULL DEFAULT '0',
- `pd_rbracelet_aug` int(11) NOT NULL DEFAULT '0',
- `pd_lbracelet` int(11) NOT NULL DEFAULT '0',
- `pd_lbracelet_aug` int(11) NOT NULL DEFAULT '0',
- `pd_deco1` int(11) NOT NULL DEFAULT '0',
- `pd_deco1_aug` int(11) NOT NULL DEFAULT '0',
- `pd_deco2` int(11) NOT NULL DEFAULT '0',
- `pd_deco2_aug` int(11) NOT NULL DEFAULT '0',
- `pd_deco3` int(11) NOT NULL DEFAULT '0',
- `pd_deco3_aug` int(11) NOT NULL DEFAULT '0',
- `pd_deco4` int(11) NOT NULL DEFAULT '0',
- `pd_deco4_aug` int(11) NOT NULL DEFAULT '0',
- `pd_deco5` int(11) NOT NULL DEFAULT '0',
- `pd_deco5_aug` int(11) NOT NULL DEFAULT '0',
- `pd_deco6` int(11) NOT NULL DEFAULT '0',
- `pd_deco6_aug` int(11) NOT NULL DEFAULT '0',
- `enchant_effect` tinyint(4) NOT NULL DEFAULT '0',
- `pvp_flag` int(11) NOT NULL DEFAULT '0',
- `karma` int(11) NOT NULL DEFAULT '0',
- `fishing` tinyint(4) NOT NULL DEFAULT '0',
- `fishing_x` int(11) NOT NULL DEFAULT '0',
- `fishing_y` int(11) NOT NULL DEFAULT '0',
- `fishing_z` int(11) NOT NULL DEFAULT '0',
- `invisible` tinyint(4) NOT NULL DEFAULT '1',
- PRIMARY KEY (`npc_id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of fake_pcs
- -- ----------------------------
- INSERT INTO `fake_pcs` VALUES ('60001', '4', '1', '53', '~ L2BlaBlaBla ~', '60463', 'PK-Killer', '60463', '5', '3', '1', '0', '0', '1', '0', '0', '0', '0', '16015', '1', '0', '0', '15582', '0', '16169', '0', '15579', '0', '15585', '0', '14609', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '0', '30', '0', '0', '0', '0', '0', '0', '0');
Advertisement
Add Comment
Please, Sign In to add comment