Our Scripts Vault contains many game scripts that you can use to create your own game!
CREATE TABLE quests (id int NULL AUTO_INCREMENT,Name varchar(250),starts_quests int,given_by_npc int,level_quest int,level_required int,type int,ending_npc int,requirements_type text,collect_or_kill text,requirements_amount text,PRIMARY KEY(id))ENGINE=INNODB;
OH I NEED TO FIND EVERY QUEST THAT HAS YOU GET AN ITEM etc. etc.
CREATE TABLE parent (id INT NOT NULL, PRIMARY KEY (id)) ENGINE=INNODB;CREATE TABLE child (id INT, parent_id INT, INDEX par_ind (parent_id), FOREIGN KEY (parent_id) REFERENCES parent(id) ON DELETE CASCADE) ENGINE=INNODB;