Jump to content
MakeWebGames

Recommended Posts

Posted

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');

Posted

In your Staff Panel; the Settings don't update if you didn't use the install file that was included with the v2 Script.

Eh sure they will so long as you input the proper sql queries ;P

like the above posted.

Posted

I know this has been answered but what the hell

 

MCCodes depend on the setting script, So you already had the table. You just didn't have the values, Alot off people seem to not know this but heh, You're all sorted now :)

 

Good work blade

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...