TinyPortal

Development => Support => Installation => Topic started by: SMITHONLINE on April 19, 2007, 07:03:23 PM

Title: Installing Arcade Block????? Were is it
Post by: SMITHONLINE on April 19, 2007, 07:03:23 PM
Hi I am looking for this arcade block at the below link to install on my forum i dont know were to get it from and if they are differnt ones or settings for it could anyone help me i have searched the site looking for it?

http://www.silverrose.nl/forum/

Regards

Smith-Online
Title: Re: Installing Arcade Block????? Were is it
Post by: SMITHONLINE on April 19, 2007, 07:19:23 PM
Found it Here:-

http://www.smfarcade.info/index.php/topic,2112.0.html
Title: Re: Installing Arcade Block????? Were is it
Post by: Shadow on April 19, 2007, 07:31:40 PM
What arcade version do you use?
Title: Re: Installing Arcade Block????? Were is it
Post by: SMITHONLINE on April 19, 2007, 07:33:13 PM
Arcade version 2.07
Title: Re: Installing Arcade Block????? Were is it
Post by: Shadow on April 19, 2007, 07:35:18 PM
Alright, Are you having a problem with this?
Title: Re: Installing Arcade Block????? Were is it
Post by: SMITHONLINE on April 19, 2007, 07:37:03 PM
I have found a few different ones anyone you recomend?
Title: Re: Installing Arcade Block????? Were is it
Post by: Shadow on April 19, 2007, 07:38:49 PM
Well, What type of code are you looking for then?
Title: Re: Installing Arcade Block????? Were is it
Post by: SMITHONLINE on April 19, 2007, 07:42:00 PM
i have found this code which i think is great but would like trophies like the litle ones shown in the arcade satistics next to each position e.g 1 to 10
would you know how to do this??

//-------START-------------
/*
|----------------------------------
SMF ARCADE SCROLLING CHAMPS BLOCK for SMFARCADE V2
by Eric Lawson
|----------------------------------
Made for TinyPortal and SMF forum

*/
//Upload a pic called arcade_block.gif (you can use you own gif - just name it arcade_block.gif)
//to your Themes/<themename>/images/ folder

// -- SETUP EDITS ---

$no = 10; //number of top players to show

// --LANGUAGE EDITS --
$txtplay = "The Top Players"; // change "The Top Players" to your language
$txtwin = "Number Of Wins :";// change "Number Of Wins :" to your language
$txtlate = "Latest High Score by ";// change "Latest High Score set by" to your language
$txtwit = "with ";// change "with" to your language
$txton = "on ";// change "on" to your language

global $scripturl,$sourcedir,$boardurl,$db_prefix,$modSettings;
require_once($sourcedir.'/ArcadeStats.php');

//Get newest champ or die
$sql = "SELECT game.ID_GAME, game.gameName, game.thumbnail, game.gameDirectory,
        IFNULL(mem.ID_MEMBER, 0) AS ID_MEMBER, IFNULL(mem.realName,'') AS realName, score.score
        FROM {$db_prefix}arcade_scores AS score
        LEFT JOIN {$db_prefix}members AS mem ON (mem.ID_MEMBER = score.ID_MEMBER)
        JOIN {$db_prefix}arcade_games AS game ON (game.ID_GAME = score.ID_GAME)
        ORDER BY `championFrom` DESC
        LIMIT 0,1";
if(!($result = db_query($sql,__FILE__,__LINE__)))
{
die("Could not get the newest champ");
}
$row = mysql_fetch_assoc($result);
mysql_free_result($result);

if(isset($row['gameDirectory']))
{
$row['gameDirectory']=$row['gameDirectory']."/";
}

//newest champ details
$playerid = $row['ID_MEMBER'];
$player = $row['realName'];
$game_id = $row['ID_GAME'];
$game_name = $row['gameName'];
$score = $row['score'];
$game_pic = $modSettings['gamesUrl'].$row['gameDirectory'].$row['thumbnail'];

$bp=ArcadeStats_BestPlayers($no);

$score_poss=0; //players position

?>

<script type="text/javascript">

/***********************************************
* Cross browser Marquee II- Ã,© Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

var delayb4scrollx=2000 //Specify initial delay before marquee starts to scroll on page (2000=2 seconds)
var marqueespeedx=1 //Specify marquee scroll speed (larger is faster 1-10)
var pauseitx=1 //Pause marquee onMousever (0=no. 1=yes)?

////NO NEED TO EDIT BELOW THIS LINE////////////

var copyspeedx=marqueespeedx
var pausespeedx=(pauseitx==0)? copyspeedx: 0
var actualheightx=''

function scrollmarqueex(){
if (parseInt(cross_marqueex.style.top)>(actualheightx*(-1)+8))
cross_marqueex.style.top=parseInt(cross_marqueex.style.top)-copyspeedx+"px"
else
cross_marqueex.style.top=parseInt(marqueeheightx)+8+"px"
}

function initializemarqueex(){
cross_marqueex=document.getElementById("vmarqueex")
cross_marqueex.style.top=0
marqueeheightx=document.getElementById("marqueecontainerx").offsetHeight
actualheightx=cross_marqueex.offsetHeight
if (window.opera || navigator.userAgent.indexOf("Netscape/7")!=-1){ //if Opera or Netscape 7x, add scrollbars to scroll and exit
cross_marqueex.style.height=marqueeheightx+"px"
cross_marqueex.style.overflow="scroll"
return
}
setTimeout('lefttime=setInterval("scrollmarqueex()",30)', delayb4scrollx)
}

if (window.addEventListener)
window.addEventListener("load", initializemarqueex, false)
else if (window.attachEvent)
window.attachEvent("onload", initializemarqueex)
else if (document.getElementById)
window.onload=initializemarqueex

</script>
<?php
echo '<table width="100%">
<tr>
<td align="center">
<br />
<a href="'
,$scripturl,'?action=arcade"><img src="',$settings['images_url'],'/arcade_block.gif" border= "0" alt="Arcade" /></a>
<br /><br/>
</td>
</tr>
</table>
<div id="marqueecontainerx" style="position: relative; width: 95%; height:200px; overflow: hidden; border: 0px; padding: 2px; padding-left: 4px;" onmouseover="copyspeedx=pausespeedx" onmouseout="copyspeedx=marqueespeedx">
<div id="vmarqueex" style="position: absolute; width: 98%;">
<div align="center">
<a href="'
,$scripturl,'?action=arcade;sa=play;game=',$game_id,'"><img src="',$game_pic,'" border="0" alt="',$game_name,'" width="60" height="60"/></a>
<br />'
,$txtlate,'<br />
<a href="'
,$scripturl,'?action=profile;u=',$playerid,'">',$player,'</a>
<br/>'
,$txtwit,' ',$score,' ',$txton,'<br />',$game_name,'
<br />------------------<br />'
,$txtplay,'<br /><br />';
foreach ($bp as $out)
{
$score_poss++;
echo '',$score_poss,' - ',$out['link'],'<br />',$txtwin,' ',$out['champions'],'
     <br /><br />'
;
};
echo '</div>
</div>
</div>'
;

//---------END--------------

Title: Re: Installing Arcade Block????? Were is it
Post by: Shadow on April 19, 2007, 07:46:14 PM
Ask the SMF Arcade for some help of that.  I don't know how to do that. Im sorry.

Edited --

You got that code from that site so ask them for some help ;)
Title: Re: Installing Arcade Block????? Were is it
Post by: SMITHONLINE on April 19, 2007, 07:49:36 PM
ok
Title: Re: Installing Arcade Block????? Were is it
Post by: rider on April 19, 2007, 08:08:26 PM
Check out the hack board while you're ther.We'll do what we can to help. ;D
Title: Re: Installing Arcade Block????? Were is it
Post by: Shadow on April 19, 2007, 08:20:58 PM
They can give you all the support there.
Title: Re: Installing Arcade Block????? Were is it
Post by: rebelrose on April 20, 2007, 12:08:18 AM
Add the code to a php block and it should work.