51

(7 replies, posted in PunBB 1.2 show off)

well its not realy unique i can take it in about 10 minits

wow look great can you post the modification here so i can see it or add it in 2.3 and creat a package

53

(13 replies, posted in Programming)

thanks

54

(13 replies, posted in Programming)

i think i get it

example

ok i just played 10 games i got 10 high scores you played 20 games and you got 20 high scores and ango played 30 games and he got 30 high scores

the person who has the most high scores is first and so on

os it would be like this
First Place ANgo with 30 highscores, Second place Smartys with 20 Highscores and Third place dharmil with 10 highscores

or you can add it in language file

'Home'    => 'Home',

56

(13 replies, posted in Programming)

SELECT username, MAX(rank_score) , COUNT(*) as total
FROM arcade_ranking, arcade_games, users
WHERE rank_game = game_filename AND rank_player = id
GROUP BY username ORDER BY total DESC LIMIT 3


it doent look like like ther eis any thing wrong with it looks good did you try it yet what erros doi you get...

57

(11 replies, posted in PunBB 1.2 show off)

sure i can tell you
here


<div id="vf" class="blocktable">
    <h2><span>Legend</span></h2>
    
<div class="box">
        <div class="inbox">
                
                <?php
                // For the key thingy
echo "
<table width=\"308\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">
  <tr>
    <td width=\"200\" ></td>
    <td width=\"30\" bgcolor=\"#E4EAF2\" height=\"32\"><img src=\"".PUN_ROOT."img/".$pun_user['style']."/forum_new.gif\" alt=\"New post's\" /></td>
    <td width=\"20%\" bgcolor=\"#E4EAF2\">New Post's</td>
    <td width=\"30\" bgcolor=\"#E4EAF2\"><img src=\"".PUN_ROOT."img/".$pun_user['style']."/forum_old.gif\" alt=\"New post's\" /></td>
    <td width=\"20%\" bgcolor=\"#E4EAF2\">No New Post's</td>
    <td width=\"30\" bgcolor=\"#E4EAF2\"><img src=\"".PUN_ROOT."img/".$pun_user['style']."/forum_link.gif\" alt=\"Link\" /></td>
    <td width=\"20%\" bgcolor=\"#E4EAF2\">Link</td>
    <td width=\"200\" ></td>
  </tr>
  
</table>";
 
?>
                
        </div>
    </div>
    </div>

Add ^^^^that before this code :

for me its line 215

<div id="brdstats" class="block">
    <h2><span><?php echo $lang_index['Board info'] ?></span></h2>
    <div class="box">
        <div class="inbox">
            <dl class="conr">
                <dt><strong><?php echo $lang_index['Board stats'] ?></strong></dt>
                <dd><strong><?php echo $lang_index['Board stats'] ?></strong></dd>
                <dd><?php echo $lang_index['No of users'].': <strong>'. $stats['total_users'] ?></strong></dd>
                <dd><?php echo $lang_index['No of topics'].': <strong>'.$stats['total_topics'] ?></strong></dd>

k i made some new packs you can down load with the fixed intall
and
I added a optional install file for the extra game

reed this
http://forum1.dharmil.info/viewtopic.php?pid=308#p308 - Punbb Arcade Game Mod Beta 1
http://forum1.dharmil.info/viewtopic.php?pid=335#p335 - Punbb Arcade Game Mod 1.0
http://forum1.dharmil.info/viewtopic.php?pid=336#p336 - Punbb Arcade Game Mod 2.0


edit now i just added to ablity to change the number of games displayed on arcade.php through admin plugin...

well on your new mod i got it to work

but i change the install file a little i set up seprate quries for each game so you know if one of the games had and error installing and you know where the problem was i yeah here is the fixed install_mod.php


<?php
/***********************************************************************/

// Some info about your mod.
$mod_title      = 'Punbb_Arcade_Games';
$mod_version    = '1.0';
$release_date   = '2006-04-20';
$author         = 'Dharmil';
$author_email   = 'dharmil@gmail.com';

// Versions of PunBB this mod was created for. Minor variations (i.e. 1.2.4 vs 1.2.5) will be allowed, but a warning will be displayed.
$punbb_versions    = array('1.2.10', '1.2.11');

// Set this to false if you haven't implemented the restore function (see below)
$mod_restore    = true;


// This following function will be called when the user presses the "Install" button
function install()
{
    global $db, $db_type, $pun_config;

            $db->query("CREATE TABLE ".$db->prefix."arcade_ranking (
            `rank_id` SMALLINT(5) NOT NULL auto_increment,            
            `rank_game` varchar(50) NOT NULL default '0',
            `rank_player` SMALLINT(5) NOT NULL default '0',
            `rank_score` double NOT NULL default '0',
            `rank_date` INTEGER UNSIGNED default NULL,            
            PRIMARY KEY  (`rank_id`)
            ) ENGINE=MyISAM ") or error('Unable to add Table "arcade_ranking" ', __FILE__, __LINE__, $db->error());
                    
            $db->query("CREATE TABLE ".$db->prefix."arcade_games (
              `game_id` SMALLINT(5) NOT NULL auto_increment,
              `game_name` varchar(30) NOT NULL default '',
              `game_filename` varchar(30) NOT NULL default '',
              `game_desc` text NOT NULL,
              `game_image` varchar(200) NOT NULL default '',
              `game_width` smallint(5) NOT NULL default '550',
              `game_height` smallint(5) NOT NULL default '400',
              `game_cat` smallint(2) NOT NULL default '0',              
              PRIMARY KEY  (`game_id`)
            ) ENGINE=MyISAM AUTO_INCREMENT=6") or error('Unable to add Table "arcade_games" ', __FILE__, __LINE__, $db->error());


// Add some games. Game_id is not needed because the database is using auto_increment
$db->query('INSERT INTO '.$db->prefix.'arcade_games (game_name, game_filename, game_desc, game_image, game_width, game_height, game_cat) VALUES ("Balloon Hunter", "balloonhunter", "Shoot down the balloons before they leave your reach.<br>Accuracy, timing and power are everything in this game.", "balloonhunter.jpg", "550", "400", 0)') or error('Unable to add Balloon Hunter', __FILE__, __LINE__, $db->error());

$db->query('INSERT INTO '.$db->prefix.'arcade_games (game_name, game_filename, game_desc, game_image, game_width, game_height, game_cat) VALUES ("Breakit", "breakit", "Use YOUR MOUSE to move the base, hit the ball against the brick wall to breakthrough and proceed onto the next level.<br>Be sure to collect the points and power ups. Avoid power downs! There are 50 unique stages to play.", "breakit.jpg", "640", "480", 0)') or error('Unable to add Breakit', __FILE__, __LINE__, $db->error());

$db->query('INSERT INTO '.$db->prefix.'arcade_games (game_name, game_filename, game_desc, game_image, game_width, game_height, game_cat) VALUES ("Diamond Mines", "diamondmine", "The screen is full of gems and you must move the checks around to create three of the same kind of gem in a row.", "diamondmine.gif", "550", "400", 0)') or error('Unable to add Diamond Mines', __FILE__, __LINE__, $db->error());

$db->query('INSERT INTO '.$db->prefix.'arcade_games (game_name, game_filename, game_desc, game_image, game_width, game_height, game_cat) VALUES ("Tetrollapse", "tetrollapse", "You should not only escape the over-filling of the board but also sort out the figures which are on the board.<br>If the figure disappears you will pass to the next level where another figure is preparing for you.", "tetrollapse.jpg", "640", "480", 0)') or error('Unable to add Tetrollapse', __FILE__, __LINE__, $db->error());

$db->query('INSERT INTO '.$db->prefix.'arcade_games (game_name, game_filename, game_desc, game_image, game_width, game_height, game_cat) VALUES ("Frogger", "frogger", "Classic 80s Arcade Game.", "frogger.jpg", "400", "450", 0)') or error('Unable to add Frogger', __FILE__, __LINE__, $db->error());

$db->query('INSERT INTO '.$db->prefix.'arcade_games (game_name, game_filename, game_desc, game_image, game_width, game_height, game_cat) VALUES ("Space Invaders", "invaders", "Taito had the inspired idea around 1978 that killing aliens was extremely good fun.<br>So they invented a game called Space Invaders.", "invaders.jpg", "520", "440", 0)') or error('Unable to add Space Invaders', __FILE__, __LINE__, $db->error());

$db->query('INSERT INTO '.$db->prefix.'arcade_games (game_name, game_filename, game_desc, game_image, game_width, game_height, game_cat) VALUES ("Reel Gold", "reelgold", "Move your cart around on the rails and fire the rope down to reel in gold but avoid hitting rocks.", "reelgold.jpg", "550", "450", 0)') or error('Unable to add Reel Gold', __FILE__, __LINE__, $db->error());

$db->query('INSERT INTO '.$db->prefix.'arcade_games (game_name, game_filename, game_desc, game_image, game_width, game_height, game_cat) VALUES ("Spank The Monkey", "spankmonkey", "Spank the monkey as hard as you can.", "spankmonkey.jpg", "850", "400", 0),("Wheelchair Speartoss", "speartoss", "Wheelchair spear throwing.", "speartoss.gif", "625", "360", 0)') or error('Unable to add Spank The Monkey', __FILE__, __LINE__, $db->error());

$db->query('INSERT INTO '.$db->prefix.'arcade_games (game_name, game_filename, game_desc, game_image, game_width, game_height, game_cat) VALUES ("Speartoss 5 Shots", "speartoss5shots", "Spear throwing.", "speartoss5shots.jpg", "400", "310", 0)') or error('Unable to add Speartoss 5 Shots', __FILE__, __LINE__, $db->error());
}


// This following function will be called when the user presses the "Restore" button (only if $mod_uninstall is true (see above))
function restore()
{
    global $db, $db_type, $pun_config;


    switch ($db_type)
    {
        default:
    $db->query('DROP TABLE '.$db->prefix.'arcade_ranking') or error('Unable to drop table "arcade_ranking"', __FILE__, __LINE__, $db->error());
    $db->query('DROP TABLE '.$db->prefix.'arcade_games') or error('Unable to drop table "arcade_games"', __FILE__, __LINE__, $db->error());
            break;
    }

}

/***********************************************************************/

// DO NOT EDIT ANYTHING BELOW THIS LINE!


// Circumvent maintenance mode
define('PUN_TURN_OFF_MAINT', 1);
define('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';

// We want the complete error message if the script fails
if (!defined('PUN_DEBUG'))
    define('PUN_DEBUG', 1);

// Make sure we are running a PunBB version that this mod works with
$version_warning = false;
if(!in_array($pun_config['o_cur_version'], $punbb_versions))
{
    foreach ($punbb_versions as $temp)
    {
        if (substr($temp, 0, 3) == substr($pun_config['o_cur_version'], 0, 3))
        {
            $version_warning = true;
            break;
        }
    }

    if (!$version_warning)
        exit('You are running a version of PunBB ('.$pun_config['o_cur_version'].') that this mod does not support. This mod supports PunBB versions: '.implode(', ', $punbb_versions));
}


$style = (isset($cur_user)) ? $cur_user['style'] : $pun_config['o_default_style'];

?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html dir="ltr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title><?php echo $mod_title ?> installation</title>
<link rel="stylesheet" type="text/css" href="style/<?php echo $pun_config['o_default_style'].'.css' ?>" />
</head>
<body>

<div id="punwrap">
<div id="puninstall" class="pun" style="margin: 10% 20% auto 20%">

<?php

if (isset($_POST['form_sent']))
{
    if (isset($_POST['install']))
    {
        // Run the install function (defined above)
        install();

?>
<div class="block">
    <h2><span>Installation successful</span></h2>
    <div class="box">
        <div class="inbox">
            <p>Your database has been successfully prepared for <?php echo pun_htmlspecialchars($mod_title) ?>. See readme.txt for further instructions.</p>
        </div>
    </div>
</div>
<?php

    }
    else
    {
        // Run the restore function (defined above)
        restore();

?>
<div class="block">
    <h2><span>Restore successful</span></h2>
    <div class="box">
        <div class="inbox">
            <p>Your database has been successfully restored.</p>
        </div>
    </div>
</div>
<?php

    }
}
else
{

?>
<div class="blockform">
    <h2><span>Mod installation</span></h2>
    <div class="box">
        <form method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>?foo=bar">
            <div><input type="hidden" name="form_sent" value="1" /></div>
            <div class="inform">
                <p>This script will update your database to work with the following modification:</p>
                <p><strong>Mod title:</strong> <?php echo pun_htmlspecialchars($mod_title).' '.$mod_version ?></p>
                <p><strong>Author:</strong> <?php echo pun_htmlspecialchars($author) ?> (<a href="mailto:<?php echo pun_htmlspecialchars($author_email) ?>"><?php echo pun_htmlspecialchars($author_email) ?></a>)</p>
                <p><strong>Disclaimer:</strong> Mods are not officially supported by PunBB. Mods generally can't be uninstalled without running SQL queries manually against the database. Make backups of all data you deem necessary before installing.</p>
<?php if ($mod_restore): ?>                <p>If you've previously installed this mod and would like to uninstall it, you can click the restore button below to restore the database.</p>
<?php endif; ?><?php if ($version_warning): ?>                <p style="color: #a00"><strong>Warning:</strong> The mod you are about to install was not made specifically to support your current version of PunBB (<?php echo $pun_config['o_cur_version']; ?>). However, in most cases this is not a problem and the mod will most likely work with your version as well. If you are uncertain about installning the mod due to this potential version conflict, contact the mod author.</p>
<?php endif; ?>            </div>
            <p><input type="submit" name="install" value="Install" /><?php if ($mod_restore): ?><input type="submit" name="restore" value="Restore" /><?php endif; ?></p>
        </form>
    </div>
</div>
<?php

}

?>

</div>
</div>

</body>
</html>

no the erros is the hold plage doent show up its all blank

well erros messages are diable on my host so i dont know it its just when i pick a game to play its a white screen

k i wll test it and where can i get the 100 games (and the mod still doesnt work)

It doesnt work you cant play the Games

No Problem

and also read this http://forum1.dharmil.info/viewtopic.php?pid=308#p308

65

(13 replies, posted in PunBB 1.2 discussion)

pogenwurst wrote:
elbekko wrote:

Same as pogenwurst ^^

Glad to know I'm not they only stupid one. wink

(Just joking of course)

same  as pogenwurst ^^

66

(11 replies, posted in PunBB 1.2 show off)

thanks

67

(11 replies, posted in PunBB 1.2 show off)

I have got punbb forum and i added so many mods and plugins to it it has a arcade and all that stuff
http://forum1.dharmil.info/index.php

tell me what you think

Arcade Mod 1.0 Addons
    - Install FIle

Download - [url]http://forum1.dharmil.info/Punbb_Arcade_Game_Mod 1.0.zip[/url]
_______________________________________________________________________________________


Arcade Mod 1.1 Addons
    - Admin Plugin
        - Add Games
        - Delete Games
        - Edit Games
**** NO MORE GOING TO PHPMYADMIN TO RUN THE QURIES ****

Download - [url]http://forum1.dharmil.info/Punbb_Arcade_Game_Mod 1.1.zip[/url]
_______________________________________________________________________________________


Arcade Mod 1.2 Addons
    - Admin Plugin Fixed
        - Fixed Some Spelling erros
        - Fixed Some other erros when adding a game
    - Added a ReadMe File.
    - Also Uploaded the Language Files on to it
Download - [url]http://forum1.dharmil.info/Punbb_Arcade_Game_Mod 1.2.zip[/url]

yeah i iwll check on that...
is what game did you get the error...
and i am not getting any erros did you ediyt any file..
go to my forum and try a game and see if you get an error
http://forum1.dharmil.info/

ok i have created a install_mod.php file for the mod

so i created a package with the games ango created and i added the install_mod.php

if you wnat to download it go to [url]http://forum1.dharmil.info/Punbb_Arcade_Game_Mod 1.1.zip[/url]

I have created the Plugin.... It has delete, edit, post Functions so now you will not have ot go to phpmyadmin to add games!!!! but its not in this packeg...

if you know him maby you can talk with him and see what we can do

Nice More games(there is only one problem with more games it makes a hige page i thing we should pages now like display 10 games per page

73

(8 replies, posted in Programming)

No problem lol

74

(8 replies, posted in Programming)

i created my own Flash Mpr Streemer with play lists

http://forum1.dharmil.info/

nice


i Also think some one who is a probgamer should work on creating a high score box that shows the top high scores...


(i have bieen trying its just i havent had time