Just a web script to help track when, where, and what you got from the free treasures scattered about Nightfall in the game Guild Wars.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

26 řádky
1.6 KiB

  1. /*!40101 SET NAMES utf8 */;
  2. /*!40101 SET SQL_MODE=''*/;
  3. /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
  4. /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
  5. /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
  6. /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
  7. /*Table structure for table `listattribute` */
  8. DROP TABLE IF EXISTS `listattribute`;
  9. CREATE TABLE `listattribute` (
  10. `weapattrid` int(2) NOT NULL AUTO_INCREMENT,
  11. `weaponattribute` varchar(20) DEFAULT NULL COMMENT 'death magic, axe mastery, command, smiting prayers, etc'
  12. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  13. /*Data for the table `listattribute` */
  14. insert into `listattribute`(`weaponattribute`) values ('Strength'),('Swordsmanship'),('Axe Mastery'),('Hammer Mastery'),('Tactics'),('Expertise'),('Marksmanship'),('Wilderness Survival'),('Beast Mastery'),('Divine Favor'),('Healing Prayers'),('Protection Prayers'),('Smiting Prayers'),('Soul Reaping'),('Blood Magic'),('Curses'),('Death Magic'),('Fast Casting'),('Inspiration Magic'),('Domination Magic'),('Illusion Magic'),('Energy Storage'),('Fire Magic'),('Water Magic'),('Air Magic'),('Earth Magic'),('Critical Strikes'),('Dagger Mastery'),('Deadly Arts'),('Shadow Arts'),('Spawning Power'),('Channeling Magic'),('Communing'),('Restoration Magic'),('Leadership'),('Spear Mastery'),('Command'),('Motivation'),('Mysticism'),('Scythe Mastery'),('Wind Prayers'),('Earth Prayers');
  15. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  16. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  17. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  18. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;