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

Page 60 of 103 FirstFirst ... 1050525354555657585960616263646566676870 ... LastLast
Results 886 to 900 of 1536
  1. #886
    Valued Member smasher1994 is offline
    MemberRank
    Sep 2008 Join Date
    122Posts

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    I've the source code of Sierra, can u say me where i can add own commands?

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

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    Quote Originally Posted by smasher1994 View Post
    I've the source code of Sierra, can u say me where i can add own commands?
    /src/sierra/messages/room/Chat.java I think ;3

    Sierra just has a lot of classes so it's hard to remember.

  3. #888
    Valued Member smasher1994 is offline
    MemberRank
    Sep 2008 Join Date
    122Posts

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    Quote Originally Posted by Quackster View Post
    /src/sierra/messages/room/Chat.java I think ;3

    Sierra just has a lot of classes so it's hard to remember.
    Thanks, was right :)

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

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    Updates

    - Changed back to Netty. I had threading problems.

  5. #890
    Live Ocottish Sverlord Joopie is offline
    LegendRank
    Jun 2010 Join Date
    The NetherlandsLocation
    2,773Posts

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    Quote Originally Posted by Quackster View Post
    Updates

    - Changed back to Netty. I had threading problems.
    Troll...

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

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    Quote Originally Posted by joopie View Post
    Troll...
    Nope.

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

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    Quote Originally Posted by Quackster View Post
    Updates

    - Changed back to Netty. I had threading problems.
    Good, I prefer Netty from what I can see.

    All hail Alex.

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

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    Here is the YouTube video of Sierra. Hope you enjoy. Songs are from Two Steps From Hell (Archangel and Protectors Of The Earth)

    Last edited by Quackster; 01-09-12 at 03:53 PM. Reason: Embedded the video

  9. #894
    Web Developer Papercup is offline
    MemberRank
    Nov 2009 Join Date
    WalesLocation
    1,607Posts

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    Nice Video, I love the test hotel.

  10. #895
    The Legend Returns vista4life is offline
    MemberRank
    Mar 2007 Join Date
    The NetherlandsLocation
    843Posts

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    i will help you with the RC4, we will talk on msn about this it's the only feature what's missing:p about headers don't worry ;D

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

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    Quote Originally Posted by vista4life View Post
    i will help you with the RC4, we will talk on msn about this it's the only feature what's missing:p about headers don't worry ;D
    I still need to do loads more.

    - Mod tools
    - VIP
    - Groups
    - Pets
    - Furni interactions

  12. #897
    Valued Member djtroy39 is offline
    MemberRank
    Aug 2012 Join Date
    United StatesLocation
    119Posts

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    Quote Originally Posted by Quackster View Post
    I still need to do loads more.

    - Mod tools
    - VIP
    - Groups
    - Pets
    - Furni interactions
    I could help you with MOD Tool if you want.

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

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    You can now choose between your hotel alert type (message of the day or normal alert) from configuration.
    If you leave {nl} it will replace with a new line or {username} for the persons logged in name.

    config;

    Code:
    hotel.alert.enabled=true
    hotel.alert.type=generic
    hotel.alert.message=Hello,{nl}Welcome to Sierra - {username}.
    code;

    Code:
    Boolean hotelAlertEnabled = Sierra.getConfiguration().getProperty("hotel.alert.enabled").equals("true");
    		String hotelAlertType = Sierra.getConfiguration().getProperty("hotel.alert.type");
    		String hotelAlertMessage = Sierra.getConfiguration().getProperty("hotel.alert.message");
    
    		if (hotelAlertEnabled)
    		{
    			hotelAlertMessage = hotelAlertMessage.replace("{nl}", "\n");
    			hotelAlertMessage = hotelAlertMessage.replace("{username}", Session.getHabbo().Username);
    
    			if (hotelAlertType.equals("motd"))
    			{
    				Session.getResponse().Initialize(Outgoing.MOTD);
    				Session.getResponse().AppendInt32(hotelAlertEnabled);
    				Session.getResponse().AppendString(hotelAlertMessage);
    				Session.sendResponse();
    			}
    			else if (hotelAlertType.equals("generic"))
    			{
    				Session.getResponse().Initialize(Outgoing.AlertLink);
    				Session.getResponse().AppendString(hotelAlertMessage);
    				Session.getResponse().AppendString("");
    				Session.sendResponse();
    			}
    		}

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

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    Updates

    - Added fuseright packet (required AS3 browsing)
    - Added pixel packet (required AS3 browsing)

    Code:
    	public void serializeCurrencies(Response Message)
    	{
    		Message.AppendInt32(Currencies.size());
    		
    		for (Entry<Integer, Integer> set : Currencies.entrySet()) {
    			Message.AppendInt32(set.getKey());
    			Message.AppendInt32(set.getValue());
    		}
    	}
    Last edited by Quackster; 03-09-12 at 01:40 PM.

  15. #900
    Account Upgraded | Title Enabled! GertJanA is offline
    MemberRank
    Jan 2010 Join Date
    The NetherlandsLocation
    391Posts

    re: Sierra - [Java, R63, Post-Shuffle, Latest Releases, CMS]

    Quote Originally Posted by Quackster View Post
    Updates

    - Added fuseright packet (required AS3 browsing)
    - Added pixel packet (required AS3 browsing)

    Code:
    	public void serializeCurrencies(Response Message)
    	{
    		Message.AppendInt32(Currencies.size());
    		
    		for (Entry<Integer, Integer> set : Currencies.entrySet()) {
    			Message.AppendInt32(set.getKey());
    			Message.AppendInt32(set.getValue());
    		}
    	}

    Pixel Packet?
    I thought Pixels where disabled or deleted?

    But very nice!

    Greetz,



Advertisement