2002Connection refused
2002Connection refused
2002Connection refused
SELECT ID, Title, Summary FROM Items WHERE Type = 2 AND ID <> 0 AND ID <> 0 AND Trashed = FALSE AND Visible = TRUE ORDER BY RAND() LIMIT 0,1
2002Connection refused
			SELECT ID, Title, Votes, Rating
			FROM Items WHERE Type = 1 AND Trashed = FALSE AND Visible = TRUE AND Votes > 0
			ORDER BY Rating DESC, Votes DESC, Views DESC LIMIT 0, 10
2002Connection refused
			SELECT ID, Title, Votes, Rating
			FROM Items WHERE Type = 2 AND Trashed = FALSE AND Visible = TRUE AND Votes > 0
			ORDER BY Rating DESC, Votes DESC, Views DESC LIMIT 0, 10
2002Connection refused
			SELECT ID, Title, Votes, Rating
			FROM Items WHERE Type = 3 AND Trashed = FALSE AND Visible = TRUE AND Votes > 0
			ORDER BY Rating DESC, Votes DESC, Views DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Title, Views FROM Items WHERE Type = 1 AND Trashed = FALSE AND Visible = TRUE ORDER BY Views DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Title, Views FROM Items WHERE Type = 2 AND Trashed = FALSE AND Visible = TRUE ORDER BY Views DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Title, Views FROM Items WHERE Type = 3 AND Trashed = FALSE AND Visible = TRUE ORDER BY Views DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Title, UNIX_TIMESTAMP(Created) AS CreatedU FROM Items WHERE Type = 1 AND Trashed = FALSE AND Visible = TRUE ORDER BY Created DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Title, UNIX_TIMESTAMP(Created) AS CreatedU FROM Items WHERE Type = 2 AND Trashed = FALSE AND Visible = TRUE ORDER BY Created DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Title, UNIX_TIMESTAMP(Created) AS CreatedU FROM Items WHERE Type = 3 AND Trashed = FALSE AND Visible = TRUE ORDER BY Created DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Title, UNIX_TIMESTAMP(Updated) AS UpdatedU FROM Items WHERE Type = 1 AND Trashed = FALSE AND Visible = TRUE ORDER BY Updated DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Title, UNIX_TIMESTAMP(Updated) AS UpdatedU FROM Items WHERE Type = 2 AND Trashed = FALSE AND Visible = TRUE ORDER BY Updated DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Title, UNIX_TIMESTAMP(Updated) AS UpdatedU FROM Items WHERE Type = 3 AND Trashed = FALSE AND Visible = TRUE ORDER BY Updated DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Title, UNIX_TIMESTAMP(LastComment) AS LastCommentU FROM Items WHERE Type = 1 AND LastComment > 0 AND Trashed = FALSE AND Visible = TRUE ORDER BY LastComment DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Title, UNIX_TIMESTAMP(LastComment) AS LastCommentU FROM Items WHERE Type = 2 AND LastComment > 0 AND Trashed = FALSE AND Visible = TRUE ORDER BY LastComment DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Title, UNIX_TIMESTAMP(LastComment) AS LastCommentU FROM Items WHERE Type = 3 AND LastComment > 0 AND Trashed = FALSE AND Visible = TRUE ORDER BY LastComment DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Name, Points FROM Users WHERE Points > 0 ORDER BY Points DESC LIMIT 0, 10
2002Connection refused
SELECT ID, Name, UNIX_TIMESTAMP(LastActive) AS Active, LastAction FROM Users WHERE LastActive > DATE_SUB(NOW(), INTERVAL 10 MINUTE) ORDER BY LastActive DESC
The 3rd Age - BFME Multiplayer, Modding and Mapping
The 3rd Age

There are no mods
in the database

Button for The 3rd AgeButton for The Dwarf HoldsButton for The Elven AllianceButton for Helm's Deep Last HopeButton for GothmogtheOrcButton for BFME+Button for The Four AgesButton for HDR HeadquartersButton for Middle Earth CenterButton for Project Perfect Mod

Become an affiliate!

   

Quick Lists

Top Rated

Tutorials

Mods

Downloads

Popular New Updated Last Comments Users

Register and log in to move these advertisements down

Items

Filter
2002Connection refused
SELECT ID, Type, Name FROM Categories  ORDER BY Type ASC, Name ASC;
2002Connection refused
SELECT ID, Name FROM Users WHERE ID IN (SELECT Author FROM Items) ORDER BY Level DESC, Name ASC;
2002Connection refused
SELECT ID, ShortName, Name FROM Games ORDER BY ID ASC;

Help

2002Connection refused
				SELECT
					Items.ID AS AID,
					Items.Type AS Type,
					Items.Author AS UID,
					Items.Title AS Title,
					Items.Summary AS Description,
					Users.Name AS Author,
					UNIX_TIMESTAMP(Items.Created) AS Created,
					UNIX_TIMESTAMP(Items.Updated) AS Updated,
					UNIX_TIMESTAMP(Items.LastComment) AS LastComment,
					Items.Rating AS Rating,
					Items.Votes AS Votes,
					Items.Category AS CID,
					Categories.Name AS Category,
					Items.Level AS Level,
					GROUP_CONCAT(
						Games.ID ORDER BY Games.ID ASC SEPARATOR ';'
					) AS Games,
					GROUP_CONCAT(
						Games.Name ORDER BY Games.ID ASC SEPARATOR ';'
					) AS GameNames,
					COUNT(ItemGames.Game) AS GamesCount,
					Items.Trashed AS Trashed,
					Items.Visible AS Visible
				FROM
					Items LEFT JOIN ItemGames ON
					(ItemGames.Item = Items.ID)
					LEFT JOIN Games ON
					(ItemGames.Game = Games.ID)
					LEFT JOIN Categories ON
					(Items.Category = Categories.ID)
					LEFT JOIN Users ON
					(Users.ID = Items.Author)
				WHERE
				Items.Trashed = FALSE AND Items.Visible = TRUE
				 AND Items.Author = 42632
				GROUP BY
					AID, Type, UID, Title, Description, Author, Created, Updated, LastComment, Rating, Votes, CID, Category, Level, Trashed, Visible
				
				ORDER BY
					Trashed DESC, Visible ASC, Type ASC, Category ASC, Items.Created DESC, Items.Updated DESC

There are no items fulfilling the requirements.

Go to top

 

"One site to rule them all, one site to find them,
one site to host them all, and on the network bind them."

 
5:44:13