Index: ps/trunk/source/tools/XpartaMuPP/README =================================================================== --- ps/trunk/source/tools/XpartaMuPP/README (revision 19086) +++ ps/trunk/source/tools/XpartaMuPP/README (revision 19087) @@ -1,86 +1,90 @@ Introduction ============ Some commands assume some apt-get based distribution. `lobby.wildfiregames.com` should be replaced by your own domain name (or localhost) in all commands below. Install ejabberd and the erlang compiler ======================================== # apt-get install ejabberd erlang-dev make Configure it: # dpkg-reconfigure ejabberd Set the domain name (e.g. localhost if you installed it on your development computer) and add an admin user. You should now be able to connect to this XMPP server using a normal XMPP client. Installation of the custom XMPP module ====================================== Go to its source directory $ cd source/tools/XpartaMuPP Edit `mod_ipstamp.erl` to set the domain (e.g. localhost) on which the ejabberd server is run. # -define (Domain, ). Build and install it $ make # make install We want ejabberd to load the module, so add the following to the `modules` section in`/etc/ejabberd/ejabberd.cfg`: {mod_ipstamp, []} Restart ejabberd # service ejabberd restart If something goes wrong, read `/var/log/ejabberd/ejabberd.log` Ejabberd configuration ====================== -A web administration inteface is avaliable at http://localhost:5280/admin. Use the admin user credentials (full JID (user@domain)) to log in. Changing settings there is also possible, but some those might not persist on restart. +A web administration inteface is avaliable at http://localhost:5280/admin. Use the admin user credentials (full JID (user@domain)) to log in. Changing settings there is also possible, but some of those might not persist on restart. The rest of this section should be done by editing `/etc/ejabberd/ejabberd.cfg`. We want to allow users to create accounts using the game so allow in-band registration: {access, register, [{allow, all}]}. You can see the list of registered using: # ejabberdctl registered_users lobby.wildfiregames.com XpartaMuPP needs a user to function, so create one using: # ejabberdctl register wfgbot lobby.wildfiregames.com hunter2 The bot also needs to be able to get the IPs of users hosting a match, which is what the ipstamp module does. Create an ACL for the bot (or bots): {acl, bots, {user, "wfgbot", "lobby.wildfiregames.com"}}. -Add an access rule (name it `ipbots` since that it was the module expects: +Add an access rule (name it `ipbots` since that is what the module expects): {access, ipbots, [{allow, bots}]}. MUC room setup ============== To enable the bot to send the game list to players it needs the JIDs of the players, so the room should be configured as such. In case that you want to host multiple lobby rooms adding an ACL for MUC admins to which the bots are added, which is used for `access_admin` in the `mod_muc` configuration would be advisable. Run XpartaMuPP - XMPP Multiplayer Game Manager ============================================== You need to have python 3 and SleekXmpp installed (tested for 1.0-beta5) $ sudo apt-get install python3 python3-sleekxmpp If you would like to run the leaderboard database, $ sudo apt-get install python3-sqlalchemy Then execute the following command to setup the database. $ python3 LobbyRanking.py Execute the following command to run the bot with default options $ python3 XpartaMuPP.py or rather a similar command to run a properly configured program $ python3 XpartaMuPP.py --domain localhost --login wfgbot --password XXXXXX --nickname WFGbot --room arena Run `python3 XpartaMuPP.py --help` for the full list of options If everything is fine you should see something along these lines in your console INFO Negotiating TLS INFO Using SSL version: 3 INFO Node set to: wfgbot@lobby.wildfiregames.com/CC INFO XpartaMuPP started Congratulations, you are running XpartaMuPP - the 0ad Multiplayer Game Manager. + +Rating bot +========== +TODO