panel icon indicating copy to clipboard operation
panel copied to clipboard

Show user's server location on the server page

Open yibfozzy opened this issue 3 years ago • 2 comments

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

yibfozzy avatar Jul 25 '22 16:07 yibfozzy

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)

C0deVortex avatar Jul 30 '22 06:07 C0deVortex

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.

ItsLeon15 avatar Aug 15 '22 14:08 ItsLeon15