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.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

25 lignes
854 B

  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 `listreq` */
  8. DROP TABLE IF EXISTS `listreq`;
  9. CREATE TABLE `listreq` (
  10. `req` int(2) DEFAULT NULL COMMENT 'req1-r13'
  11. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  12. /*Data for the table `listreq` */
  13. insert into `listreq`(`req`) values (1),(2),(3),(4),(5),(6),(7),(8),(9),(10),(11),(12),(13);
  14. /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
  15. /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
  16. /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
  17. /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;