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

Page 8 of 103 FirstFirst 123456789101112131415161858 ... LastLast
Results 106 to 120 of 1536
  1. #106
    Developer Quackster is online now
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,474Posts

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

    So I noticed this is the only R63 server (in this forum - as a development) for the new encoding now.. :)
    Last edited by Quackster; 17-03-12 at 12:39 AM.

  2. #107
    Account Upgraded | Title Enabled! AWA is offline
    MemberRank
    Feb 2008 Join Date
    1,320Posts

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

    Do you want to code this all by yourself, or are you open for contributions from trusted people?

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

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

    Quote Originally Posted by AWA View Post
    Do you want to code this all by yourself, or are you open for contributions from trusted people?
    I'll add it on GitHub later. People may fork it, but their edits won't be anything officially supported by me.

    But yeah I plan on coding this by myself.

  4. #109
    Valued Member Casly is offline
    MemberRank
    Mar 2012 Join Date
    SwedenLocation
    100Posts

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

    any updates.. havent seen any in a while now

  5. #110
    What about no. Davidaap is offline
    MemberRank
    Nov 2009 Join Date
    773Posts

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

    Quote Originally Posted by Casly View Post
    any updates.. havent seen any in a while now
    l2r, look at page 7

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

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

    Even though it's open source - I've added code so you can check for updates by me every time you debug it instead of reloading the release thread.

    It will simply print the update message and the new download link.



    Code:
            public static void Initalize()
            {
                Console.ForegroundColor = ConsoleColor.DarkGreen;
                Console.WriteLine(" Sierra is starting up!");
    
                // Generate all data needed for the server
                SierraEnvironment.CreateServerInstance();
    
                String CheckUpdateWebsite = "localhost";
    
                try
                {
                    if (new WebClient().DownloadString(String.Concat("http://", CheckUpdateWebsite, "/has_sierra_update/index.php?checkupdate=checkupdate&version=" + sierraConfig.ReadString("this.current_version"))).Contains("Yes"))
                    {
                        String Response = new WebClient().DownloadString(String.Concat("http://", CheckUpdateWebsite, "/has_sierra_update/index.php?checkupdate=getmsg&version=" + sierraConfig.ReadString("this.current_version")));
                        {
                            Console.WriteLine();
                            Console.ForegroundColor = ConsoleColor.Gray;
                            Console.WriteLine(" A new update is avaliable!");
                            Console.ForegroundColor = ConsoleColor.Gray;
                            Console.Write(" New update message -> ");
                            Console.ForegroundColor = ConsoleColor.White;
                            Console.WriteLine(" " + Response);
                            Console.ForegroundColor = ConsoleColor.DarkGreen;
                        }
                    }
                    else
                    {
                        Console.ForegroundColor = ConsoleColor.Green;
                        Console.WriteLine(" No new updates!");
                        Console.ForegroundColor = ConsoleColor.DarkGreen;
                    }
                }
                catch (Exception)
                {
                    Console.ForegroundColor = ConsoleColor.Red;
                    Console.WriteLine(" Could not contact the website.");
                    Console.ForegroundColor = ConsoleColor.DarkGreen;
                }
    
                Console.WriteLine(" Listening on port " + Port);
                Console.WriteLine(" Sierra loaded with Revision 63 of Habbo.");
    
                Console.ResetColor();
                Console.WriteLine();
            }
    Quote Originally Posted by Casly View Post
    any updates.. havent seen any in a while now
    Updates from a day ago is a while?

  7. #112
    Novice MoneyPl0x is offline
    MemberRank
    Mar 2012 Join Date
    1Posts

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

    Good Luck. Coming along well.

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

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

    CMS source is now available at GitHub.
    https://github.com/QuacksterNET/SierraCMS

    PS: It's only in it's bare-basic stages.

  9. #114
    Ultra Light Beam Makarov is offline
    MemberRank
    Apr 2010 Join Date
    GothamLocation
    3,622Posts

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

    The way you handle things is alright. The structure is unique in my opinion. Handling users like you do(similar to (java, c#) emulators) is not needed as you can just store all the data in a $_SESSION array. Although you do use $_SESSION, you run multiple mysql queries on a page's load to get that data..

    Your configuration file doesn't need to be a class. All it does is hold variables and a class should do more than just that.

    I did notice you use the Upper case which is used again in server development. I recommend camelCase because it looks better(Especially in web application development).

    Keep honing in on new PHP skills and you could improve this CMS better!

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

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

    Added new me page.



    also


  11. #116
    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 Quackster View Post
    Added new me page.



    also

    Looks nice :)

  12. #117
    lol Disguised is offline
    MemberRank
    Jan 2011 Join Date
    521Posts

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

    @Makarov We was talking about the configuration and I said the exact same thing. He just wanted to more work than is needed.

    I'm loving that me page! Looks sexy. ;)

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

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

    SierraCMS Index, I'll push it all to github later.


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

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

    Nice updates, looks promising :)
    Can you quickly encode 4000 and screenshot the result? Sorry to be pain lol
    Posted via Mobile Device

  15. #120
    Apprentice DexT3r is offline
    MemberRank
    Aug 2011 Join Date
    14Posts

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

    good luck and hope you re gain trust in this section agian!
    Posted via Mobile Device



Advertisement