CREATE TABLE `cheats` (
`id` int(6) NOT NULL auto_increment,
`hits` bigint(21) NOT NULL default '1',
`votes` bigint(21) NOT NULL default '1',
`rating` decimal(2,1) NOT NULL default '5.0',
`title` varchar(250) NOT NULL default '',
`cheats` text NOT NULL,
`console` varchar(50) NOT NULL default '',
`letter` char(1) NOT NULL default '',
PRIMARY KEY (`id`),
FULLTEXT KEY `cheats` (`cheats`),
FULLTEXT KEY `title` (`title`,`cheats`)
) TYPE=MyISAM;
--
-- Dumping data for table `cheats`
--
INSERT INTO `cheats` VALUES (5, 1, 1, 5.0, 'Advance GTA', '<p><h4>Mini-mode</h4>Select championship mode and win the beginner, middle, and high speed classes. An "Extra" option will now be unlocked at the main menu. Select it to race in mini-cars.</p><p><h4>Go-Kart Code</h4>Hold the L and R buttons. Then, push right on the D-pad and B simultaneously. You will hear a chime if you entered the code correctly. Go to the main menu, and you will see that you have unlocked the Extra 1 mode.</p><p><h4>High speed mode unlocked</h4>Enter the password: 2QjD +D1Q 9Fy2 5B0C.</p><p><h4>50% of cars unlocked</h4>Enter the password: /6Kb /xMi irLM +/22</p><p><h4>Extra option</h4>Finish in first place in all the races in all four championship classes.</p>', 'GameBoy Adv.', 'A');
INSERT INTO `cheats` VALUES (6, 1, 1, 5.0, 'Advance GTA 2', '<p><h4>Extra modes</h4>Go to the screen with "Start" and a picture of the car. Hold B + L, then press Down until a chime is heard. All three extra modes will not be unlocked. </p><p><h4>All tracks</h4>Go to the screen with "Start" and a picture of the car. Hold B + L, then press Right until a chime is heard.</p><p><h4>All cars</h4>Go to the screen with "Start" and a picture of the car. Hold B + L, then press Left until a chime is heard.</p><p><h4>All tune ups</h4>Go to the screen with "Start" and a picture of the car. Hold B + L, then press Up until a chime is heard.</p><p><h4>View credits</h4>Go to the screen with "Start" and a picture of the car. Hold B + L, then press Up + B to view the ending credits.</p>', 'GameBoy Adv.', 'A');
INSERT INTO `cheats` VALUES (7, 1, 1, 5.0, 'Advance Guardian Heroes', '<p><h4>Endless Mode</h4>Finish the game on Hard difficulty.</p><p><h4>New Characters (Monsters and Allies)</h4>Finish Time Attack mode multiple times to unlock new characters or donate gems in story mode to the laboratory.</p><p><h4>Time Attack Mode</h4>Finish the game on Normal difficulty.</p><p><h4>Unlock New Characters</h4>Spend crystals between stages during the campaign or clear time attack. As data completion increases, new characters are unlocked. n<br>n<br>Default - Ennn<br>Default - Hyun<br>Default - Rayn<br>#1 - Goblinn<br>#2 - Dylann<br>#3 - Soldiern<br>#4 - Cyclops n<br>#5 - Goblin Tankn<br>#6 - Sorcerern<br>#7 - Ropern<br>#8 - Hann<br>#9 - Heavy Gearn<br>#10 - Gargoylen<br>#11 - Edon<br>#12 - Sky Knightn<br>#13 - Valgarn<br>#14 - Zurn<br>#15 - Cerenan<br>#16 - Nicolen<br>#17 - Kanon</p>', 'GameBoy Adv.', 'A');
|