Advertisement
Guest User

Tekkeryole

a guest
Sep 5th, 2009
770
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PL/SQL 2.34 KB | None | 0 0
  1. # HeidiSQL DUMP
  2. #
  3. # --------------------------------------------------------
  4. # Host:                         127.0.0.1
  5. # Database:                     world
  6. # Server version:               5.0.45-community-nt
  7. # Server OS:                    Win32
  8. # Target compatibility:         ANSI SQL
  9. # HeidiSQL version:             4.0
  10. # DATE/TIME:                    2009-09-05 03:13:23
  11. # --------------------------------------------------------
  12.  
  13. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='ANSI,NO_BACKSLASH_ESCAPES';*/
  14. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;*/
  15.  
  16.  
  17. DROP TABLE IF EXISTS "guild_housing";
  18.  
  19. #
  20. # TABLE structure FOR TABLE 'guild_housing'
  21. #
  22.  
  23. CREATE TABLE "guild_housing" (
  24.   "id" mediumint(8) unsigned NOT NULL auto_increment,
  25.   "position_x" FLOAT NOT NULL DEFAULT '0',
  26.   "position_y" FLOAT NOT NULL DEFAULT '0',
  27.   "position_z" FLOAT NOT NULL DEFAULT '0',
  28.   "orientation" FLOAT NOT NULL DEFAULT '0',
  29.   "map" SMALLINT(5) unsigned NOT NULL DEFAULT '0',
  30.   "name" VARCHAR(100) NOT NULL DEFAULT '',
  31.   PRIMARY KEY  ("id")
  32. ) AUTO_INCREMENT=100026 COMMENT='Housing Commands';
  33.  
  34. /*!40101 SET SQL_MODE=@OLD_SQL_MODE;*/
  35. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;*/
  36.  
  37.  
  38. INSERT INTO `command` (`name`, `security`, `help`) VALUES ('lookup house', '1', 'Syntax: .lookup house $substring\r\n\r\nSearch and output all .house command locations with provide $substring in name.');
  39. INSERT INTO `command` (`name`, `security`, `help`) VALUES ('house', '1', 'Syntax: .house #location\r\n\r\nTeleport player to a housing location by name.');
  40. INSERT INTO `command` (`name`, `security`, `help`) VALUES ('house buy', '3', 'Syntax: .house buy $name\r\n\r\nAdd your current position to .house command target locations list with name $name.');
  41. INSERT INTO `command` (`name`, `security`, `help`) VALUES ('house del', '5', 'Syntax: .house del $name\r\n\r\nRemove location with name $name for .house command locations list.');
  42. INSERT INTO `command` (`name`, `security`, `help`) VALUES ('house portguild', '1', 'Syntax: .house guildport#location\r\n\r\nTeleport a selected player and his guild members to a given location.');
  43. INSERT INTO `command` (`name`, `security`, `help`) VALUES ('house list', '1', 'Syntax: .house name [#playername] #location\r\n\r\nTeleport the given character to a given location. Character can be offline.');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement