PDA

View Full Version : Attention all fansite leaders


niclam
12-13-2006, 03:01 AM
Soon enough we will be inaugurating the official community section. It will serve as a centralized point for all events related to you, the Regnum Online players.

Said section will have 4 main areas pointing to: Ranking, Forums, Events and Fansite listing in its first basic version.

I'm opening this thread to offer all Regnum Online fansite leaders the chance to be on that listing.

There are certain conditions and requisites before a site may appear on the list, as follows:

Conditions:


NGD Studios will manually verify each and everyone of the sites before being added to the list. According to the Regnum Online use terms we reserve the right to list those sites which content we deem appropiate.
Likewise, NGD Studios does not make itself responsible for any content that may reside on the fansites and it reserves the right to remove any site which content may be deemed questionable.
Sites will be listed in alphabetical order. Those sites which name start with a number, will be ordered by the first non-numeric character. Site names must contain at least one non-numeric character.
To encourage fansite activity and further enlarge the community, we will require that you actively maintain the site. The term "active site" will be subject to our own criteria but to give you an example, we will be visiting regularly every site to see if there has been any news, forum movement, new content, etc. We won't require the site to be maintained daily but we want to avoid those sites that stay without updates for 6 months.


Requisites:

Send the following data via email to community@ngdstudios.com.ar:


Site logo in PNG or JPEG format, with the following dimensions: 128 width x 128 height (Height can be smaller but must not exceed 128). Final logo size will be subject to design changes but the original image ratio will be maintained.
Full site name
Link to the site
Country of origin
Supported languages. Main and secondaries.


The site listing will be available next week.
If you have any doubts, please place a post on this thread.

Regards

Wyatt
03-16-2007, 07:04 AM
ok i have a question. i am currently working with some clan members of mines on a site we are developing and so far it looks nice. but i got a question um how do you make the page a secondary language because right now we are using the news section to put the new both in spanish and in english and its alot of work. so how do we make the secondary language ?

Znurre
03-16-2007, 10:10 AM
ok i have a question. i am currently working with some clan members of mines on a site we are developing and so far it looks nice. but i got a question um how do you make the page a secondary language because right now we are using the news section to put the new both in spanish and in english and its alot of work. so how do we make the secondary language ?

In my currently developed site I'm using php to include different pages depending on the $lang variable.

It works like this.

If you pass like index.php?go=news&lang=en then it will load news_en.php

it's a very simple php code.

<?php
include($go . "_" . $lang . ".php");
?>