Sierra ~ Java // Netty // MySQL // BoneCP // Plugin System (Like Bukkit!)

Page 23 of 103 FirstFirst ... 1315161718192021222324252627282930313373 ... LastLast
Results 331 to 345 of 1536
  1. #331
    Valued Member jomp16 is offline
    MemberRank
    Jan 2012 Join Date
    BrazilLocation
    115Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Updates????

  2. #332
    ส็็็็็็็ Bloodraven is offline
    MemberRank
    Sep 2009 Join Date
    AntarcticaLocation
    2,414Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    I can only describe this in one word: SEXYYYY!

  3. #333
    Apprentice Habblux is offline
    MemberRank
    Nov 2011 Join Date
    Hudson, New HamLocation
    23Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Hey Quackster, would it be possible for you to upload the SWF's you are using? I tried getting the emulator up last night but there didn't appear to be any connection between the client and the emulator. I used game-us.habbo.com (modified my hosts file) for the connection IP.

  4. #334
    Gamma Spamma Liam is offline
    MemberRank
    Dec 2011 Join Date
    Down UnderLocation
    2,946Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by Habblux View Post
    Hey Quackster, would it be possible for you to upload the SWF's you are using? I tried getting the emulator up last night but there didn't appear to be any connection between the client and the emulator. I used game-us.habbo.com (modified my hosts file) for the connection IP.
    Are you using your own hosted SWFs?

  5. #335
    Valued Member jomp16 is offline
    MemberRank
    Jan 2012 Join Date
    BrazilLocation
    115Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quackster, We all want to know if you have updates of the Sierra Emulator.

  6. #336
    Apprentice Habblux is offline
    MemberRank
    Nov 2011 Join Date
    Hudson, New HamLocation
    23Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by Swag View Post
    Are you using your own hosted SWFs?
    Yes I am, I believe my external variables may be wrong... do you have working swfs / gamedata for this emulator? :3

  7. #337
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,476Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Updates soon guys, I'm having computer problems.

  8. #338
    Proficient Member Nathe is offline
    MemberRank
    Aug 2011 Join Date
    151Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    @Quackster I downloaded your Sierracms but when I click on Join Now a blank screen pops up that localhost/register doesnt exists need help
    Back to Topic: Pls upload a screenshot from the catalogue

  9. #339
    Valued Member jomp16 is offline
    MemberRank
    Jan 2012 Join Date
    BrazilLocation
    115Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Nathe: update web-gallery of Habbo

    The catalog is the same as the Phoenix

  10. #340
    Proficient Member Nathe is offline
    MemberRank
    Aug 2011 Join Date
    151Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    ?? Why should I update web gallery? It has nothing to do with the images when Im on the index page and when I click on Join Now a blank screen pops up with the text not found 404

  11. #341
    Alpha Member Zak© is offline
    MemberRank
    Oct 2007 Join Date
    2,693Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    @Above

    That's because the client is missing either the client.php or Habbo.SWF.

    Check all links within the Client file (that's if you have it)

  12. #342
    Valued Member jomp16 is offline
    MemberRank
    Jan 2012 Join Date
    BrazilLocation
    115Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Hey Quackster, I was looking in the Kekomundo and found this emulator to client crypto made in java, open source, He stopped the project, I will pass the download link for you to analyze and add in the Sierra Emulator

    Emulator: EnergyFREE.zip
    Database: energyfree.sql
    VirusTotal: https://www.virustotal.com/file/c9b4...is/1335624037/

    The emulator runs only in RELEASE63-201201190922-633225503

    In CMS or Client that you have put this:
    Code:
    <?php
    $Socket = fsockopen('127.0.0.1', 4001);
    fwrite($Socket, "CONNECT,Goir,127.0.0.1");
    fclose($Socket);
    ?>
    Substituting "Goir" for your username (if you do not heap up on localhost) replace 127.0.0.1 with your ip

  13. #343
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,476Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Been working on SierraCMS 3.0 (complete recode and more features)

    - don't worry I'll add the htaccess so it's just me.php





    PHP Code:
    <?php

    /*#########################
     *# SierraCMS # Quackster #
     *#########################*/

    /*
     * Define class path
     */ 
    define("CLASS_PATH""classes/");

    /*
     * Define classes
     */
     
     
    $includeFiles = array();
     
    $includeFiles[] = "tpl.class.php";
     
    $includeFiles[] = "config.class.php";

    /*
     * Include all classes
     */
     
     
    foreach ($includeFiles as $fileName)
     {
        include(
    CLASS_PATH $fileName);
     }
     
    /*
     *    Get functions
     */
      
    function getConfiguration()
    {
        return new 
    Config();
    }

    function 
    getTemplate()
    {
        return new 
    Template();
    }

    /*
     * Handy variables
     */
    $config getConfiguration();
    $tpl getTemplate();

    /*
     * Handy functions
     */
     
     
    function myHotelURL()
     {

        
    $url = (!empty($_SERVER['HTTPS'])) ? "https://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'] : "http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];

        return 
    'http://'.$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF'])."/";

    }
     
    ?>
    PHP Code:
    <?php

    /*#########################
     *# SierraCMS # Quackster #
     *#########################*/
     
     
    class Template
     
    {
        private 
    $pageData;
        private 
    $templateStyle;
        
        public function 
    __construct()
        {
            
    /*
             * Use a variable the file is included to.
             */
            
    global $config;
            
            
    /*
             * Define variable(s)
             */
            
    $this->templateStyle $config->getConfigValue("template.style");
        
        }
        public function 
    templateError($message)
        {
            die(
    "<p><h2>Template Error!</h2></p><p>" $message "</p>");
        }
        public function 
    getHeader($pageName)
        {
            if (empty(
    $this->templateStyle))
            {
                
    $this->templateError("Your template name cannot be blank!");
            }
            else
            {
                
    $this->pageData file_get_contents("tpl/" $this->templateStyle "/headers/" $pageName "_header.tpl");
            }
        }
        public function 
    getPage($pageName)
        {
            if (empty(
    $this->templateStyle))
            {
                
    $this->templateError("Your template name cannot be blank!");
            }
            else
            {
                
    $this->pageData file_get_contents("tpl/" $this->templateStyle "/" $pageName ".tpl");
            }
        }
        public function 
    setParam($key$value)
        {
            
    $this->pageData str_replace("[" $key "]"$value$this->pageData);
        }
        public function 
    output()
        {
            echo 
    $this->pageData;
        }
        public function 
    returnOutput()
        {
            return 
    $this->pageData;
        }
     }
     
     
    ?>
    Quote Originally Posted by jomp16 View Post
    Hey Quackster, I was looking in the Kekomundo and found this emulator to client crypto made in java, open source, He stopped the project, I will pass the download link for you to analyze and add in the Sierra Emulator

    Emulator: EnergyFREE.zip
    Database: energyfree.sql
    VirusTotal: https://www.virustotal.com/file/c9b4...is/1335624037/

    The emulator runs only in RELEASE63-201201190922-633225503

    In CMS or Client that you have put this:
    Code:
    <?php
    $Socket = fsockopen('127.0.0.1', 4001);
    fwrite($Socket, "CONNECT,Goir,127.0.0.1");
    fclose($Socket);
    ?>
    Substituting "Goir" for your username (if you do not heap up on localhost) replace 127.0.0.1 with your ip
    Thank you I'll look into it, although at the moment I am satisfied.
    Last edited by Quackster; 29-04-12 at 07:22 AM.

  14. #344
    Member Pyreen is offline
    MemberRank
    Aug 2010 Join Date
    72Posts
    Hey!

    I have problems with using the SWF's, Can you upload yours?

    Thanks
    - Pyreen
    Posted via Mobile Device

  15. #345
    Alpha Member Zak© is offline
    MemberRank
    Oct 2007 Join Date
    2,693Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by jomp16 View Post
    Hey Quackster, I was looking in the Kekomundo and found this emulator to client crypto made in java, open source, He stopped the project, I will pass the download link for you to analyze and add in the Sierra Emulator

    Emulator: EnergyFREE.zip
    Database: energyfree.sql
    VirusTotal: https://www.virustotal.com/file/c9b4...is/1335624037/

    The emulator runs only in RELEASE63-201201190922-633225503

    In CMS or Client that you have put this:
    Code:
    <?php
    $Socket = fsockopen('127.0.0.1', 4001);
    fwrite($Socket, "CONNECT,Goir,127.0.0.1");
    fclose($Socket);
    ?>
    Substituting "Goir" for your username (if you do not heap up on localhost) replace 127.0.0.1 with your ip
    You can call that the second hand way.

    This is the in-proper way, instead of doing the SSO.



Advertisement