Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- author Keal
- -- ----------------------------
- -- Table structure for commands
- -- ----------------------------
- DROP TABLE IF EXISTS `commands`;
- CREATE TABLE `commands` (
- `commandName` text NOT NULL COMMENT 'le nom de la commande',
- `actionId` INT(11) DEFAULT NULL COMMENT 'l''actionId de la commande à effectuer',
- `args` text COMMENT 'arguments de la commande',
- `commandInfos` text COMMENT 'description de la commande'
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
- -- ----------------------------
- -- Records of commands
- -- ----------------------------
- INSERT INTO `commands` VALUES ('.bontarien', '11', '1,1', 'Définis l\'alignement Bontarien.');
- INSERT INTO `commands` VALUES ('.brakmarien', '11', '2,1', 'Définis l\'alignement Brakmarien.');
- INSERT INTO `commands` VALUES ('.mercenaire', '11', '3,1', 'Définis l\'alignement Mercenaire.');
Advertisement
Add Comment
Please, Sign In to add comment