EQEmulator Forums

EQEmulator Forums (https://www.eqemulator.org/forums/index.php)
-   Archive::Quests (https://www.eqemulator.org/forums/forumdisplay.php?f=624)
-   -   quest_globals.sql ?? (https://www.eqemulator.org/forums/showthread.php?t=12978)

cofruben 04-09-2004 10:21 PM

quest_globals.sql ??
 
Hello all,I was wandering where can I get that sql file to use in my perl quests because my global variables doesnt work...also I use 5.5 version.Thanks

Scorpious2k 04-10-2004 02:31 AM

Here it is:

Code:

DROP TABLE IF EXISTS quest_globals;
CREATE TABLE quest_globals (
  id int(11) NOT NULL auto_increment,
  charid int(11) NOT NULL default 0,
  npcid int(11) NOT NULL default 0,
  zoneid int(11) NOT NULL default 0,
  name varchar(65) NOT NULL,
  value varchar(65) NOT NULL default "?",
  expdate int(11) NOT NULL default 0,
  PRIMARY KEY  (id),
  UNIQUE KEY qname (name,charid,npcid,zoneid)
) TYPE=MyISAM;

alter table npc_types add qglobal int(2) unsigned default '0';



All times are GMT -4. The time now is 03:25 PM.

Powered by vBulletin®, Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.