MMOCoin

Likes Likes:  0

View Poll Results: Is this thread usefull ?

Voters
31. You may not vote on this poll
  • Yes

    31 100.00%
  • No

    0 0%
Results 1 to 10 of 32

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Contributor
    runiker's Avatar
    Join Date
    Jul 2008
    Posts
    170
    Post Thanks / Like
    Rep Power
    19
    Reputation
    113
    Thanks and hey can you possible to post the updated format of sql (just the sqls nothing else) i ask this because i am trying to make a nice website that works upto-date with current arcemu db layout (might expand to mangos next)




  2. Related Threads - Scroll Down after related threads if you are only interested to view replies for above post/thread

  3. #2
    Scout
    BloodLord's Avatar
    Join Date
    Feb 2009
    Location
    Right Here d(^.^)b
    Posts
    27
    Post Thanks / Like
    Rep Power
    18
    Reputation
    53
    Quote Originally Posted by runiker View Post
    Thanks and hey can you possible to post the updated format of sql (just the sqls nothing else) i ask this because i am trying to make a nice website that works upto-date with current arcemu db layout (might expand to mangos next)

    Here is the 2199_gosandquests.sql source

    Code:
    alter table `gameobject_names` add column `Name2` varchar(100) DEFAULT '' NOT NULL after `Name`;
    alter table `gameobject_names` add column `Name3` varchar(100) DEFAULT '' NOT NULL after `Name2`;
    alter table `gameobject_names` add column `Name4` varchar(100) DEFAULT '' NOT NULL after `Name3`;
    alter table `gameobject_names` add column `Category` varchar(100) DEFAULT '' NOT NULL after `Name4`;
    alter table `gameobject_names` add column `CastBarText` varchar(100) DEFAULT '' NOT NULL after `Category`;
    alter table `gameobject_names` add column `UnkStr` varchar(100) DEFAULT '' NOT NULL after `CastBarText`;
    
    alter table `quests` add column `detailemotecount` int UNSIGNED DEFAULT '0' NOT NULL after `suggestedplayers`;
    alter table `quests` add column `detailemote1` int UNSIGNED DEFAULT '0' NOT NULL after `detailemotecount`;
    alter table `quests` add column `detailemote2` int UNSIGNED DEFAULT '0' NOT NULL after `detailemote1`;
    alter table `quests` add column `detailemote3` int UNSIGNED DEFAULT '0' NOT NULL after `detailemote2`;
    alter table `quests` add column `detailemote4` int UNSIGNED DEFAULT '0' NOT NULL after `detailemote3`;
    alter table `quests` add column `detailemotedelay1` int UNSIGNED DEFAULT '0' NOT NULL after `detailemote4`;
    alter table `quests` add column `detailemotedelay2` int UNSIGNED DEFAULT '0' NOT NULL after `detailemotedelay1`;
    alter table `quests` add column `detailemotedelay3` int UNSIGNED DEFAULT '0' NOT NULL after `detailemotedelay2`;
    alter table `quests` add column `detailemotedelay4` int UNSIGNED DEFAULT '0' NOT NULL after `detailemotedelay3`;
    alter table `quests` add column `completionemotecnt` int UNSIGNED DEFAULT '0' NOT NULL after `detailemotedelay4`;
    alter table `quests` add column `completionemote1` int UNSIGNED DEFAULT '0' NOT NULL after `completionemotecnt`;
    alter table `quests` add column `completionemote2` int UNSIGNED DEFAULT '0' NOT NULL after `completionemote1`;
    alter table `quests` add column `completionemote3` int UNSIGNED DEFAULT '0' NOT NULL after `completionemote2`;
    alter table `quests` add column `completionemote4` int UNSIGNED DEFAULT '0' NOT NULL after `completionemote3`;
    alter table `quests` add column `completionemotedelay1` int UNSIGNED DEFAULT '0' NOT NULL after `completionemote4`;
    alter table `quests` add column `completionemotedelay2` int UNSIGNED DEFAULT '0' NOT NULL after `completionemotedelay1`;
    alter table `quests` add column `completionemotedelay3` int UNSIGNED DEFAULT '0' NOT NULL after `completionemotedelay2`;
    alter table `quests` add column `completionemotedelay4` int UNSIGNED DEFAULT '0' NOT NULL after `completionemotedelay3`;
    alter table `quests` add column `completeemote` int UNSIGNED DEFAULT '0' NOT NULL after `completionemotedelay4`;
    alter table `quests` add column `incompleteemote` int UNSIGNED DEFAULT '0' NOT NULL after `completeemote`;
    
    CREATE TABLE `vendor_restrictions` (
     `entry` int(10) unsigned NOT NULL,
     `racemask` int(11) NOT NULL default '-1',
     `reqrepfaction` int(10) unsigned NOT NULL default '0',
     `reqrepfactionvalue` int(10) unsigned NOT NULL default '0',
     `canbuyattextid` int(10) unsigned NOT NULL default '0',
     `cannotbuyattextid` int(10) unsigned NOT NULL default '0',
     PRIMARY KEY (`entry`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
    
    CREATE TABLE `itemnames` (
     `entry` int(10) unsigned NOT NULL default '0',
     `name` varchar(100) NOT NULL default '',
     `slotid` int(10) unsigned NOT NULL default '0',
     PRIMARY KEY (`entry`)
    ) ENGINE=MyISAM DEFAULT CHARSET=latin1;

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •