shipsz

    This site uses cookies. By continuing to browse this site, you are agreeing to our Cookie Policy.

    • PHP Source Code

      1. z<?php
      2. /**
      3. * 2Moons
      4. * by Jan-Otto Kröpke 2009-2016
      5. *
      6. * For the full copyright and license information, please view the LICENSE
      7. *
      8. * @package 2Moons
      9. * @author Jan-Otto Kröpke <slaver7@gmail.com>
      10. * @copyright 2009 Lucky
      11. * @copyright 2016 Jan-Otto Kröpke <slaver7@gmail.com>
      12. * @licence MIT
      13. * @version 1.8.0
      14. * @link https://github.com/jkroepke/2Moons
      15. */
      16. // VARS DB -> SCRIPT WRAPPER
      17. $cache = Cache::get();
      18. $cache->add('vars', 'VarsBuildCache');
      19. extract($cache->getData('vars'));
      20. $resource[901] = 'metal';
      21. $resource[902] = 'crystal';
      22. $resource[903] = 'deuterium';
      23. $resource[911] = 'energy';
      24. $resource[921] = 'darkmatter';
      25. $reslist['ressources'] = array(901, 902, 903, 911, 921);
      26. $reslist['resstype'][1] = array(901, 902, 903);
      27. $reslist['resstype'][2] = array(911);
      28. $reslist['resstype'][3] = array(921);z
      Display All