IndigoEMU - Java - r63 - MySQL

Page 2 of 7 FirstFirst 1234567 LastLast
Results 16 to 30 of 103
  1. #16
    "(still lacks brains)" NoBrain is offline
    MemberRank
    Sep 2011 Join Date
    United KingdomLocation
    2,658Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by Quackster View Post
    Because it hasn't been implemented yet! :D
    It's good to inform people though

  2. #17
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by ησвяαιη View Post
    It's good to inform people though
    Maybe when it's actually done.. also enough of this. Moderators would suspect this as trolling

    -

    Check out the splash development page at my site

    Project Indigo

    Last edited by Quackster; 12-02-12 at 12:21 AM.

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

    Re: IndigoEMU [Java, MySQL, R63A+]

    He is switching to R63 because R36 is featureless and buggy, the bugs you can't fix, remember R63 was the first Beta version, and Beta versions are often buggy you know...

  4. #19
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Finished catalogue items. All cached.



    Quote Originally Posted by zJordan View Post
    He is switching to R63 because R36 is featureless and buggy, the bugs you can't fix, remember R63 was the first Beta version, and Beta versions are often buggy you know...
    Couldn't of said it better myself!

  5. #20
    Account Upgraded | Title Enabled! CyberVibe is offline
    MemberRank
    Jan 2012 Join Date
    C:\inetpub\Location
    215Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Looks good =)

  6. #21
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    I might totally re-do the catalogue. It looks like it was rushed! :D

    Quote Originally Posted by CyberVibe View Post
    Looks good =)
    Appreciated =D

  7. #22
    :joy: Jonteh is offline
    MemberRank
    Apr 2007 Join Date
    New York, USALocation
    3,375Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Good luck. Though i'm yet to see a finished project from you ;c

  8. #23
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by Jonteh View Post
    Good luck. Though i'm yet to see a finished project from you ;c
    Yes I agree :D

    I feel like I have more motivation this time as I actually have someone creating the website part of it. ;)

    I also don't see this being released any time soon.

    --

    Apart from that. I have been cleaning my code. For example, I used to cache the rooms own model data (even though that data never changed)

    before

    Code:
    public RoomModelData getModelData() {
    	return ModelData;
    }
    after

    Code:
    public RoomModelData getModelData() {
    	return Indigo.getHabboHotel().getRoomModels().getModelData(Model);
    }
    Last edited by Quackster; 12-02-12 at 10:03 AM.

  9. #24
    Learning C# - Developer wy479 is offline
    MemberRank
    Nov 2010 Join Date
    :O You PERVERT!Location
    1,132Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Next you should do Project Duck :3 A project by yourself to make you like a huge name :3 Jk anyways what if you made a system so if someone got disconnected it sent the error report to the owner and explains why it happened and If there is a way to fix it Only the feature can be turned on/off in the config file.

  10. #25
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by wy479 View Post
    Next you should do Project Duck :3 A project by yourself to make you like a huge name :3 Jk anyways what if you made a system so if someone got disconnected it sent the error report to the owner and explains why it happened and If there is a way to fix it Only the feature can be turned on/off in the config file.
    An error report would only happen if the user setting it up was an idiot.

  11. #26
    Member Crossroads is offline
    MemberRank
    Dec 2011 Join Date
    59Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by wy479 View Post
    Next you should do Project Duck :3 A project by yourself to make you like a huge name :3 Jk anyways what if you made a system so if someone got disconnected it sent the error report to the owner and explains why it happened and If there is a way to fix it Only the feature can be turned on/off in the config file.
    "Project Duck" was done by Nillus years ago see here.

  12. #27
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Updates!!!

    - Product buying





    - Inventory



    - MUS

    Okay, so the mus. Is I believe, very secure.. why is it secure?

    - The port is hidden
    - When you send a packet to the mus socket, you must have login credentials, example;

    Code:
    ?username=Quack&password=testing1&type=hotelalert&data=:D
    I wrote a basic script for it to connect as well..
    So far, you can only send hotel alerts via website ;D

    PHP Code:
    <?php

        $host 
    "127.0.0.1"
        
    $port 3467;
        
    $stringofdata "login ".$_GET['username']." ".$_GET['password']." type ".$_GET['type']." ".$_GET['data'];
        
        
    $socket socket_create(AF_INETSOCK_STREAMSOL_TCP) or die("Could not create socket\n");

        
    socket_connect($socket$host$port) or die("Could not connect to server on port: ".$port);
         
        
    $len strlen($stringofdata); 
         
        
    socket_send($socket$stringofdata$len0); 
         
        
    socket_close($socket);  

    ?>
    Last edited by Quackster; 14-02-12 at 01:24 AM.

  13. #28
    The one and only! Hejula is offline
    MemberRank
    Nov 2008 Join Date
    4,128Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Excellent Quackster, could you add a list of MUS commands to the documentation on the final release?

  14. #29
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by Hejula View Post
    Excellent Quackster, could you add a list of MUS commands to the documentation on the final release?
    Sure thing. ;D
    The cms will probably have a drop-down box of commands anyway in the housekeeping, or something similar. :D

  15. #30
    "(still lacks brains)" NoBrain is offline
    MemberRank
    Sep 2011 Join Date
    United KingdomLocation
    2,658Posts

    Re: IndigoEMU [Java, MySQL, R63A+]

    Quote Originally Posted by Quackster View Post
    Sure thing. ;D
    The cms will probably have a drop-down box of commands anyway in the housekeeping, or something similar. :D
    It will



Page 2 of 7 FirstFirst 1234567 LastLast

Advertisement