panel
panel copied to clipboard
Show user's server location on the server page
Is there an existing feature request for this?
- [x] I have searched the existing issues before opening this feature request.
Describe the feature you would like to see.
At the moment the user cannot see the location name of their server, so it might be useful to have this information on a server page or in the 'Manage' menu along the 'Node' hostname.
Describe the solution you'd like.
Add the location name in the 'Settings' menu in the 'Debug information' block, or add it in the 'Console' menu near the IP address info.
Additional context to this request.
No response
Why is it as Spam marked. This is not Spam xD Goid Idea! I hope this coming in the next Update 👍
~ PVPMaster0001 (Developing Pterodactyl Scripts)
If you want to see the Server Node that the server is running on you can add the following to ServerDetailsBlock.tsx.
const node = ServerContext.useStoreState(state => state.server.data!.node);
<p css={tw`text-xs mt-2`}>
<FontAwesomeIcon icon={faSitemap} fixedWidth css={tw`mr-1`}/> Node: {node}
</p>
I presume this has changed since 1.8 but it's the same process. Get the Node Name and output it.