Portal   Forum   FAQ   Points [ 0.00 ]    Tournament   Arcade   Challenge   Sudoku   Yatzee   Toplist  
 

Board index » Arcade » Arcade add-ons


Author Message
Offline
 Post subject: portal registers
PostPosted: 28 Jul 2010, 11:10
  
Member
Member

Joined: 17 Jul 2010, 16:26
Posts: 4
Gender: None specified
I have seen you have laufschrift in it with rekorden one is able somewhere herbekommen

sorry for mine english there I am german


 
      Top  
 
 
 
google adsense
Post details
Offline
 Post subject: Re: portal registers
PostPosted: 28 Jul 2010, 12:39
  
User avatar
Site Admin
Site Admin

Joined: 30 Dec 2007, 19:30
Posts: 8316
Location: Ikast Denmark
Highscores: 3
Gender: Male
I am not sure i understand what you mean, attach a picture so i can see what you mean.

Signature
Image

Do you have knowledge about php and flash games? Why not join The Team and help other users?


 
      Top  
 
 
Offline
 Post subject: Re: portal registers
PostPosted: 28 Jul 2010, 12:50
  
Member
Member

Joined: 17 Jul 2010, 16:26
Posts: 4
Gender: None specified
this


You do not have the required permissions to view the files attached to this post.


 
      Top  
 
 
Offline
 Post subject: Re: portal registers
PostPosted: 28 Jul 2010, 14:58
  
User avatar
Super Gamer
Super Gamer

Joined: 11 Feb 2009, 01:32
Posts: 28
Location: Italy
Highscores: 528
Gender: None specified
You can translate your german with Google


 
      Top  
 
 
Offline
 Post subject: Re: portal registers
PostPosted: 28 Jul 2010, 19:51
  
Member
Member

Joined: 17 Jul 2010, 16:26
Posts: 4
Gender: None specified
yes :sorry :sorry


 
      Top  
 
 
Offline
 Post subject: Re: portal registers
PostPosted: 29 Jul 2010, 11:43
  
Member
Member

Joined: 17 Jul 2010, 16:26
Posts: 4
Gender: None specified
here in Portal is a marquee for the Arcade Hiscore list as I do that? please in German so I can bad english or where can I find the module?


 
      Top  
 
 
Offline
 Post subject: Re: portal registers
PostPosted: 29 Jul 2010, 18:26
  
Member
Member

Joined: 25 Jul 2010, 17:24
Posts: 3
Gender: None specified
Hi Guys,

i have another Question about this Mod.

I`am from the same Board as treumer and we have the mod incliuded at the Portal, but we would the same box in the index_body.html too.

Now i ask,

What should I change how file so that is also in the index (Forum).

greetz
bad_man1


 
      Top  
 
 
Offline
 Post subject: Re: portal registers
PostPosted: 29 Jul 2010, 19:14
  
User avatar
Site Admin
Site Admin

Joined: 30 Dec 2007, 19:30
Posts: 8316
Location: Ikast Denmark
Highscores: 3
Gender: Male
The code for for the marque is this
Code:
<table class="tablebg" width="100%" height="28" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<marquee ONMOUSEOVER=this.scrollAmount=1 ONMOUSEOUT=this.scrollAmount=3  vspace="0" hspace="2" width="100%"  height="16" behavior="scroll" direction="left" scrolldelay="0" scrollamount="3" loop="true">
<div class="row1b" valign="top"><font size="2">
               
      <!-- IF .latest_scores -->
         <!-- BEGIN latest_scores --><font color="purple">{latest_scores.HEADING_CHAMP} with a {latest_scores.HEADING_CHAMP_SCORE}&nbsp;|&nbsp; </font>
               <!-- END latest_scores -->
                <!-- ELSE -->
   <div style="text-align: center;">{L_ARCADE_NO_LATEST_HIGHSCORES}</div>
            <!-- ENDIF --></MARQUEE></span><br>
</td>
</tr>
</table>

I think you should place it right after <!-- INCLUDE overall_header.html --> in your index_body.html.

Signature
Image

Do you have knowledge about php and flash games? Why not join The Team and help other users?


 
      Top  
 
 
Offline
 Post subject: Re: portal registers
PostPosted: 29 Jul 2010, 19:50
  
Member
Member

Joined: 25 Jul 2010, 17:24
Posts: 3
Gender: None specified
Hi origon,

thx for this.

but the code can`t find the scores. I think this code sample can`t find the variables.

they show me permanent no scores found please play a game

I think i must create a function in the funktions.php to find the vars, but i have no reason for that

THX
bad_man1


 
      Top  
 
 
Offline
 Post subject: Re: portal registers
PostPosted: 30 Jul 2010, 14:24
  
Member
Member

Joined: 25 Jul 2010, 17:24
Posts: 3
Gender: None specified
Hi Guys,

after many times i have found a reason....

here the Install Instructions, for other Boards.

open index.php
find
Code:
// Assign index specific vars
$template->assign_vars(array(


Add before
Code:
//START ARCADE
include($phpbb_root_path . 'includes/arcade/arcade_common.' . $phpEx);
// Initialize arcade auth
$auth_arcade->acl($user->data);
// Initialize arcade class
$arcade = new arcade(false);
display_arcade_header();
//END ARCADE


create a new html file like arcade_last_game_index.html
with
Code:
<div class="forabg">
   <div class="inner">
      <span class="corners-top"><span></span></span>
      <ul class="topiclist">
         <li class="header"><dl><dt>{L_LAST_SCORE}</dt></dl></li>
      </ul>
      <div class="panel">
         <div class="inner"><span class="corners-top"><span></span></span>
            <div class="postbody" style="width: 100%">
               <div style="text-align: center; font-size: 12px;">
               <table class="tablebg" width="100%" height="28" border="0" cellpadding="0" cellspacing="0">
                  <tr>
                     <td>
                        <marquee ONMOUSEOVER=this.scrollAmount=1 ONMOUSEOUT=this.scrollAmount=3  vspace="0" hspace="2" width="100%"  height="16" behavior="scroll" direction="left" scrolldelay="0" scrollamount="3" loop="true">
         <div class="row1b" valign="top"><font size="2">
               
               <!-- IF .latest_scores -->
               <!-- BEGIN latest_scores --><font color="white">{latest_scores.HEADING_CHAMP} mit {latest_scores.HEADING_CHAMP_SCORE}&nbsp;|&nbsp; </font>
               <!-- END .latest_scores -->
                <!-- ELSE -->
            <div style="text-align: center;">{L_ARCADE_NO_LATEST_HIGHSCORES}</div>
               <!-- ENDIF --></MARQUEE></span><br>
</td>
</tr>
</table>
                    <br />
                    </div>
            </div>
         <span class="corners-bottom"><span></span></span></div>
      </div>

      <span class="corners-bottom"><span></span></span>
   </div>
</div>
      
<br style="clear:both" />


thx to Origon for the Code

copy the file to styles/..../template/

open styles/..../template/index_body.html
Add where ever you want
Code:
<!-- INCLUDE arcade_last_game_index.html -->


thats all.


 
      Top  
 
 




Display posts from previous:  Sort by  
Jump to:  

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum


Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group