• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

how i make tables in sql "needed for teh maverick raid system"

wafuboe

Active Member
Joined
Dec 24, 2010
Messages
884
Solutions
2
Reaction score
26
I use sqlitestudio dunno wtf is phpmyadmin, y need to create a table with a code but i dont know what i have to do plzz help!

5) Now you have the raid configured you will need to add a new table to your database.
->5a) Go into localhost/phpmyadmin and logon to your database.
->5b) Find the tab that says "SQL" and click it. Next add the the following code into the box and click "go":
Code:

CREATE TABLE `boss_raids` (
`id` int(11) NOT NULL default '1',
`enabled` tinyint(2) NOT NULL default '1',
`active` tinyint(2) NOT NULL default '0',
`boss` varchar(30) NOT NULL,
`lastExecution` int(25) NOT NULL default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
 
Back
Top