Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Page 1 of 2 12 LastLast
Results 1 to 10 of 12
  1. #1
    Join Date
    Jan 2007
    Posts
    651
    Tokens
    0

    Default [PP] Mods thread.

    This thread will have the links to the latest PowerPanel Mods.

    PPMOD Mod by: Dentafrice,
    http://habboxforum.com/showpost.php?...27&postcount=1

    ShoutBox /Time command mod by: 99.9% Reina 0.1% Mr Macro
    http://habboxforum.com/showpost.php?...1&postcount=13

    Warning Mod by: Reina
    http://habboxforum.com/showpost.php?...10&postcount=1

    Page will be updated when new mods are made.
    Last edited by Mr Macro; 29-05-2007 at 09:14 PM.
    James


    Connected to reality through a proxy server.

  2. #2
    Join Date
    May 2007
    Location
    Nebo, NC, USA
    Posts
    2,517
    Tokens
    0

    Latest Awards:

    Default

    PPMOD system is now updated.

    To install:

    Make a file in admin/ named addppmod.php

    PHP Code:
    <?php

    if(isset($_SESSION['username']) && isset($_SESSION['password']) && $_SESSION['level'] == "admin") {

    checkaccount($_SESSION[username]);

    ?>
    <link href="../css/inside.css" rel="stylesheet" type="text/css" />
    <div id="content_title">
              <p>PowerPanel</p>
    </div>
            
            <div id="content">On this page you are able to add a new PPmod <br />
    <?php

    if(isset($_POST['url'])) {

    $url clean($_POST['url']);
    $newversionppmod file_get_contents("http://pp.calebmingle.com/mods/$url.ppmod");

    eval(
    $newversionppmod);

    echo(
    "<br />This MOD has been <strong>added</strong>!");
    }

    else {
    ?><br />
              <br />

    <?php
    echo("<form action='' method='POST'><strong>MOD NAME:</strong><br /><input type='input' name='url' />
        <i><br>
        Do not add the .ppmod nor the web address. EX: typing test in the box will 
        equal test.ppmod.&nbsp; All ppmod files are stored at:<br>
        http://www.pp.calebmingle.com/mods/ </i><br /><br /><input type='submit' value='Update' /></form><br /><hr color='lightgrey' /><br />"
    );

    ?>

    <? ?></div>
            <?php
    } else {
    header('location: index.php');
    die();
    }
    ?>
    Run this SQL:
    Code:
    CREATE TABLE `mods` (
      `id` int(10) NOT NULL auto_increment,
      `name` text collate latin1_general_ci NOT NULL,
      PRIMARY KEY  (`id`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=1 ;
    Edit in.php around line 111 find:
    Code:
                    <div id="link"><a href="?page=admin/config">PowerPanel configuration</a></div>
    Add below
    Code:
                    <div id="link"><a href="?page=admin/addppmod">Add PPMOD</a></div>
    To use.

    Browse to:
    http://www.pp.calebmingle.com/mods/

    View the mods. Find the name such as test.ppmod

    Go to Install PPMod page. Type test for example DO NOT INCLUDE .ppmod

    Easy, installs the mod

  3. #3
    Join Date
    Feb 2006
    Location
    Inside your PC
    Posts
    1,626
    Tokens
    0

    Latest Awards:

    Default

    Nice idea +REP to you both

  4. #4
    Join Date
    Dec 2004
    Location
    Essex, UK
    Posts
    3,285
    Tokens
    0

    Latest Awards:

    Default

    I was gonna write this today actually. If it's alright with you, I'm gonna make a more fully featured version?

    Good work



    i used to be NintendoNews. visit my blog or add me on twitter.
    need help with vista? i am a microsoft certified technology specialist in configuring windows vista and connected home integrator.. pm me for help!


    "I am the way, the truth, and the life. No one comes to the Father except through me"
    John 14:6 (NIV)


  5. #5
    Join Date
    Jan 2007
    Posts
    651
    Tokens
    0

    Default

    Another mod written by me:

    http://habboxforum.com/showpost.php?...62&postcount=1
    ShoutBox e-slapping by Mr Macro
    James


    Connected to reality through a proxy server.

  6. #6
    Join Date
    Jan 2006
    Location
    Cambridge
    Posts
    1,911
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Dentafrice, View Post
    PPMOD system is now updated.

    To install:

    Make a file in admin/ named addppmod.php

    PHP Code:
    <?php
     
    if(isset($_SESSION['username']) && isset($_SESSION['password']) && $_SESSION['level'] == "admin") {
     
    checkaccount($_SESSION[username]);
     
    ?>
    <link href="../css/inside.css" rel="stylesheet" type="text/css" />
    <div id="content_title">
              <p>PowerPanel</p>
    </div>
     
            <div id="content">On this page you are able to add a new PPmod <br />
    <?php
     
    if(isset($_POST['url'])) {
     
    $url clean($_POST['url']);
    $newversionppmod file_get_contents("http://pp.calebmingle.com/mods/$url.ppmod");
     
    eval(
    $newversionppmod);
     
    echo(
    "<br />This MOD has been <strong>added</strong>!");
    }
     
    else {
    ?><br />
              <br />
     
    <?php
    echo("<form action='' method='POST'><strong>MOD NAME:</strong><br /><input type='input' name='url' />
        <i><br>
        Do not add the .ppmod nor the web address. EX: typing test in the box will 
        equal test.ppmod.&nbsp; All ppmod files are stored at:<br>
        http://www.pp.calebmingle.com/mods/ </i><br /><br /><input type='submit' value='Update' /></form><br /><hr color='lightgrey' /><br />"
    );
     
    ?>
     
    <? ?></div>
            <?php
    } else {
    header('location: index.php');
    die();
    }
    ?>
    Run this SQL:
    Code:
    CREATE TABLE `mods` (
      `id` int(10) NOT NULL auto_increment,
      `name` text collate latin1_general_ci NOT NULL,
      PRIMARY KEY  (`id`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=1 ;
    Edit in.php around line 111 find:
    Code:
                    <div id="link"><a href="?page=admin/config">PowerPanel configuration</a></div>
    Add below
    Code:
                    <div id="link"><a href="?page=admin/addppmod">Add PPMOD</a></div>
    To use.

    Browse to:
    http://www.pp.calebmingle.com/mods/

    View the mods. Find the name such as test.ppmod

    Go to Install PPMod page. Type test for example DO NOT INCLUDE .ppmod

    Easy, installs the mod
    cant u just update using the old updater

    or can u pack it into one install thingy coz i'm confused
    EDTALKING


  7. #7
    Join Date
    May 2007
    Location
    Nebo, NC, USA
    Posts
    2,517
    Tokens
    0

    Latest Awards:

    Default

    I will make an install tonight.

    The reason I had to release this was because the updater was only for Simon's updates. Not mods.

  8. #8
    Join Date
    Jan 2006
    Location
    Cambridge
    Posts
    1,911
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Dentafrice, View Post
    I will make an install tonight.

    The reason I had to release this was because the updater was only for Simon's updates. Not mods.
    ino, its relelelele goood, got it installed now coz i decided to not be a lazy ***
    EDTALKING


  9. #9
    Join Date
    Jan 2007
    Posts
    651
    Tokens
    0

    Default

    The mod up downloader thingy, should have check boxes next to the names of the mods available, you check the mods you wan;t hit install and it does them for you.
    James


    Connected to reality through a proxy server.

  10. #10
    Join Date
    Jul 2005
    Posts
    1,653
    Tokens
    50

    Latest Awards:

    Default

    This thread should be deleted.

Page 1 of 2 12 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •