Aleeda Emulator [C#, Deltar] R63+

Page 12 of 29 FirstFirst ... 2456789101112131415161718192022 ... LastLast
Results 166 to 180 of 425
  1. #166
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,479Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    I've started console...

    - Friend Request from DB.
    - User console search.



    Also, I have completed navigator private room listings (I used to get VL64 Errors, blah blah), ALSO room-o-matic works 100% :)

    Main priority now:

    - Finish rest of navigator
    - Finish rest of console
    - Finish room settings

  2. #167
    Member Lts is offline
    MemberRank
    Sep 2010 Join Date
    ItalyLocation
    58Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    Quote Originally Posted by Quackster View Post
    I've started console...

    - Friend Request from DB.
    - User console search.



    Also, I have completed navigator private room listings (I used to get VL64 Errors, blah blah), ALSO room-o-matic works 100% :)

    Main priority now:

    - Finish rest of navigator
    - Finish rest of console
    - Finish room settings
    I love this project, but I did not understand, will be open source?

  3. #168
    Member Pyreen is offline
    MemberRank
    Aug 2010 Join Date
    72Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    Seems nice! Hope you finisch it

  4. #169
    Banned PEjump2 is offline
    BannedRank
    Jan 2010 Join Date
    The NetherlandsLocation
    2,838Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    Hmm nice updates Alex, but opening a SVN for this Emulator would be a good idea, to keep it a good, stable EMU :]

  5. #170
    HTML,CSS and a bit C# Richardjuhh is offline
    MemberRank
    Dec 2010 Join Date
    NetherlandsLocation
    351Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    Quote Originally Posted by Quackster View Post
    I've started console...

    - Friend Request from DB.
    - User console search.



    Also, I have completed navigator private room listings (I used to get VL64 Errors, blah blah), ALSO room-o-matic works 100% :)

    Main priority now:

    - Finish rest of navigator
    - Finish rest of console
    - Finish room settings
    and friend categories?

  6. #171
    Apprentice blackb0x is offline
    MemberRank
    Mar 2011 Join Date
    The NetherlandsLocation
    11Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    Good luck Alex.

  7. #172
    Account Upgraded | Title Enabled! Grant is offline
    MemberRank
    Sep 2009 Join Date
    Scotland, UK.Location
    728Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    Quote Originally Posted by Richardjuhh View Post
    and friend categories?
    For that to work, it would need to be coded into the CMS: and no one can actually be bothered. ;p

  8. #173
    sexiess is a sin. Subway is offline
    MemberRank
    Jun 2010 Join Date
    2,491Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    can't wait for this project to get released :)

  9. #174
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,479Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    Quote Originally Posted by PEjump2 View Post
    Hmm nice updates Alex, but opening a SVN for this Emulator would be a good idea, to keep it a good, stable EMU :]
    What a great idea, I'll put a Subversion up very soon, my code is a bit messy in some areas so I don't want any criticism just yet! (:

  10. #175
    Habbo helper kevin4life is offline
    MemberRank
    Sep 2009 Join Date
    Under Your BedLocation
    946Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    how the emu going?

  11. #176
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,479Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    I've been lazy lately but I 'll show you an example of my recoding.
    This is when you click, 'edit room' and loads up all current settings..

    I'm trying to get people to understand ION (:

    Before
    PHP Code:
            private void ProccessPacketFP()
            {
                
    using (DatabaseClient dbClient IonEnvironment.GetDatabase().GetClient())
                {
                    
    string roomID Request.PopWiredInt32().ToString();
                    
    Console.WriteLine(roomID);

                    
    DataRow roomRow;
                    
    dbClient.AddParamWithValue("id"roomID);
                    
    roomRow dbClient.ReadDataRow("SELECT * FROM private_rooms WHERE id = '" roomID "'");

                    
    SendString("GQ" Aleeda.wireEncoding.encodeVL64((int)roomRow["id"]) + (string)roomRow["name"] + Convert.ToChar(2) + (string)roomRow["description"] + Convert.ToChar(2) + "H[XBQFQFHHHIHIH");
                }
            } 
    After
    PHP Code:
            private void ProccessPacketFP()
            {
                
    using (DatabaseClient dbClient IonEnvironment.GetDatabase().GetClient())
                {
                    
    string roomID Request.PopWiredInt32().ToString();
                    List<
    RoomManagerroomDetails Ion.IonEnvironment.GetHabboHotel().GetRooms().RoomDetails(roomID);
                    foreach (
    RoomManager Room in roomDetails)
                    {
                        
    Response.Initialize(465);
                        
    Response.AppendInt32(Room.ID);
                        
    Response.AppendString(Room.Name);
                        
    Response.AppendString(Room.Description);
                        
    Response.AppendInt32(Room.Status);
                        
    Response.AppendInt32(Room.Category);
                        
    Response.AppendInt32(Room.MaxVisitors);
                        
    Response.AppendInt32(Room.MaxVisitors);
                        
    Response.AppendInt32(0); //TODO: Tags, room tag count
                        
    Response.AppendInt32(0); //TODO: Rights, user rights count and list.
                        
    Response.AppendInt32(0);
                        
    Response.AppendInt32(Room.PetsAllowed);
                        
    Response.AppendInt32(Room.PetsEatOtherFood);
                        
    Response.AppendInt32(0); // Walking through people 0 : 1
                        
    Response.AppendInt32(0);
                        
    SendResponse();
                    }
                }
            } 
    Last edited by Quackster; 19-03-11 at 07:29 AM.

  12. #177
    Demi-God tweeney is offline
    MemberRank
    Aug 2008 Join Date
    888Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    Good to see it finally coming together :)

  13. #178
    Apprentice Avatri is offline
    MemberRank
    Feb 2011 Join Date
    EnglandLocation
    16Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    Nice progress alex....

  14. #179
    Custom Title Enabled James is offline
    LegendRank
    Jan 2007 Join Date
    DenverLocation
    2,288Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    Quote Originally Posted by Quackster View Post
    I've been lazy lately but I 'll show you an example of my recoding.
    This is when you click, 'edit room' and loads up all current settings..

    I'm trying to get people to understand ION (:

    Before
    PHP Code:
            private void ProccessPacketFP()
            {
                
    using (DatabaseClient dbClient IonEnvironment.GetDatabase().GetClient())
                {
                    
    string roomID Request.PopWiredInt32().ToString();
                    
    Console.WriteLine(roomID);

                    
    DataRow roomRow;
                    
    dbClient.AddParamWithValue("id"roomID);
                    
    roomRow dbClient.ReadDataRow("SELECT * FROM private_rooms WHERE id = '" roomID "'");

                    
    SendString("GQ" Aleeda.wireEncoding.encodeVL64((int)roomRow["id"]) + (string)roomRow["name"] + Convert.ToChar(2) + (string)roomRow["description"] + Convert.ToChar(2) + "H[XBQFQFHHHIHIH");
                }
            } 
    After
    PHP Code:
            private void ProccessPacketFP()
            {
                
    using (DatabaseClient dbClient IonEnvironment.GetDatabase().GetClient())
                {
                    
    string roomID Request.PopWiredInt32().ToString();
                    List<
    RoomManagerroomDetails Ion.IonEnvironment.GetHabboHotel().GetRooms().RoomDetails(roomID);
                    foreach (
    RoomManager Room in roomDetails)
                    {
                        
    Response.Initialize(465);
                        
    Response.AppendInt32(Room.ID);
                        
    Response.AppendString(Room.Name);
                        
    Response.AppendString(Room.Description);
                        
    Response.AppendInt32(Room.Status);
                        
    Response.AppendInt32(Room.Category);
                        
    Response.AppendInt32(Room.MaxVisitors);
                        
    Response.AppendInt32(Room.MaxVisitors);
                        
    Response.AppendInt32(0); //TODO: Tags, room tag count
                        
    Response.AppendInt32(0); //TODO: Rights, user rights count and list.
                        
    Response.AppendInt32(0);
                        
    Response.AppendInt32(Room.PetsAllowed);
                        
    Response.AppendInt32(Room.PetsEatOtherFood);
                        
    Response.AppendInt32(0); // Walking through people 0 : 1
                        
    Response.AppendInt32(0);
                        
    SendResponse();
                    }
                }
            } 
    Why is the roomID a string :S

  15. #180
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,479Posts

    Re: aleedaEmulator [C#, ION/Deltar]

    Quote Originally Posted by james View Post
    Why is the roomID a string :S
    Woops, my mistake.

    RoomID changed to integer :)



Advertisement