What's new

Central Centralia Football Stadiums

Joined
Dec 6, 2013
Messages
140
Location
Birmingham, Alabama
Capital
Golarsen
Nick
Ryan
Official Stadiums for the EFL
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Golarsen-Penshko National Stadium



Capacity: 93,800
Location: Golarsen
Home field of the Central Centralia National Football Team


Rellispen-Wazuna Stadium



Capacity: 73,273
Location: Rellispen City


Bavanier Stadium



Capacity: 42,992
Location: West Golarsen Heights


Kiqua-Papassant Metropolitan Field



Capacity: 32,932
Location: Kiqua


Cazala-Mitrona Stadium



Capacity: 68,000
Location: Sedaio City


Spirit of Jalapala Stadium



Capacity: 89,376
Location: Jalapala


Lovatran-Poflow Field



Capacity: 72,000
Location: South Kiqua


Garmetalo-Felpp Memorial Stadium



Capacity: 69,251
Location: Garmetalo Beach
 
Last edited:

Ivernia

Establishing Nation
Joined
Jun 15, 2012
Messages
1,643
Location
Meath, Ireland
Capital
Royal City Caladbolg
Nick
Pádraig
1. Upload your image to a site (For example photobucket)
2. Paste the link of your photo in your comment.
3. In order to see it (As we do) you will need a little tool called ''greasemonkey''
4. Download greasemonkey for firefox
5. Add a user script with this:
// ==UserScript==
// @name NSEurope Image Enabler
// @namespace
// @description Displays links to images as actual images on the forums, bypassing the restrictions on images in posts. Shamelessly ripped from the Argomir Bethesa Forums Script.
// @include
// @include
// @include
// @include
// @include
// @include ==UserScript==
// @name NSEurope Image Enabler
// @namespace
// @description Displays links to images as actual images on the forums, bypassing the restrictions on images in posts. Shamelessly ripped from the Argomir Bethesa Forums Script.
// @include
// @include
// @include
// @include
// @include
// @include
// @include
// @include
// @include
// @include
// @include
// @include
// @include
// @include
// @include


// ==/UserScript==


function getIMGWidth(imgSrc){
var newImg = new Image();
newImg.src = imgSrc;
var width = newImg.width;
return width;
}


function importImages(){
var maxWidth = 768; // RResizes images wider than the specified value. Change to something more to your likings if you find the images too small/large.

var idCount = 0; // Currently not used, but will be implemented later
var links = document.getElementsByTagName("a");
if(links != null){
for(i=0;i<links.length;i++){
var link = links;
var temp = link.href;
var text = link.innerHTML;
temp = temp.toLowerCase();
temp = temp.slice(-4);
if(temp == '.jpg' || temp == '.png' || temp == '.gif'|| temp == '.bmp' || temp == '.svg'){
if(getIMGWidth(link) > maxWidth){
link.innerHTML = '<img src="' + link.href + '" width="' + maxWidth + '" id="img' + idCount + '" title="' + text + '">';
idCount = idCount + 1;
}
else{
link.innerHTML = '<img src="' + link.href + '" id="img' + idCount + '" title="' + text + '">';
idCount = idCount + 1;
}
}
}
}
}


function insertCredits(){
footer = document.getElementById("copyright");
footer.innerHTML = footer.innerHTML + "<br>BGS Forum Image Enabler script for Greasemonky by <a href=http://forums.bethsoft.com/index.php?/user/541071-argomirr/'>Argomirr</a><br>Thanks for using!";
}


importImages();
insertCredits();


6. Now if that part is confusing just say so. Better yet though, contact @Østveg if you have any problems as he much better informed on the Greasemonkey!
7. Why are we using greasemonkey? our server is in Germany and we avoid copyright laws with it. Anyways once it's up and running you won't notice it.
 

Ivernia

Establishing Nation
Joined
Jun 15, 2012
Messages
1,643
Location
Meath, Ireland
Capital
Royal City Caladbolg
Nick
Pádraig
All of those fancy stadiums are a bit too futuristic for 1953.

I concur. Remember it's 1953. Those stadiums are on the cusp of 21st century modern technology. Many modern RL nations struggle to have even one of those.
 
Joined
Dec 6, 2013
Messages
140
Location
Birmingham, Alabama
Capital
Golarsen
Nick
Ryan
I concur. Remember it's 1953. Those stadiums are on the cusp of 21st century modern technology. Many modern RL nations struggle to have even one of those.

Well, it's not exactly easy to find images of a 1950s-era stadium.... Besides, my country just may have been super industrialized during the 1950s. If it is necessary (sigh), I'll delete the images.
 
Top