Others
1. Custom Route Category
/var/www/pterodactyl/resources/scripts/export const SERVER_ROUTE_CATEGORIES = {
general: 'general',
management: 'management',
configuration: 'configuration',
} as const;Adding a new category
export const SERVER_ROUTE_CATEGORIES = {
general: 'general',
management: 'management',
configuration: 'configuration',
minecraft: 'minecraft', // 👈 here is your category
} as const;Assign the category to a route
2. Restrict a Route to Specific Egg IDs
What is eggId ?
eggId ?Where to add eggIds:
eggIds:What happens if you don't add eggIds ?
eggIds ?3. Change the Default Theme
Build the assets
Last updated