AU EE

For Oceania!

EU EE

For EU Players!

.

Privacy Policy

Visitor Count

2000

visitors and counting

// Get stored count or start at 2000 let count = parseInt(localStorage.getItem('visitorCount')) || 2000; const counter = document.getElementById('counter'); // Function to update counter function updateCounter() { // Check if this is a new visit (24 hour cooldown) const lastVisit = localStorage.getItem('lastVisit'); const now = new Date().getTime(); if (!lastVisit || (now - parseInt(lastVisit)) > 24 * 60 * 60 * 1000) { count++; localStorage.setItem('visitorCount', count); localStorage.setItem('lastVisit', now); } counter.textContent = count.toLocaleString(); } // Update on page load updateCounter();

Enjoy live voice roleplay on our Hell Divers 2 groups with both roleplay and non roleplay lobbies. As well as Hell Diver difficulty only lobbies.

The heretic Alien scum threaten our alliance with Super Earth

Do your part for the Empire and join the fight today.
For glory brothers.

Join forces with fellow gamers in the Eternal Empire community, forging friendships and alliances that transcend the virtual battlefield. Together, you'll strategize, coordinate, and celebrate victories as a unified force.

Join us in the Eternal Empire and become a legendary Hell Diver. Victory awaits those brave enough to answer the call!


Support The Org!

Referral Code STAR-7ZWP-3ZGG

Empire News Network

We are an Imperial Monarchy based on faith. Our core beliefs are: the maintaining of territorial superiority in the name of the Empire.

Don't miss our next fleet rally on June 15th! Join us for a deep-space exploration mission.

Meet Captain Nova! Our fearless leader in the Battle of Orion.

Maximize your ship's speed by optimizing your thruster configurations. Learn more inside!

The Eternal Empire was forged during the Galactic Rebellion...

Allies: The Galactic Federation, Solar Syndicate. Enemies: The Void Raiders, Crimson Fleet.

Interested in joining the Eternal Empire? Apply now and become part of our elite squad.


Star Citizen Tools

Fleet Viewer

Universal Item Finder


Introduction

RP / ORG vs ORG
We are a primarily RP Org but that doesn't mean we lack in strength. With superior tactics and planning our Empire does not shy away from the face of battle. Explore and embrace your true virtual life, develop your character and their story, grow your name and legend among our ranks with daily planned RP/PVP events. We also have a YouTube cinematic group and encourage cross project assistance!
The kinds of roleplay you can expect are similar to FF14 as a sort of slice of life RP where your character is how you make it. One such roleplay is where a player in the universe is captured and tortured for intel or sent to the Slave fights to earn their freedom.
In Org Vs Org you can expect to be fighting in large scale operations, with an array of ground forces and air support we will lay siege to enemy territory and claim their lands as our own.
We have a uniform for each rank, but are flexible on small adjustments that still stick true to the actual feel of the uniform, Similar to how clones have custom armor. Or you can expect to have whatever unform you like if you have a squad command.

What do we offer?

  • Events every 2 days, you can find out the times for these on the discord

  • A progression through a ranking system

  • Training manuals to make things easy, it's more fun when everyones on the same page

  • Uniforms for each rank. We permit members to wear whatever helmat they wish even during events. We encourage a sane amount of individualism. Uniforms are provided

  • Tutorial sessions for new players

  • Carrd.co Character sheet help sessions. did you know this website was made in it! be able to create your own personalized identification (Template coming soon free to use)

  • We encourage people to use in game Voice Chat but also understand some people are shy and thats okay :) We encourage hybrid roleplay styles. Discord Coms we prefer to be used for serious PVP engagments or hangouts

Eternal Empire Uniforms

Our Filming Opportunities

Our current open positions

  • Camera Crew

  • Body Actor

  • VFX specialist

  • Voice Actor

  • Artist/Designer

  • SFX sound design

Our current Projects in progress

19/04/2024 
The Eternal Empire Recruitment VideoIncludes SFX,VFX,Camera work
The Eternal Empire Horror MachinimaIncludes Voice actor, SFX, VFX, Camera work
EE News NetworkIncludes youtube script writing, Weekly updates, Give aways, SFX, VFX, Asset gathering, Photoshop, Art&Design

Faith Seeker

Vision Of The Emperor


Crucible Knight

Overseer


Emperors Fist


The Emperor


Lord Commandment

Voice Of The Emperor

Galactic Alliance Network

Galactic Alliance Network

Allied Civilizations

Total Allies0
Combined Fleet0

Known Threats

The Void CollectiveThreat Level: Critical
A mysterious confederation of cybernetic beings. Known for assimilating entire star systems.
Crimson RaidersThreat Level: High
Pirates and mercenaries operating in the outer rim. Highly organized and well-armed.

Peace Treaty

Under the eyes of the Eternal Council, this treaty establishes peace between all signing parties.

Signature

let allies = []; const canvas = document.getElementById('signature-pad'); const ctx = canvas.getContext('2d'); let drawing = false; let lastX = 0; let lastY = 0; function initializePad() { ctx.strokeStyle = '#0f0'; ctx.lineWidth = 2; ctx.lineCap = 'round'; } function showSection(sectionId) { document.querySelectorAll('.ee-section').forEach(section => { section.style.display = 'none'; section.style.opacity = 0; }); const selectedSection = document.getElementById(sectionId); selectedSection.style.display = 'block'; setTimeout(() => { selectedSection.style.opacity = 1; }, 50); } function clearSignature() { ctx.clearRect(0, 0, canvas.width, canvas.height); } function submitTreaty() { const orgName = document.getElementById('org-name').value; const leaderName = document.getElementById('leader-name').value; const fleetSize = document.getElementById('fleet-size').value; const description = document.getElementById('org-description').value; const discordLink = document.getElementById('discord-link').value; if (!orgName || !leaderName || !fleetSize || !description) { alert('Please fill in all required fields'); return; } const newAlly = { name: orgName, leader: leaderName, fleet: fleetSize, description: description, discord: discordLink }; allies.push(newAlly); updateAllyList(); showSection('allies'); clearForm(); updateStats(); } function updateAllyList() { const allyList = document.getElementById('ally-list'); allyList.innerHTML = ''; allies.forEach(ally => { const allyItem = document.createElement('div'); allyItem.className = 'ee-list-item'; allyItem.innerHTML = ` ${ally.name}
Leader: ${ally.leader}
Fleet Size: ${ally.fleet} ships
${ally.description}
${ally.discord ? `Join Discord` : ''}
`; allyList.appendChild(allyItem); }); } function updateStats() { document.getElementById('ally-count').textContent = allies.length; const totalFleet = allies.reduce((sum, ally) => sum + parseInt(ally.fleet), 0); document.getElementById('total-fleet').textContent = totalFleet; } function clearForm() { document.getElementById('org-name').value = ''; document.getElementById('leader-name').value = ''; document.getElementById('fleet-size').value = ''; document.getElementById('org-description').value = ''; document.getElementById('discord-link').value = ''; clearSignature(); } // Drawing event listeners canvas.addEventListener('mousedown', (e) => { drawing = true; let rect = canvas.getBoundingClientRect(); [lastX, lastY] = [e.clientX - rect.left, e.clientY - rect.top]; }); canvas.addEventListener('mousemove', (e) => { if (!drawing) return; let rect = canvas.getBoundingClientRect(); let x = e.clientX - rect.left; let y = e.clientY - rect.top; ctx.beginPath(); ctx.moveTo(lastX, lastY); ctx.lineTo(x, y); ctx.stroke(); [lastX, lastY] = [x, y]; }); canvas.addEventListener('mouseup', () => drawing = false); canvas.addEventListener('mouseout', () => drawing = false); // Touch events for mobile canvas.addEventListener('touchstart', (e) => { e.preventDefault(); drawing = true; let rect = canvas.getBoundingClientRect(); let touch = e.touches[0]; [lastX, lastY] = [touch.clientX - rect.left, touch.clientY - rect.top]; }); canvas.addEventListener('touchmove', (e) => {

EE News


14/09/2024 September Wipe

Yesterday, these brave underdogs launched a relentless 4-hour raid against EE’s main base and emerged victorious. Among the raiders were members from the notorious 666 clan, causing quite a stir in the Discord community. The excitement eventually settled down later in the night. Could EE’s mortal enemy be making a comeback to the server after a 3-month hiatus?
Raiders:
Grim
Monsieur
Grizzly
Turbo
YaYa
Bronx
Ari
Ghxst
Cy
C-C
KK
Farmer
Ls
Le Louch
In other news, offlining has become more prevalent than ever before. We urge players to consider engaging in online raids to maintain a fair and competitive environment. One offliner, “Giveittome,” has received a ban for toxicity, among other offenses, causing a small stir in the community. Some members are thrilled by the actions taken by the Rustralia staff, while others are wary, knowing their own toxic behavior may soon face similar consequences as Rustralia takes strong measures to ensure a pleasant community.
Upcoming Rust Updates: The latest Rust update, “Time To Kill,” brings exciting new features such as the Digital Clock, Wallpaper, Gas Compression Overdrive Weapon Attachment, Additionally, there are new accessibility options and numerous bug fixes and quality-of-life changes1. Stay tuned for more updates as the Rust team continues to enhance the gameplay experience.EE’s Future Plans: As the dust settles from this intense wipe, EE might be taking a break for the next force wipe to focus on regrowing the team and strategizing for future battles. This hiatus will allow the clan to recruit new members, refine their tactics, and come back stronger than ever.

04/09/2024 September Wipe

Exciting Updates from Rustralia’s Discord!A few days ago, Rustralia’s Discord announced some thrilling news: their new website is nearing completion! We are all eagerly anticipating its launch, given our shared interest in web development. Additionally, Rustralia has reintroduced the clips channel, allowing players to showcase their impressive plays.Rustralia is also ramping up efforts on their event server, with ambitions to create a highly functional and engaging experience. To support this, they are launching a content creator program aimed at bringing more attention to our beloved server. With the recent influx of players, it is hoped that the fortnightly server will see increased activity now that it is back online.A special thank you goes out to Pluto from the Eternal Empire for his generous donation to Rustralia. We are thrilled to see our home server thrive and are committed to its growth and success.Unfortunately, there is a bit of disappointing news: the introduction of rivers on maps has been delayed, leaving us all eagerly awaiting this exciting feature.Stay tuned for more updates!

18/08/2024 August Wipe

Forward scouting operations has detected a large clan coming to Rustralia for a wipe known as "BT" Best known for taking out a Japanese Clan lead by Yunapoch. They will be teaming up against the EE with the Asian Zerg Adubu this upcoming wipe. Strategies have been put into place to ensure EE remains the united force protecting Rustralia from offlines, greifing, and server death early wipe. If you have any information prevalent to the BT clan or Adubus Clan please reach out to the nearest EE Officer. Only together will be push back this scourge

14/08/2024 August Wipe

A warning goes out to all Rustralia players this month as an Asian Zerg sweeps across the map in a slew of offlines. These are some individuals from that clan including their leader Adubu. They are a 10 man team and very organized. EE along with multiple other groups are in talks to converge on the Asian threat next wipe. If you are a Solo, Duo, Trio its urged you stay clear from snow as it is their prime spot. Victims of this Zerg may reach out to their nearest EE human resources officer to get assistance in war crime relief

In other news Rustralia has recently released a fortnightly server! Please make sure you support the official upcoming launch


The server we play

Time Until Next Wipe


    Enemies of the Empire

    Q&A

    What do we offer?

    • Rust+ Team Bot

    • Rust lessons for a variety of things pvp, building etc

    • Participate in youtube videos

    • Personalized Discord AI for EE

    • A friendly environment to play

    • Respect

    • Advanced discord bot technology

    When were we established?

    We were established on the 10/1/2024

    I like to cheat in rust can i join?

    We take cheating very seriously, we work with Rustralia admins to keep any cheaters out.

    Do I have to attend every wipe?

    If you need to go away for a while and you are on main team we can temporarily remove you until you return

    EE Rules

    • Voice Chat Discipline:

    • Maintain clear communication during raids, gatherings, and operations.

    • Avoid unnecessary chatter during critical moments.

    • Respect the team leaders' directions and avoid talking over them.

    • Insiding Policy:

    • Insiding (betraying the trust of the group by stealing or sabotaging resources or information) is strictly prohibited.

    • Any suspicions of insiding should be reported to the leadership for investigation.

    • Consequences for insiding may include immediate expulsion from EE or a ban from the Rust group.

    • Resource Gathering and Mining:

    • All members are expected to contribute to the group's resource pool. (unless in auxiliary)

    • Hiding or not reporting resource logs for personal gains is forbidden. (unless in auxiliary)

    • Resource hoarding without contribution to the group is not tolerated. (unless in auxiliary)

    • Team Structure and Limit:

    • The main core team will consist of a set number of players determined by leadership.

    • Auxiliary players exceeding the team limit will form secondary parties and live close by as a village.

    • Secondary parties must abide by the same rules and cooperate with the main core team.

    • Village Security:

    • The auxiliary zerg village will be walled in for security against external threats.

    • Internal security measures should also be in place to prevent infiltration or insiding.

    • Regular patrols and lookout shifts are encouraged to maintain vigilance.

    • Youtube bases with over 10k views are not permitted

    • Collaboration and Cooperation:

    • Cooperation between the main core team and auxiliary parties is essential for the group's overall success.

    • Sharing of resources, information, and strategic plans should be encouraged.

    • Disputes should be resolved peacefully through mediation or leadership intervention.

    • Consequences for Violations:

    • Violations of the established rules will result in appropriate consequences determined by the leadership.

    • Consequences may include warnings, temporary suspension of privileges, demotion, or expulsion from the group.

    Map for wipe: Rustralia Monthly

    EE Members
    Past and Present

    Under development

    Page WIPAu server
    mc.eternalempire.space:25565
    Eu servers
    Creative: http://c.thecorphub.xyz/
    Survival: http://s.thecorphub.xyz/
    play.thecorphub.xyz