Thread: Boot5Zones.BAT
View Single Post
  #2  
Old 10-03-2004, 04:08 PM
ajb20
Hill Giant
 
Join Date: Jul 2004
Posts: 106
Default

Try this

Code:
CREATE TABLE variables (
  varname varchar(25) NOT NULL default '',
  value text NOT NULL,
  information text NOT NULL,
  ts timestamp(14) NOT NULL,
  PRIMARY KEY  (varname)
) TYPE=MyISAM;

INSERT INTO variables VALUES ('MOTD','','Server Message of the Day','20041002025433');
INSERT INTO variables VALUES ('startzone','halas','','20041003212154');
INSERT INTO variables VALUES ('disablecommandline','0','Allow command lines to be run from world.exe | 0 - off | 1 - on |','00000000000000');
INSERT INTO variables VALUES ('PersistentZoneState','0','Save zone state on shutdown for bootup | 0 - off | 1 - on |','20031214171856');
INSERT INTO variables VALUES ('decaytime 1 54','12000','Corpse decay time for Level\'s 1 to 54','20040930051235');
INSERT INTO variables VALUES ('decaytime 55 100','100000','Corpse decay time for Level\'s 55 to 100','20040930051319');
INSERT INTO variables VALUES ('Max_AAXP','21626880','Max AA Experience','00000000000000');
INSERT INTO variables VALUES ('ZSPassword','ZonePass','Zone Server Password','20030628130702');
INSERT INTO variables VALUES ('loglevel','0000','Commands,Merchants,Trades,Loot','20031214171835');
INSERT INTO variables VALUES ('MerchantsKeepItems','1','Merchants keep items sold to them | 0 - off | 1 - on |','20040930051205');
INSERT INTO variables VALUES ('GuildWars','0','Enable Guild Wars Type Server | 0 - off | 1 - on |','00000000000000');
INSERT INTO variables VALUES ('leavecorpses','0','Players leave corpses | 0 - off | 1 - on |','20040930064401');
INSERT INTO variables VALUES ('holdzones','0','Restart Crashed Zone Servers | 0 - off | 1 - on |','20040629201600');
INSERT INTO variables VALUES ('ailevel','6','','20030620202014');
INSERT INTO variables VALUES ('EXPMod','0.5','Experience multipler. Increase to increase exp rate','20041002025413');
INSERT INTO variables VALUES ('GroupEXPBonus','0.2','Experience multipler. Increase to increase group exp rate','20041002025416');
INSERT INTO variables VALUES ('AAXPMod','1','AA Experience multipler. Increase to increase exp rate','00000000000000');
INSERT INTO variables VALUES ('Expansions','255','Accessible expansions for each player','20040930051219');
INSERT INTO variables VALUES ('DBVersion','057_classic_test','DB version info','00000000000000');
INSERT INTO variables VALUES ('ACfail','25','the percentage of time AC fails to protect. 0 would mean there was always some level of protection, 100 would mean AC has no affect. When AC fails, it will be possible to get a max dmg hit.','20040822132257');
INSERT INTO variables VALUES ('ACreduction','1','','20040725005754');
INSERT INTO variables VALUES ('ACrandom','5','','20040723084922');
should fix ya up, at least with that problem, if the zones still disappear try to run zone.exe from a command prompt and see what error you get.
Reply With Quote