Jump to content
InvisionCommunity.de - Der Deutsche Invision Community Support
Sign in to follow this  
derDenty

Arcade Statistik?

Recommended Posts

Ich würde gerne eine weitere Statistik und zwar die von Arcade in mein IPB 1.3 einbauen,siehe Bild.

Also ganz unten im Board,wo alle online User etc drin stehen.

Wer kann mir da helfen?

Edited by derDenty

Share this post


Link to post

Wenn du mir mal die DB Struktur des Mods zukommen läßt, dann kann ich dir sicherlich etwas programmieren. Müßte nur wissen, wo der Mod diese Informationen abspeichert.

Share this post


Link to post

Ich hab eine Einbauanleitung gefunden,allerdings nicht für das IPB 1.3,welches ich benutze.

Schaus dir bitte mal an,vielleicht kann man den Code umändern,so das er auch im 1.3 funzt.

Vielen Dank schonmal :)

The following release is Zend Encoded, you will need to have Zend Optimizer installed on your server to use the new version. Dont have it installed? Contact your hosting company and request it..


This has been tested on v2.1.1 and v2.1.2 and works fine


i have included 2 versions. 1 with the game icons and 1 without good.gif


Upload arcade_who_on_functions.php to /sources/lib/


ACP>Tools & Settings

Scroll down and in "Import an XML settings file" browse for the included ipb_settings_partial.xml file and then click "Import XML settings Set"

you now have an option to turn it on / off in ACP


ACP>Look & Feel>Skin Manager>Edit Template HTML>Board Index>Active Users


Search


CODE

<!--IBF.WHOSCHATTING-->



Add Above


CODE

<!--IBF.ARCADEONLINE-->



Click "Save Template Bit"

Repeat for each skin


Edit /sources/action_public/boards.php


Search


CODE

//-----------------------------------------

// Print as normal

//-----------------------------------------



Add Above


CODE

//-----------------------------------------

// Show Arcade Online List?

// by Cyber

//-----------------------------------------


if ( $this->ipsclass->vars['arcade_who_on'] )

{

require_once( ROOT_PATH.'sources/lib/arcade_who_on_functions.php' );


$arcadewhoon = new arcade_who_on_functions();

$arcadewhoon->ipsclass =& $this->ipsclass;


$arcadewhoon->register_class( $this );


$arcade_html = $arcadewhoon->get_arcade_online_list();


$this->output = str_replace( "<!--IBF.ARCADEONLINE-->", $arcade_html, $this->output );

}



If you want the version that shows the game icons then upload the 2 included images (arcadehome.gif & arcadeleaders.gif) to /arcade/images/

Share this post


Link to post

Hab gerade mit demjenigen gesprochen,der diesen Mod realisiert hatte,aber er macht das net fürs 1.3,er sagte,das ich auf das IPB 2.0 upgraden sollte,damit es geht. Nur,das werde ich wegen so einem kleinen Extra nicht machen.

Ich verzichte dann doch lieber,is die Mühe nicht wert.

Trotzdem Danke.

Werde das Thema mal als erledigt abhaken.

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×