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

Page 6 of 103 FirstFirst 12345678910111213141656 ... LastLast
Results 76 to 90 of 1536
  1. #76
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

    Re: Remedy - [C# - R63B New Crypto - MySQL]

    Quote Originally Posted by Livar View Post
    Simply because you're work is messy!


    Loljks, I just have fancy ways :)

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

    Re: Remedy - [C# - R63B New Crypto - MySQL]

    Goodluck i guess.

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

    Re: Sierra - [C# - R63 - New Encoding - MySQL]

    Project renamed to Sierra

    Got a problem..? I don't care.

    Anyway more updates soon.

    --

    Finished catalogue category listing



    Code:
    using System;
    using System.Collections.Generic;
    using System.Data;
    using System.Text;
    
    using Sierra.Managers.Client.Connected;
    using Sierra.Util;
    using Sierra.Habbo_Hotel.Shop;
    
    namespace Sierra.Messages.Incomming
    {
        public partial class Process
        {
            public void ShopCategories(GameClient mSession, Request Request)
            {
                List<MainCategories> Cats = new List<MainCategories>(SierraEnvironment.GetHabboHotel().GetShopCats().GetCategories().Values);
    
                Response Response = new Response();
    
                Response.Initialize(ServerComposers.ShopCategories);
                Response.AppendBoolean(true);
                Response.AppendInt32(0);
                Response.AppendInt32(0);
                Response.AppendInt32(-1);
                Response.AppendBoolean(false);
                Response.AppendBoolean(false);
                Response.AppendInt32(Cats.Count);
                foreach (MainCategories Cat in Cats)
                {
                    List<SubCategories> SubCats = new List<SubCategories>(SierraEnvironment.GetHabboHotel().GetShopSubCats().GetCategories(Cat.Id).Values);
    
                    Response.AppendBoolean(true);
                    Response.AppendInt32(Cat.Colour);
                    Response.AppendInt32(Cat.Icon);
                    Response.AppendInt32(Cat.Id);
                    Response.AppendString(Cat.Label);
    
                    Response.AppendInt32(SubCats.Count);
    
                    foreach (SubCategories SubCat in SubCats)
                    {
                        Response.AppendBoolean(true);
                        Response.AppendInt32(SubCat.Colour);
                        Response.AppendInt32(SubCat.Icon);
                        Response.AppendInt32(SubCat.Id);
                        Response.AppendString(SubCat.Label);
                        Response.AppendInt32(0);
                    }
                }
                Response.AppendBoolean(false);
                mSession.Send(Response);
            }
        }
    }

  4. #79
    Account Upgraded | Title Enabled! Predict is offline
    MemberRank
    Aug 2008 Join Date
    760Posts

    Re: Sierra - [C# - R63 - New Encoding - MySQL]

    You should really think about doing the basics..

    - Logging in
    - inventory (furniture/wall/badges)
    - catalogue (categories/pages/items (purchase items))
    - Navigator (public/guest/create rooms/own rooms/favourties)
    - Room (enter/leave/walk/interact with furniture/rights)
    - Mod tool (blaba)

    Think I've covered all the basics. The rest are mere extras.

    Good luck anyway.

  5. #80
    Account Upgraded | Title Enabled! W00dL3cs is offline
    MemberRank
    Mar 2012 Join Date
    202Posts

    Re: Sierra - [C# - R63 - New Encoding - MySQL]

    Quote Originally Posted by Quackster View Post
    Project renamed to Sierra

    Got a problem..? I don't care.

    Anyway more updates soon.

    --

    Finished catalogue category listing



    Code:
    using System;
    using System.Collections.Generic;
    using System.Data;
    using System.Text;
    
    using Sierra.Managers.Client.Connected;
    using Sierra.Util;
    using Sierra.Habbo_Hotel.Shop;
    
    namespace Sierra.Messages.Incomming
    {
        public partial class Process
        {
            public void ShopCategories(GameClient mSession, Request Request)
            {
                List<MainCategories> Cats = new List<MainCategories>(SierraEnvironment.GetHabboHotel().GetShopCats().GetCategories().Values);
    
                Response Response = new Response();
    
                Response.Initialize(ServerComposers.ShopCategories);
                Response.AppendBoolean(true);
                Response.AppendInt32(0);
                Response.AppendInt32(0);
                Response.AppendInt32(-1);
                Response.AppendBoolean(false);
                Response.AppendBoolean(false);
                Response.AppendInt32(Cats.Count);
                foreach (MainCategories Cat in Cats)
                {
                    List<SubCategories> SubCats = new List<SubCategories>(SierraEnvironment.GetHabboHotel().GetShopSubCats().GetCategories(Cat.Id).Values);
    
                    Response.AppendBoolean(true);
                    Response.AppendInt32(Cat.Colour);
                    Response.AppendInt32(Cat.Icon);
                    Response.AppendInt32(Cat.Id);
                    Response.AppendString(Cat.Label);
    
                    Response.AppendInt32(SubCats.Count);
    
                    foreach (SubCategories SubCat in SubCats)
                    {
                        Response.AppendBoolean(true);
                        Response.AppendInt32(SubCat.Colour);
                        Response.AppendInt32(SubCat.Icon);
                        Response.AppendInt32(SubCat.Id);
                        Response.AppendString(SubCat.Label);
                        Response.AppendInt32(0);
                    }
                }
                Response.AppendBoolean(false);
                mSession.Send(Response);
            }
        }
    }

    What if a sub-category has another sub-category? :P

  6. #81
    Account Upgraded | Title Enabled! George2000 is offline
    MemberRank
    Jul 2011 Join Date
    The NetherlandsLocation
    1,150Posts

    Re: Sierra - [C# - R63 - New Encoding - MySQL]

    Quote Originally Posted by W00dL3cs View Post
    What if a sub-category has another sub-category? :P
    Then I would ask why you would do that.

    If you click on the sub category more things would pop out but dont do that it won't work.

  7. #82
    Member Al0ne is offline
    MemberRank
    Jan 2012 Join Date
    NetherlandsLocation
    88Posts

    Re: Sierra - [C# - R63 - New Encoding - MySQL]

    Quote Originally Posted by Quackster View Post
    Project renamed to Sierra

    Got a problem..? I don't care.

    hmmm. why do you say something about Wichard when you're doing exactly the same? (change project names)


    EDIT: Goodluck with your projects! i liek your code, but its a shame you dont finish it, same word for wichard ;)

  8. #83
    Alpha Member Caustik is offline
    MemberRank
    May 2011 Join Date
    LondonLocation
    1,837Posts

    Re: Sierra - [C# - R63 - New Encoding - MySQL]

    Quote Originally Posted by Predict View Post
    You should really think about doing the basics..

    - Logging in
    - inventory (furniture/wall/badges)
    - catalogue (categories/pages/items (purchase items))
    - Navigator (public/guest/create rooms/own rooms/favourties)
    - Room (enter/leave/walk/interact with furniture/rights)
    - Mod tool (blaba)

    Think I've covered all the basics. The rest are mere extras.

    Good luck anyway.
    He's probably finished with logging in
    Anyway, good luck I guess. (Look into supersockets)

  9. #84
    Eye Eye Capt'n Spheral is offline
    MemberRank
    May 2010 Join Date
    TumptonshireLocation
    2,488Posts

    Re: Sierra - [C# - R63 - New Encoding - MySQL]

    Habbo r63 doesnt use dcrs.

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

    Re: Sierra - [C# - R63 - New Encoding - MySQL]

    Quote Originally Posted by Quackster View Post
    Project renamed to Sierra

    Got a problem..? I don't care.

    Anyway more updates soon.

    --

    Finished catalogue category listing



    Code:
    using System;
    using System.Collections.Generic;
    using System.Data;
    using System.Text;
    
    using Sierra.Managers.Client.Connected;
    using Sierra.Util;
    using Sierra.Habbo_Hotel.Shop;
    
    namespace Sierra.Messages.Incomming
    {
        public partial class Process
        {
            public void ShopCategories(GameClient mSession, Request Request)
            {
                List<MainCategories> Cats = new List<MainCategories>(SierraEnvironment.GetHabboHotel().GetShopCats().GetCategories().Values);
    
                Response Response = new Response();
    
                Response.Initialize(ServerComposers.ShopCategories);
                Response.AppendBoolean(true);
                Response.AppendInt32(0);
                Response.AppendInt32(0);
                Response.AppendInt32(-1);
                Response.AppendBoolean(false);
                Response.AppendBoolean(false);
                Response.AppendInt32(Cats.Count);
                foreach (MainCategories Cat in Cats)
                {
                    List<SubCategories> SubCats = new List<SubCategories>(SierraEnvironment.GetHabboHotel().GetShopSubCats().GetCategories(Cat.Id).Values);
    
                    Response.AppendBoolean(true);
                    Response.AppendInt32(Cat.Colour);
                    Response.AppendInt32(Cat.Icon);
                    Response.AppendInt32(Cat.Id);
                    Response.AppendString(Cat.Label);
    
                    Response.AppendInt32(SubCats.Count);
    
                    foreach (SubCategories SubCat in SubCats)
                    {
                        Response.AppendBoolean(true);
                        Response.AppendInt32(SubCat.Colour);
                        Response.AppendInt32(SubCat.Icon);
                        Response.AppendInt32(SubCat.Id);
                        Response.AppendString(SubCat.Label);
                        Response.AppendInt32(0);
                    }
                }
                Response.AppendBoolean(false);
                mSession.Send(Response);
            }
        }
    }
    Can't judge class, it's just the structure.

    Um does "Sierra"have a meaning? Usually most of your names have a meaning.

  11. #86
    Live Ocottish Sverlord Joopie is online now
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,767Posts

    Re: Sierra - [C# - R63 - New Encoding - MySQL]

    Quote Originally Posted by Zak© View Post
    Can't judge class, it's just the structure.

    Um does "Sierra"have a meaning? Usually most of your names have a meaning.
    I think he was watching a movie/gamming :P

    Sierra Entertainment - Wikipedia, the free encyclopedia

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

    Re: Sierra - [C# - R63 - New Encoding - MySQL]

    Quote Originally Posted by Zak© View Post
    Can't judge class, it's just the structure.

    Um does "Sierra"have a meaning? Usually most of your names have a meaning.
    I think it means change version lots and not complete project :P

  13. #88
    What about no. Davidaap is offline
    MemberRank
    Nov 2009 Join Date
    773Posts

    Re: Sierra - [C# - R63 - New Encoding - MySQL]

    Quote Originally Posted by Hejula View Post
    I think it means change version lots and not complete project :P
    and what project did you ever finish in the habbo section?

  14. #89
    lol Disguised is offline
    MemberRank
    Jan 2011 Join Date
    521Posts

    Re: Sierra - [C# - R63 - New Encoding - MySQL]

    Dude, I think Indigo had a fucking sick name. Anyway, good luck with Sierra.

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

    Re: Sierra - [C# - R63 - New Encoding - MySQL]

    Quote Originally Posted by Davidaap View Post
    and what project did you ever finish in the habbo section?
    I wouldn't mind but your post is relevant to nothing! I do not create development threads so I do not let anyone down when I do not finish things. The two things I released, UberCMS Housekeeping Layout and RevCMS Habbo Template went down very well, and since I just created them without getting some huge 'hype' up just to let people down, people were and still are relatively happy with what I have and am doing.

    So for your information, I have completed the 2 projects that I have publicly released, and talked about, the housekeeping layout and template.



Advertisement