iserrano

Members
  • Posts

    8
  • Joined

  • Last visited

Everything 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. 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. 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?
  5. 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.
  6. Can you provide an example of how you use the docker template to do that?