Giter Club home page Giter Club logo

idlerpg-site-ng's Introduction

IdleRpg Site NG

Codacy Badge CodeFactor Scrutinizer Code Quality Build Status Coverage Status

Introduction

This is a rewrite of the original site from http://idlerpg.net/ using Zend Framework 3. See a live demo at http://idle.deadbsd.org/.

Installation

The easiest way to install the site is to use Composer. If you don't have it already installed, then please install as per the documentation.

To create your new idlerpg-site-ng:

$ git clone https://github.com/falsovsky/idlerpg-site-ng.git path/to/install

Edit the default configuration file to set the path to your bot files, bot name, etc:

$ cd path/to/install
$ cp config/autoload/local.php.dist config/autoload/local.php
$ nano config/autoload/local.php

Now lets install the PHP dependencies via composer (Choose "Do not inject" if asked):

$ composer install

Once everything is installed, you can test it out immediately using PHP's built-in web server:

$ php -S 0.0.0.0:8080 -t public/ public/index.php
# OR use the composer alias:
$ composer run --timeout 0 serve

This will start the cli-server on port 8080, and bind it to all network interfaces. You can then visit the site at http://localhost:8080/

Note: The built-in CLI server is for development only.

Development mode

The site ships with laminas-development-mode by default, and provides three aliases for consuming the script it ships with:

$ composer development-enable  # enable development mode
$ composer development-disable # disable development mode
$ composer development-status  # whether or not development mode is enabled

You may provide development-only modules and bootstrap-level configuration in config/development.config.php.dist, and development-only application configuration in config/autoload/development.local.php.dist. Enabling development mode will copy these files to versions removing the .dist suffix, while disabling development mode will remove those copies.

Development mode is automatically enabled as part of the site installation process. After making changes to one of the above-mentioned .dist configuration files you will either need to disable then enable development mode for the changes to take effect, or manually make matching updates to the .dist-less copies of those files.

Running Unit Tests

To run the supplied site unit tests, you need to do one of the following:

$ ./vendor/bin/phpunit

If you need to make local modifications for the PHPUnit test setup, copy phpunit.xml.dist to phpunit.xml and edit the new file; the latter has precedence over the former when running tests, and is ignored by version control. (If you want to make the modifications permanent, edit the phpunit.xml.dist file.)

Using docker-compose

This site provides a docker-compose.yml for use with docker-compose; it uses the Dockerfile provided as its base. Build and start the image using:

$ docker-compose up -d --build

At this point, you can visit http://localhost:8080 to see the site running.

You can also run composer from the image. The container environment is named "zf", so you will pass that value to docker-compose run:

$ docker-compose run zf composer install

Web server setup

Apache setup

To setup apache, setup a virtual host to point to the public/ directory of the project and you should be ready to go! It should look something like below:

<VirtualHost *:80>
    ServerName idlerpg.localhost
    DocumentRoot /path/to/idlerpg/public
    <Directory /path/to/idlerpg/public>
        DirectoryIndex index.php
        AllowOverride All
        Order allow,deny
        Allow from all
        <IfModule mod_authz_core.c>
        Require all granted
        </IfModule>
    </Directory>
</VirtualHost>

Nginx setup

To setup nginx, open your /path/to/nginx/nginx.conf and add an include directive below into http block if it does not already exist:

http {
    # ...
    include sites-enabled/*.conf;
}

Create a virtual host configuration file for your project under /path/to/nginx/sites-enabled/idlerpg.localhost.conf it should look something like below:

server {
    listen       80;
    server_name  idlerpg.localhost;
    root         /path/to/idlerpg/public;

    location / {
        index index.php;
        try_files $uri $uri/ @php;
    }

    location @php {
        # Pass the PHP requests to FastCGI server (php-fpm) on 127.0.0.1:9000
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_param  SCRIPT_FILENAME /path/to/idlerpg/public/index.php;
        include fastcgi_params;
    }
}

Restart the nginx, now you should be ready to go!

QA Tools

# Run CS checks:
$ composer cs-check
# Fix CS errors:
$ composer cs-fix
# Run PHPUnit tests:
$ composer test

idlerpg-site-ng's People

Contributors

falsovsky avatar infernvs avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

idlerpg-site-ng's Issues

Upgrade for PHP 8.1+

Would it be possible to upgrade this to be usable on PHP 8.1+?
I'm having issues with PHP 8.1.2.

Error:

$ composer install
Installing dependencies from lock file (including require-dev)
Verifying lock file contents can be installed on current platform.
Your lock file does not contain a compatible set of packages. Please run composer update.

  Problem 1
    - Root composer.json requires php ^5.6 || ^7.0 but your php version (8.1.2) does not satisfy that requirement.
  Problem 2
    - laminas/laminas-cache is locked to version 2.11.3 and an update of this package was not requested.
    - laminas/laminas-cache 2.11.3 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 3
    - laminas/laminas-cache-storage-adapter-apc is locked to version 1.0.1 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-apc 1.0.1 requires php ^5.6 || ^7.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 4
    - laminas/laminas-cache-storage-adapter-apcu is locked to version 1.1.0 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-apcu 1.1.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 5
    - laminas/laminas-cache-storage-adapter-blackhole is locked to version 1.2.1 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-blackhole 1.2.1 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 6
    - laminas/laminas-cache-storage-adapter-dba is locked to version 1.0.1 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-dba 1.0.1 requires php ^5.6 || ^7.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 7
    - laminas/laminas-cache-storage-adapter-ext-mongodb is locked to version 1.1.0 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-ext-mongodb 1.1.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 8
    - laminas/laminas-cache-storage-adapter-filesystem is locked to version 1.1.1 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-filesystem 1.1.1 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 9
    - laminas/laminas-cache-storage-adapter-memcache is locked to version 1.1.0 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-memcache 1.1.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 10
    - laminas/laminas-cache-storage-adapter-memcached is locked to version 1.1.0 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-memcached 1.1.0 requires php ^7.3 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 11
    - laminas/laminas-cache-storage-adapter-memory is locked to version 1.1.0 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-memory 1.1.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 12
    - laminas/laminas-cache-storage-adapter-mongodb is locked to version 1.0.1 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-mongodb 1.0.1 requires php ^5.6 || ^7.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 13
    - laminas/laminas-cache-storage-adapter-redis is locked to version 1.2.0 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-redis 1.2.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 14
    - laminas/laminas-cache-storage-adapter-session is locked to version 1.1.0 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-session 1.1.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 15
    - laminas/laminas-cache-storage-adapter-wincache is locked to version 1.0.1 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-wincache 1.0.1 requires php ^5.6 || ^7.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 16
    - laminas/laminas-cache-storage-adapter-xcache is locked to version 1.0.1 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-xcache 1.0.1 requires php ^5.6 || ^7.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 17
    - laminas/laminas-cache-storage-adapter-zend-server is locked to version 1.0.1 and an update of this package was not requested.
    - laminas/laminas-cache-storage-adapter-zend-server 1.0.1 requires php ^5.6 || ^7.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 18
    - laminas/laminas-component-installer is locked to version 1.1.1 and an update of this package was not requested.
    - laminas/laminas-component-installer 1.1.1 requires composer-plugin-api ^1.0 -> found composer-plugin-api[2.6.0] but it does not match the constraint.
  Problem 19
    - laminas/laminas-config is locked to version 3.5.0 and an update of this package was not requested.
    - laminas/laminas-config 3.5.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 20
    - laminas/laminas-dependency-plugin is locked to version 1.0.4 and an update of this package was not requested.
    - laminas/laminas-dependency-plugin 1.0.4 requires composer-plugin-api ^1.1 -> found composer-plugin-api[2.6.0] but it does not match the constraint.
  Problem 21
    - laminas/laminas-development-mode is locked to version 3.3.0 and an update of this package was not requested.
    - laminas/laminas-development-mode 3.3.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 22
    - laminas/laminas-escaper is locked to version 2.8.0 and an update of this package was not requested.
    - laminas/laminas-escaper 2.8.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 23
    - laminas/laminas-http is locked to version 2.14.3 and an update of this package was not requested.
    - laminas/laminas-http 2.14.3 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 24
    - laminas/laminas-json is locked to version 3.2.0 and an update of this package was not requested.
    - laminas/laminas-json 3.2.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 25
    - laminas/laminas-loader is locked to version 2.7.0 and an update of this package was not requested.
    - laminas/laminas-loader 2.7.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 26
    - laminas/laminas-mvc is locked to version 3.2.0 and an update of this package was not requested.
    - laminas/laminas-mvc 3.2.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 27
    - laminas/laminas-navigation is locked to version 2.11.1 and an update of this package was not requested.
    - laminas/laminas-navigation 2.11.1 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 28
    - laminas/laminas-router is locked to version 3.4.5 and an update of this package was not requested.
    - laminas/laminas-router 3.4.5 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 29
    - laminas/laminas-serializer is locked to version 2.10.1 and an update of this package was not requested.
    - laminas/laminas-serializer 2.10.1 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 30
    - laminas/laminas-servicemanager is locked to version 3.6.4 and an update of this package was not requested.
    - laminas/laminas-servicemanager 3.6.4 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 31
    - laminas/laminas-uri is locked to version 2.8.1 and an update of this package was not requested.
    - laminas/laminas-uri 2.8.1 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 32
    - laminas/laminas-validator is locked to version 2.14.5 and an update of this package was not requested.
    - laminas/laminas-validator 2.14.5 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 33
    - laminas/laminas-view is locked to version 2.12.0 and an update of this package was not requested.
    - laminas/laminas-view 2.12.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 34
    - laminas/laminas-console is locked to version 2.8.0 and an update of this package was not requested.
    - laminas/laminas-console 2.8.0 requires php ^5.6 || ^7.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 35
    - laminas/laminas-dom is locked to version 2.8.0 and an update of this package was not requested.
    - laminas/laminas-dom 2.8.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 36
    - laminas/laminas-test is locked to version 3.4.2 and an update of this package was not requested.
    - laminas/laminas-test 3.4.2 requires php ^5.6 || ^7.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 37
    - nette/bootstrap is locked to version v3.1.1 and an update of this package was not requested.
    - nette/bootstrap v3.1.1 requires php >=7.2 <8.1 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 38
    - nette/di is locked to version v3.0.8 and an update of this package was not requested.
    - nette/di v3.0.8 requires php >=7.1 <8.1 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 39
    - nette/schema is locked to version v1.2.1 and an update of this package was not requested.
    - nette/schema v1.2.1 requires php >=7.1 <8.1 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 40
    - nette/utils is locked to version v3.2.2 and an update of this package was not requested.
    - nette/utils v3.2.2 requires php >=7.2 <8.1 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 41
    - phar-io/manifest is locked to version 1.0.3 and an update of this package was not requested.
    - phar-io/manifest 1.0.3 requires php ^5.6 || ^7.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 42
    - phar-io/version is locked to version 2.0.1 and an update of this package was not requested.
    - phar-io/version 2.0.1 requires php ^5.6 || ^7.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 43
    - phpdocumentor/reflection-docblock is locked to version 5.1.0 and an update of this package was not requested.
    - phpdocumentor/reflection-docblock 5.1.0 requires ext-filter ^7.1 -> it has the wrong version installed (8.1.2).
  Problem 44
    - phpspec/prophecy is locked to version 1.11.1 and an update of this package was not requested.
    - phpspec/prophecy 1.11.1 requires php ^7.2 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 45
    - phpstan/phpdoc-parser is locked to version 0.3.5 and an update of this package was not requested.
    - phpstan/phpdoc-parser 0.3.5 requires php ~7.1 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 46
    - phpstan/phpstan is locked to version 0.11.20 and an update of this package was not requested.
    - phpstan/phpstan 0.11.20 requires php ~7.1 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 47
    - phpunit/php-code-coverage is locked to version 6.1.4 and an update of this package was not requested.
    - phpunit/php-code-coverage 6.1.4 requires php ^7.1 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 48
    - phpunit/phpunit is locked to version 7.5.20 and an update of this package was not requested.
    - phpunit/phpunit 7.5.20 requires php ^7.1 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 49
    - sebastian/global-state is locked to version 2.0.0 and an update of this package was not requested.
    - sebastian/global-state 2.0.0 requires php ^7.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 50
    - webmozart/assert is locked to version 1.8.0 and an update of this package was not requested.
    - webmozart/assert 1.8.0 requires php ^5.3.3 || ^7.0 -> your php version (8.1.2) does not satisfy that requirement.
  Problem 51
    - laminas/laminas-config 3.5.0 requires php ^7.3 || ~8.0.0 -> your php version (8.1.2) does not satisfy that requirement.
    - laminas/laminas-modulemanager 2.10.2 requires laminas/laminas-config ^3.4 -> satisfiable by laminas/laminas-config[3.5.0].
    - laminas/laminas-modulemanager is locked to version 2.10.2 and an update of this package was not requested.

To enable extensions, verify that they are enabled in your .ini files:
    - /etc/php/8.1/cli/php.ini
    - /etc/php/8.1/cli/conf.d/10-mysqlnd.ini
    - /etc/php/8.1/cli/conf.d/10-opcache.ini
    - /etc/php/8.1/cli/conf.d/10-pdo.ini
    - /etc/php/8.1/cli/conf.d/15-xml.ini
    - /etc/php/8.1/cli/conf.d/20-amqp.ini
    - /etc/php/8.1/cli/conf.d/20-apcu.ini
    - /etc/php/8.1/cli/conf.d/20-ast.ini
    - /etc/php/8.1/cli/conf.d/20-bcmath.ini
    - /etc/php/8.1/cli/conf.d/20-bz2.ini
    - /etc/php/8.1/cli/conf.d/20-calendar.ini
    - /etc/php/8.1/cli/conf.d/20-ctype.ini
    - /etc/php/8.1/cli/conf.d/20-curl.ini
    - /etc/php/8.1/cli/conf.d/20-dba.ini
    - /etc/php/8.1/cli/conf.d/20-dom.ini
    - /etc/php/8.1/cli/conf.d/20-enchant.ini
    - /etc/php/8.1/cli/conf.d/20-exif.ini
    - /etc/php/8.1/cli/conf.d/20-ffi.ini
    - /etc/php/8.1/cli/conf.d/20-fileinfo.ini
    - /etc/php/8.1/cli/conf.d/20-ftp.ini
    - /etc/php/8.1/cli/conf.d/20-gd.ini
    - /etc/php/8.1/cli/conf.d/20-gearman.ini
    - /etc/php/8.1/cli/conf.d/20-gettext.ini
    - /etc/php/8.1/cli/conf.d/20-gmp.ini
    - /etc/php/8.1/cli/conf.d/20-gnupg.ini
    - /etc/php/8.1/cli/conf.d/20-iconv.ini
    - /etc/php/8.1/cli/conf.d/20-igbinary.ini
    - /etc/php/8.1/cli/conf.d/20-imagick.ini
    - /etc/php/8.1/cli/conf.d/20-imap.ini
    - /etc/php/8.1/cli/conf.d/20-intl.ini
    - /etc/php/8.1/cli/conf.d/20-ldap.ini
    - /etc/php/8.1/cli/conf.d/20-mbstring.ini
    - /etc/php/8.1/cli/conf.d/20-memcache.ini
    - /etc/php/8.1/cli/conf.d/20-mongodb.ini
    - /etc/php/8.1/cli/conf.d/20-msgpack.ini
    - /etc/php/8.1/cli/conf.d/20-mysqli.ini
    - /etc/php/8.1/cli/conf.d/20-oauth.ini
    - /etc/php/8.1/cli/conf.d/20-odbc.ini
    - /etc/php/8.1/cli/conf.d/20-pcov.ini
    - /etc/php/8.1/cli/conf.d/20-pdo_dblib.ini
    - /etc/php/8.1/cli/conf.d/20-pdo_firebird.ini
    - /etc/php/8.1/cli/conf.d/20-pdo_mysql.ini
    - /etc/php/8.1/cli/conf.d/20-pdo_odbc.ini
    - /etc/php/8.1/cli/conf.d/20-pdo_pgsql.ini
    - /etc/php/8.1/cli/conf.d/20-pdo_sqlite.ini
    - /etc/php/8.1/cli/conf.d/20-pgsql.ini
    - /etc/php/8.1/cli/conf.d/20-phar.ini
    - /etc/php/8.1/cli/conf.d/20-posix.ini
    - /etc/php/8.1/cli/conf.d/20-ps.ini
    - /etc/php/8.1/cli/conf.d/20-pspell.ini
    - /etc/php/8.1/cli/conf.d/20-raphf.ini
    - /etc/php/8.1/cli/conf.d/20-readline.ini
    - /etc/php/8.1/cli/conf.d/20-redis.ini
    - /etc/php/8.1/cli/conf.d/20-rrd.ini
    - /etc/php/8.1/cli/conf.d/20-shmop.ini
    - /etc/php/8.1/cli/conf.d/20-simplexml.ini
    - /etc/php/8.1/cli/conf.d/20-smbclient.ini
    - /etc/php/8.1/cli/conf.d/20-snmp.ini
    - /etc/php/8.1/cli/conf.d/20-soap.ini
    - /etc/php/8.1/cli/conf.d/20-sockets.ini
    - /etc/php/8.1/cli/conf.d/20-sqlite3.ini
    - /etc/php/8.1/cli/conf.d/20-ssh2.ini
    - /etc/php/8.1/cli/conf.d/20-sysvmsg.ini
    - /etc/php/8.1/cli/conf.d/20-sysvsem.ini
    - /etc/php/8.1/cli/conf.d/20-sysvshm.ini
    - /etc/php/8.1/cli/conf.d/20-tidy.ini
    - /etc/php/8.1/cli/conf.d/20-tokenizer.ini
    - /etc/php/8.1/cli/conf.d/20-uploadprogress.ini
    - /etc/php/8.1/cli/conf.d/20-uuid.ini
    - /etc/php/8.1/cli/conf.d/20-xdebug.ini
    - /etc/php/8.1/cli/conf.d/20-xmlreader.ini
    - /etc/php/8.1/cli/conf.d/20-xmlrpc.ini
    - /etc/php/8.1/cli/conf.d/20-xmlwriter.ini
    - /etc/php/8.1/cli/conf.d/20-xsl.ini
    - /etc/php/8.1/cli/conf.d/20-yaml.ini
    - /etc/php/8.1/cli/conf.d/20-zip.ini
    - /etc/php/8.1/cli/conf.d/20-zmq.ini
    - /etc/php/8.1/cli/conf.d/25-http.ini
    - /etc/php/8.1/cli/conf.d/25-mailparse.ini
    - /etc/php/8.1/cli/conf.d/25-memcached.ini
    - /etc/php/8.1/cli/conf.d/30-ds.ini
You can also run `php --ini` in a terminal to see which files are used by PHP in CLI mode.
Alternatively, you can run Composer with `--ignore-platform-req=ext-filter` to temporarily ignore these required extensions.

Cheers

Stealing items without battle

In the game info states that:

After each battle, if the challenger wins, he has a slightly less than 2% chance of stealing an item from the challengee. Only items of a higher value are stolen, and the challenger's old item is given to the challengee in a moment of pity.

But a player has stealed an item from another player without having had a battle with him.

nginx vhost

I cant get this to work.

Im using the nginx vhost template you provided, but for some reason when im using the templete nginx wont activate the php, it just downloads some files.

and the logs is saying that "could not find named location "@php"

im not an expert at this at all but this seems to me that something is wrong with the "location /" part.

im using php7.3 with fpm
and have tryed both "fastcgi_pass 127.0.0.1:9000" and "unix:/" none of them seems to work properly.

Have something changed or am i doing this wrong?

ps, if i run the test command to see if the site working it works.

Missing player position on quest map based

T lay waste to the Towers of Ankh-Allor, wherein lies the terrible sorceror Croocq
Y 2
S 1
P 225 315 280 360
P1 Orange 195 315
P2 pi 225 270
P3 BernardoRafael 225 315
P4 pirilampo 225 315

Should show as:

Current Quest
Quest: To lay waste to the Towers of Ankh-Allor, wherein lies the terrible sorceror Croocq.

Current goal: [225,315]

Participant 1: Orange
Position: [198,315]

Participant 2: pi
Position: [225,270]

Participant 3: BernardoRafael
Position: [225,315]

Participant 4: pirilampo
Position: [225,315]

Time based quest no properly parsed

T locate the herbs and brew the elixir to rid the realm of the Normonic Plague
Y 1
S 1531325222
P1 RichardStallman
P2 xhip
P3 Infernvs
P4 .hack

Users dont have a coordinate, and the time to END is a normal unix timestamp. And the links are getting garbled too.

Quest: locate the herbs and brew the elixir to rid the realm of the Normonic Plague

Time to completion: 48 years 6 months

Participant 1: RichardStallman 
Position: [0,0]

Participant 2: xhip 
Position: [0,0]

Participant 3: Infernvs 
Position: [0,0]

Participant 4: .hack 
Position: [0,0]

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.