In phpmyadmin in table called settings
heres the SQL
CREATE TABLE IF NOT EXISTS `settings` (
`conf_id` int(11) NOT NULL auto_increment,
`conf_name` varchar(255) NOT NULL default '',
`conf_value` text NOT NULL,
PRIMARY KEY (`conf_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=26 ;
--
-- Dumping data for table `settings`
--
INSERT INTO `settings` (`conf_id`, `conf_name`, `conf_value`) VALUES
(1, 'validate_period', '15'),
(2, 'validate_on', '0'),
(3, 'regcap_on', '0'),
(4, 'hospital_count', '0'),
(5, 'jail_count', '0'),
(6, 'sendcreds_on', '1'),
(7, 'sendbank_on', '1'),
(8, 'ct_refillprice', '30'),
(9, 'ct_iqpercreds', '4'),
(10, 'ct_moneypercreds', '1000'),
(11, 'staff_pad', 'Here you can store notes for all staff to see.'),
(12, 'willp_item', '26'),
(13, 'game_name', 'game name'),
(14, 'game_banner', 'link to your banner'),
(15, 'game_owner', 'your username'),
(16, 'paypal', 'your paypal email'),
(17, 'game_currency', 'Crystals'),
(18, 'game_value', '$'),
(19, 'game_energy', 'Energy'),
(20, 'game_will', 'Will'),
(21, 'game_brave', 'Brave'),
(22, 'game_exp', 'EXP'),
(23, 'game_health', 'Health'),
(24, 'game_description', 'your description');