Skip to content
This repository has been archived by the owner on Mar 11, 2021. It is now read-only.

Commit

Permalink
Inital Released.
Browse files Browse the repository at this point in the history
  • Loading branch information
fmohican committed May 10, 2016
1 parent b95a382 commit 4987772
Show file tree
Hide file tree
Showing 9 changed files with 3,153 additions and 0 deletions.
14 changes: 14 additions & 0 deletions SQL/definiti.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for `definiti`
-- ----------------------------
DROP TABLE IF EXISTS `definiti`;
CREATE TABLE `definiti` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`cuvant` varchar(200) NOT NULL,
`definitie` text NOT NULL,
`data` varchar(100) NOT NULL,
`autor` varchar(200) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
22 changes: 22 additions & 0 deletions SQL/inventory.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for `inventory`
-- ----------------------------
DROP TABLE IF EXISTS `inventory`;
CREATE TABLE `inventory` (
`id` int(10) NOT NULL,
`slot1` varchar(255) DEFAULT NULL,
`slot2` varchar(255) DEFAULT NULL,
`slot3` varchar(255) DEFAULT NULL,
`slot4` varchar(255) DEFAULT NULL,
`slot5` varchar(255) DEFAULT NULL,
`slot6` varchar(255) DEFAULT NULL,
`slot7` varchar(255) DEFAULT NULL,
`slot8` varchar(255) DEFAULT NULL,
`slot9` varchar(255) DEFAULT NULL,
`bank` bigint(20) DEFAULT '0',
`class` varchar(255) DEFAULT 'no',
PRIMARY KEY (`id`),
CONSTRAINT `id` FOREIGN KEY (`id`) REFERENCES `userdata` (`id`) ON DELETE NO ACTION ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
26 changes: 26 additions & 0 deletions SQL/userdata.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for `userdata`
-- ----------------------------
DROP TABLE IF EXISTS `userdata`;
CREATE TABLE `userdata` (
`id` int(50) NOT NULL AUTO_INCREMENT,
`user` varchar(255) NOT NULL,
`money` bigint(200) DEFAULT NULL,
`access` int(2) NOT NULL DEFAULT '1',
`firstjoin` varchar(255) NOT NULL,
`lastmoney` bigint(255) DEFAULT NULL,
`lastzar` bigint(255) DEFAULT '10',
`laststeal` bigint(255) DEFAULT '1',
`helmet` int(2) DEFAULT '0',
`chestplate` int(2) DEFAULT '0',
`leggs` int(2) DEFAULT '0',
`boots` int(2) DEFAULT '0',
`righthand` int(2) DEFAULT '0',
`lefthand` int(2) DEFAULT '0',
`battle` int(4) DEFAULT '0',
`win` int(3) DEFAULT '0',
`lose` int(3) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;
4 changes: 4 additions & 0 deletions anime.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
One Anime Per Line
Anime 1
Anime 2
Anime 3
627 changes: 627 additions & 0 deletions bot.py

Large diffs are not rendered by default.

Loading

0 comments on commit 4987772

Please sign in to comment.