[HELP]Ascent NCDB Rev's

Newbie Spellweaver
Joined
Sep 1, 2006
Messages
30
Reaction score
0
I checked allmost every Rev and why there isnt no Banned_phrases.sql file??
And i Try to run a server it says error missing Banned_phrases blah blah blah...

Will sql updates replace the whole file of banned_phrases.sql?
 
You see they where not contain Sql updates, they only Contain Tool.bat,world tables and stuff.
 
banned_phrases isn't really that necessary.
But here it is if you REALLY want it :P
Code:
DROP TABLE IF EXISTS `banned_phrases`;

CREATE TABLE `banned_phrases` (
  `phrase` varchar(250) collate utf8_unicode_ci NOT NULL,
  PRIMARY KEY  (`phrase`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
 
Back