Jump to content

Uebermorgen

Member
  • Posts

    103
  • Joined

  • Last visited

Posts posted by Uebermorgen

  1. That is frowned upon, people should really learn to go create thier own - or have the common courtesy to ask someone who has created thier own for permission to use thiers or a copy of it.

     

    This is how all the A3L bullshit starts where people just take take take without asking...

     

    Are you able to explain how to start writing a mission?

  2. My guess would be add -mod:@mod1;@mod2;@mod3;@Bornholm to your server start parameters..

    then in your config.cfg change:

     

    class Missions
    {
    	class Epoch {
    		template = epoch.Altis; // DO NOT CHANGE THIS, IT WILL BREAK YOUR SERVER
    		difficulty = "veteran";    // difficulty settings: veteran == NORMAL, mercenary == HARDCORE
    	};
    };
    

    to:

     

    class Missions
    {
    	class Epoch {
    		template = epoch.Bornholm; // DO NOT CHANGE THIS, IT WILL BREAK YOUR SERVER
    		difficulty = "veteran";    // difficulty settings: veteran == NORMAL, mercenary == HARDCORE
    	};
    };
    

    then make sure your mission folder is called epoch.bornholm and the bornholm mission.sqm file is in there

     

    Thanks.

    I did it already but it spams "Loading Mission" when Im joining the server.

     

    I have no mission.sqm for bornholm. Where can I get it?

  3. Hi,

     

    which parameters is playwithSIX using?

    I tried these:

    -mod=@Epoch;Kart;Heli;dta;Keys; -connect=MYIP -port=2302 -nosplash -world=Altis

     

    but ingame it says that some epoch.pbo files are not signed with keys.

     

    can anyone help?

  4. I use Windows Server 2008, not linux.

     

    @FastPointGaming.com

     

    I did this:

                <?php
                function uniqueUsers() {
                    $client = new TinyRedisClient( 'localhost:6379' );
                    $value = $client->GET( 'PLAYERS:6379' );
                    $object = json_decode($value, true);
                    $number = count($object);
                        return $number;
                }
                $uniquePlayers = uniqueUsers();
                echo $uniquePlayers;
                ?>

    and thats it. Changed nothing in TinyRedisClient.php

×
×
  • Create New...