Advertisement
Guest User

TheEnd

a guest
Aug 28th, 2009
1,194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 1.82 KB | None | 0 0
  1. INSERT IGNORE INTO `admin_command_access_rights` VALUES
  2. ('admin_dmevent','1'),
  3. ('admin_dmevent_name','1'),
  4. ('admin_dmevent_desc','1'),
  5. ('admin_dmevent_join_loc','1'),
  6. ('admin_dmevent_minlvl','1'),
  7. ('admin_dmevent_maxlvl','1'),
  8. ('admin_dmevent_npc','1'),
  9. ('admin_dmevent_npc_pos','1'),
  10. ('admin_dmevent_reward','1'),
  11. ('admin_dmevent_reward_amount','1'),
  12. ('admin_dmevent_spawnpos','1'),
  13. ('admin_dmevent_color','1'),
  14. ('admin_dmevent_join','1'),
  15. ('admin_dmevent_teleport','1'),
  16. ('admin_dmevent_start','1'),
  17. ('admin_dmevent_abort','1'),
  18. ('admin_dmevent_finish','1'),
  19. ('admin_dmevent_sit','1'),
  20. ('admin_dmevent_dump','1'),
  21. ('admin_dmevent_load','1'),
  22. ('admin_dmevent_save','1');
  23.  
  24. -- --------------------------------
  25. -- Table structure for table `dm`
  26. -- Created by TheEnd
  27. -- --------------------------------
  28. DROP TABLE IF EXISTS `dm`;
  29. CREATE TABLE `dm` (
  30.   `eventName` varchar(255) NOT NULL DEFAULT '',
  31.   `eventDesc` varchar(255) NOT NULL DEFAULT '',
  32.   `joiningLocation` varchar(255) NOT NULL DEFAULT '',
  33.   `minlvl` int(4) NOT NULL DEFAULT '0',
  34.   `maxlvl` int(4) NOT NULL DEFAULT '0',
  35.   `npcId` int(8) NOT NULL DEFAULT '0',
  36.   `npcX` int(11) NOT NULL DEFAULT '0',
  37.   `npcY` int(11) NOT NULL DEFAULT '0',
  38.   `npcZ` int(11) NOT NULL DEFAULT '0',
  39.   `rewardId` int(11) NOT NULL DEFAULT '0',
  40.   `rewardAmount` int(11) NOT NULL DEFAULT '0',
  41.   `color` int(11) NOT NULL DEFAULT '0',
  42.   `playerX` int(11) NOT NULL DEFAULT '0',
  43.   `playerY` int(11) NOT NULL DEFAULT '0',
  44.   `playerZ` int(11) NOT NULL DEFAULT '0'  
  45. ) DEFAULT CHARSET=utf8;
  46.  
  47. INSERT INTO `npc` VALUES (70004, 32215, 'TheEnd', 1, 'DM Event Manager', 1, 'LineageNPC2.K_M1_master', 15.00, 25.00, 70, 'male', 'L2Npc', 40, 2444, 2444, 0.00, 0.00, 10, 10, 10, 10, 10, 10, 0, 0, 500, 500, 500, 500, 278, 0, 333, 9376, 0, 0, 30, 120, '', 0, 0, 0, 'LAST_HIT', 0, 0, 0, 'balanced', 'false');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement