iserrano

Members
  • Posts

    8
  • Joined

  • Last visited

Posts posted by iserrano

  1. Has anyone using Pterdactyl Panel in Unraid tried install addons?

    For example, there are a lot of various add-ons from https://pterodactylmarket.com/.  However, for the one I am trying to install "User Avatar Changer" the install instructions are not based on a Unraid Docker install.

     

    Here is the install instructions from the "User Avatar Changer addon":

    First you need to upload the content of panelfiles folder to /var/www/pterodactyl.

    Now edit panel files

    1 - In routes/api-client.php above "Route::put('/email', [Client\AccountController::class, 'updateEmail'])->name('api:client.account.update-email');" add :

        Route::post('/avatar', [Client\AvatarController::class, 'store']);
        Route::get('/avatar', [Client\AvatarController::class, 'get']);
        Route::delete('/avatar', [Client\AvatarController::class, 'remove']);

    2.0 - In resources/scripts/components/dashboard/AccountOverviewContainer.tsx above "</Container>" add :

            <ContentBox css={tw`md:ml-8 mt-8 md:mt-0`} title={'Change Account Avatar'} showFlashes={'account:avatar'}>
              <UploadAvatarForm />
            </ContentBox>

    2.1 - In same file under all import line add :

    import UploadAvatarForm from '@/components/dashboard/forms/UploadAvatarForm';

    If you don't have yarn install it :

    apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates
    curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
    apt -y install nodejs
    cd /var/www/pterodactyl
    npm i -g yarn
    yarn install

    And build the panel assets :

    yarn build:production
    chown -R www-data:www-data *

    Add Laravel storage syslink :

    php artisan storage:link

     

    Hence, I was interested to know if anyone has tried tweaking and tried installing add-ons beyond the base Pterdactyl Panel install/configuration?  If so, I would be interested to know how, based what addon was installed. 

  2. Has anyone using Pterdactyl Panel in Unraid tried install addons?

    For example, there are a lot of various add-ons from https://pterodactylmarket.com/.  However, for the one I am trying to install "User Avatar Changer" the install instructions are not based on a Unraid Docker install.

     

    Here is the install instructions:

    First you need to upload the content of panelfiles folder to /var/www/pterodactyl.

    Now edit panel files

    1 - In routes/api-client.php above "Route::put('/email', [Client\AccountController::class, 'updateEmail'])->name('api:client.account.update-email');" add :

        Route::post('/avatar', [Client\AvatarController::class, 'store']);
        Route::get('/avatar', [Client\AvatarController::class, 'get']);
        Route::delete('/avatar', [Client\AvatarController::class, 'remove']);

    2.0 - In resources/scripts/components/dashboard/AccountOverviewContainer.tsx above "</Container>" add :

            <ContentBox css={tw`md:ml-8 mt-8 md:mt-0`} title={'Change Account Avatar'} showFlashes={'account:avatar'}>
              <UploadAvatarForm />
            </ContentBox>

    2.1 - In same file under all import line add :

    import UploadAvatarForm from '@/components/dashboard/forms/UploadAvatarForm';

    If you don't have yarn install it :

    apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates
    curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
    apt -y install nodejs
    cd /var/www/pterodactyl
    npm i -g yarn
    yarn install

    And build the panel assets :

    yarn build:production
    chown -R www-data:www-data *

    Add Laravel storage syslink :

    php artisan storage:link

     

    Hence, I was interested to know if anyone has tried tweaking and tried installing add-ons beyond the base Pterdactyl Panel install/configuration?  If so, I would be interested to know how, based what addon was installed. 

     

    Thx

  3. 3 hours ago, iserrano said:

    It was a typo. Thanks again!

     

    3 hours ago, iserrano said:

    It was a typo. Thanks again!

    My last question ;-).  Would you happen to know how to get GSLTToken working with Sandstorm? I have created a different steam account (used those creds in the docker template) and disabled steam guard.  But after starting up the server and checking server act management, it shows the token I created never logged on?

  4. On 11/19/2020 at 10:58 PM, ich777 said:

    Are you also sure that you have forwarded the right ports with the right protocol?

    I have to look into this but if it is reachable from the LAN and you forwarded all ports correctly in your router it should be also reachable from WAN.

    It was a typo. Thanks again!

    • Like 1
  5. On 11/15/2020 at 10:53 PM, ich777 said:

    My apologies for that, I should have been a little bit clearer on that because I think this was solved in a PM afterwards.

     

    You have to download the files manually and place them in the directory that is Quoted down below:

    Then everything should work just as expected.

    Thanks,  ich777. That worked!

     

    Just one more thing. For Sandstorm, outside of the default ports 27102 and 27131 (also forwarded on my firewall), I am able to connect to my server on the LAN, but when I connect via WAN and enter the my server pwd, it appears to connect then fails.  Is there anything special for Sandstorm that I need to configure to connect to it via the WAN?

    On 11/15/2020 at 10:53 PM, ich777 said:

     

    Never used the console directly, try to use RCON (there are many apps out there for directly connecting to RCON with your mobile phone - iOS & Android and also for windows there are tools out there).

    I have to build in screen or something like that but I want to avoid that if that's possible, please tell me if my posted solution will be suitable for you...

     

  6. 17 hours ago, ich777 said:

    After some further inverstigatin (a few posts down from what you quoted), you have to put the files from the link in the right spot.

    What do you need exactly?

     

    No problem, I also have to change description a little bit so that it is easier to understand. ;) I

    Sorry, it may be my misunderstanding.  What I want to do is configure the server making changes via the Game.ini, have motd (welcome messages), and add mods.  But I can't figure out how to do that.

  7. On 10/16/2020 at 4:45 AM, ich777 said:

    Someone set up a tutorial on how to host a server: Click

    There are also the configfiles in there ;)

     

    Since my container is doing all from the command line (you set it basically in the template) it doesn't need to create the files. :)

    Can you provide an example of how you use the docker template to do that?