MyBB Community Forums

Full Version: Game Section
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
OK I registered on the gamesection forums but for some reason it isn't sending me my activation email. Do I need to wait for an admin to activate?

Great arcade by the way now I just need games for it Toungue
Activated Wink

Game Section 1.2 RC5 is released!
Changes since 1.2 RC4:
- Language fix of page navigation ACP
- Round->round system
- Started->dinished system
- Round->round fixes
- Infobox fixes
- Multipages user stats
- Best Players Ranking added to statistics
- Tournament statistics added

Changes since 1.1.9:
- Overviewed/rewritten code
- Tournaments
- Support for many game systems
- Less queries for the user statistics
- Most played games (in stats)
- Players with most champions (in stats)
- Advanced version of the last new champions (Option in menu) - all champions changes (with cache)
- Favourites
- Last played
- Advanced who's online
- Category picture
- Number of games in category
- New system to show the categories
- New settings system
- Search system in ACP
- Control games (warning when adding the same game)
- Choise between 1 large query and 3 less queries
- Category in games overview (AdminCP)
- Added date in games overview (AdminCP)
- Searchbar on the page with your search results
- Compatibility with edit, merge and delete of users
- Possibility to view statistics of the category
- Random games with refresh button (AJAX)
- Compatible with MySQL strict
- Updated rate system
- Compatibility of Who's online system with bots database

More information
(2010-02-07, 10:32 AM)Paretje Wrote: [ -> ]When they are visiting the Game Section, they are shown.

That's what I thought, but it's not working for me. I just asked a few members to go to the Game Section with me and report to me the numbers under the "Who's Online" and everyone reported all zeros.

Who's Online
Online: 0 | Members: 0 | Invisible: 0 | Guests: 0 | Bots: 0 | Record: 5 at 06:05 AM on 08-08-2008

How can I fix this?
Game Section 1.2 RC5.1 is released!
Changes since 1.2 RC5:
- Tournament status task fixed

Changes since 1.1.9:
- Overviewed/rewritten code
- Tournaments
- Support for many game systems
- Less queries for the user statistics
- Most played games (in stats)
- Players with most champions (in stats)
- Advanced version of the last new champions (Option in menu) - all champions changes (with cache)
- Favourites
- Last played
- Advanced who's online
- Category picture
- Number of games in category
- New system to show the categories
- New settings system
- Search system in ACP
- Control games (warning when adding the same game)
- Choise between 1 large query and 3 less queries
- Category in games overview (AdminCP)
- Added date in games overview (AdminCP)
- Searchbar on the page with your search results
- Compatibility with edit, merge and delete of users
- Possibility to view statistics of the category
- Random games with refresh button (AJAX)
- Compatible with MySQL strict
- Updated rate system
- Compatibility of Who's online system with bots database

More information
(2010-02-16, 04:26 PM)gimmezell Wrote: [ -> ]
(2010-02-07, 10:32 AM)Paretje Wrote: [ -> ]When they are visiting the Game Section, they are shown.

That's what I thought, but it's not working for me. I just asked a few members to go to the Game Section with me and report to me the numbers under the "Who's Online" and everyone reported all zeros.

Who's Online
Online: 0 | Members: 0 | Invisible: 0 | Guests: 0 | Bots: 0 | Record: 5 at 06:05 AM on 08-08-2008

How can I fix this?

Open inc/function_games.php and find:
	//Plugin
	$plugins->run_hooks("games_whosonline_start");
	
	while($online = $db->fetch_array($query))
	{
		//Strip location
		$online_loc = explode(".php", $online['location']);
		$online_loc = my_substr($online_loc[0], -strpos(strrev($online_loc[0]), "/"));
		
		//Is the location of the user the Game Section
		if($online_loc == "games" || $online_loc == "tournaments")
		{

Replace with:
	//Plugin
	$plugins->run_hooks("games_whosonline_start");
	
	while($online = $db->fetch_array($query))
	{
		//Strip location
		$online_loc = explode(".php", $online['location']);
		$online_loc = my_substr($online_loc[0], -strpos(strrev($online_loc[0]), "/"));
		echo $online['location'].": ".$online_loc."<br />";
		//Is the location of the user the Game Section
		if($online_loc == "games" || $online_loc == "tournaments")
		{

Tell me what you get Wink
I have truble(

need help!

[attachment=17394]
(2010-02-18, 11:07 AM)Paretje Wrote: [ -> ]
(2010-02-16, 04:26 PM)gimmezell Wrote: [ -> ]
(2010-02-07, 10:32 AM)Paretje Wrote: [ -> ]When they are visiting the Game Section, they are shown.

That's what I thought, but it's not working for me. I just asked a few members to go to the Game Section with me and report to me the numbers under the "Who's Online" and everyone reported all zeros.

Who's Online
Online: 0 | Members: 0 | Invisible: 0 | Guests: 0 | Bots: 0 | Record: 5 at 06:05 AM on 08-08-2008

How can I fix this?

Open inc/function_games.php and find:
	//Plugin
	$plugins->run_hooks("games_whosonline_start");
	
	while($online = $db->fetch_array($query))
	{
		//Strip location
		$online_loc = explode(".php", $online['location']);
		$online_loc = my_substr($online_loc[0], -strpos(strrev($online_loc[0]), "/"));
		
		//Is the location of the user the Game Section
		if($online_loc == "games" || $online_loc == "tournaments")
		{

Replace with:
	//Plugin
	$plugins->run_hooks("games_whosonline_start");
	
	while($online = $db->fetch_array($query))
	{
		//Strip location
		$online_loc = explode(".php", $online['location']);
		$online_loc = my_substr($online_loc[0], -strpos(strrev($online_loc[0]), "/"));
		echo $online['location'].": ".$online_loc."<br />";
		//Is the location of the user the Game Section
		if($online_loc == "games" || $online_loc == "tournaments")
		{

Tell me what you get Wink

I made the changes and it didn't fix the problem. In fact it added a rather large black space to the top of the page. See attached image.
I get this error:
The Game Section Settings doesn't exist.

I looked for your past reply's and for some reason it hadn't worked.
I re-uploaded and re-activated multiple times.

Please help.
uppp!!!
some one have answer??
Post: #1178
(2010-02-18, 11:29 AM)KaMaToZzz Wrote: [ -> ]I have truble(

need help!

You have to upload the language file for you language.

(2010-02-18, 05:10 PM)gimmezell Wrote: [ -> ]I made the changes and it didn't fix the problem. In fact it added a rather large black space to the top of the page. See attached image.

It was meant to be, can you copy here what you get in the black border Wink

(2010-02-24, 11:18 AM)kfirrulz Wrote: [ -> ]I get this error:
The Game Section Settings doesn't exist.

I looked for your past reply's and for some reason it hadn't worked.
I re-uploaded and re-activated multiple times.

Please help.

Can you give me your url Wink