| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Β | Β | |||
Β | Β | |||
Β | Β | |||
Β | Β | |||
Β | Β | |||
Β | Β | |||
A free, modern, and automatic website for your Rust server. It updates player counts, wipe dates, and map info automatically using BattleMetrics.
No backend coding required. Everything is managed via config.js and kits.js.
Manage your servers, links, and visuals here.
const CONFIG = {
// Add your servers here
servers: [
{
id: '32428632', // BattleMetrics ID
ip: '127.0.0.1', // Server IP
port: '28015', // Port
wipeInterval: 7 // Days between wipes
},
{
id: '12345678', // Second Server
ip: '127.0.0.1',
port: '28025',
wipeInterval: 3
}
],
// Scrolling News Ticker
newsMessages: [
"π’ MAP WIPED JUST NOW!",
"π₯ VIP Giveaways on Discord!",
"β οΈ Server Restart at 04:00 AM."
],
// Visuals & Links
backgroundImage: 'YOUR_IMAGE_LINK',
discordLink: '[https://discord.gg/yourserver](https://discord.gg/yourserver)',
storeLink: '[https://rustbasicsitestore.tebex.io](https://store.tebex.io)'
};Manage the kits displayed in the "Store" modal. You can define custom colors for the Glow Effect.
const KITS = [
{
id: 'vip',
name: 'VIP KIT',
price: '$10.00',
image: '[https://link-to-image.png](https://link-to-image.png)',
tebexPackageId: '[https://store.tebex.io/package/123456](https://store.tebex.io/package/123456)',
contents: [
"1x AK-47",
"Metal Gear Set",
"Skip Queue"
],
color: '#f1c40f' // Gold Glow Effect
},
{
id: 'raider',
name: 'RAIDER KIT',
price: '$25.00',
image: '[https://link-to-image.png](https://link-to-image.png)',
tebexPackageId: '...',
contents: ["C4", "Rockets"],
color: '#e74c3c' // Red Glow Effect
}
];We are constantly working to improve the player experience. Here are the features planned for the next updates:
Description: A section displaying the top players based on kills, deaths, and playtime.
Description: A dedicated pop-up window listing all server rules (Group limits, Griefing policies, Chat rules).
Description: Visual cards showing what's inside the "Starter", "VIP", and "Raider" kits.
Description: A small scrolling text bar showing the latest updates (e.g., "Map Wiped!", "Event at 8 PM", "New Kit Added").
Description: A feature to list and monitor multiple game servers (e.g., Main, 2x, 10x) on a single website tab.
| Back | FazBrowse Home | New Git URL |