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

Page 62 of 103 FirstFirst ... 1252545556575859606162636465666768697072 ... LastLast
Results 916 to 930 of 1536
  1. #916
    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 Roper View Post
    Does the number stay the same when you leave and re enter the room? ;p
    Yeah?

  2. #917
    Proficient Member office.boy is offline
    MemberRank
    Feb 2007 Join Date
    156Posts

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

    Quote Originally Posted by Quackster View Post
    Updates

    - Coded dice



    Code:
    package sierra.habbohotel.furniture.interactions;
    
    import java.util.Random;
    
    import sierra.habbo.session.Session;
    import sierra.habbohotel.room.items.floor.FloorItem;
    
    public class DiceAction implements IAction {
    
        @Override
        public void Interact(Session Session, FloorItem Item)
        {
            int Random = new Random().nextInt(6);
            
            Item.ExtraData = String.valueOf(Random);
            Item.sendUpdate(Session);
            Item.saveExtraData();
        }
    }
    Great work... But I think you should be using Secure RNG (Random Number Generator)... See SecureRandom :-) SecureRandom (Java Platform SE 6)

  3. #918
    My title is enabled NeonCrayonz is offline
    MemberRank
    Sep 2010 Join Date
    283Posts

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

    Quote Originally Posted by vBulletin View Post
    So when is this developement actually going to be finished because it all seems to go right as you have currently fixed the dice.
    Don't ask for ETA's. It'll be released when its ready.

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

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

    Updates

    - Merged flooritems and wallitems into one table.
    - Made some methods camelCase when they were accidently PascalCase
    Last edited by Quackster; 06-09-12 at 12:33 PM.

  5. #920
    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

    - Merged flooritems and wallitems into one table.
    - Made some methods camelCase when they were accidently PascalCase
    Awh ;[, I love PascalCase and Object Pascal (DELPHI) why don't you? :(

  6. #921
    topkek amirite?? Leon is offline
    MemberRank
    May 2009 Join Date
    919Posts

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

    Quote Originally Posted by joopie View Post
    Awh ;[, I love PascalCase and Object Pascal (DELPHI) why don't you? :(
    PascalCase for C#
    camelCase for Java

  7. #922
    Banned V for Vendetta is offline
    BannedRank
    Feb 2007 Join Date
    1,809Posts

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

    Quote Originally Posted by Quackster View Post
    Updates

    - Merged flooritems and wallitems into one table.
    - Made some methods camelCase when they were accidently PascalCase
    Keep it going ducky boy!

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

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

    Any updates Alex?

  9. #924
    swagggggg Livar is offline
    MemberRank
    Oct 2008 Join Date
    United KingdomLocation
    2,272Posts

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

    Alex said his PC is at the repairs, so no updates.

  10. #925
    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 Livar View Post
    Alex said his PC is at the repairs, so no updates.
    Yep.

    - It requires the system password for boot up, so the case to be opened up for the password to be reset.
    - Since I dropped my computer, 4 months ago, the case inside broke, so it's at repairs.

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

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

    Quote Originally Posted by Quackster View Post
    Yep.

    - It requires the system password for boot up, so the case to be opened up for the password to be reset.
    - Since I dropped my computer, 4 months ago, the case inside broke, so it's at repairs.
    You don't have to open the case to reset password?! You can just do so from the Windows installation disk.

  12. #927
    Apprentice Jenna Doe is offline
    MemberRank
    Aug 2012 Join Date
    ChinaLocation
    19Posts

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

    Quote Originally Posted by Quackster View Post
    Updates

    - Coded dice



    Code:
    package sierra.habbohotel.furniture.interactions;
    
    import java.util.Random;
    
    import sierra.habbo.session.Session;
    import sierra.habbohotel.room.items.floor.FloorItem;
    
    public class DiceAction implements IAction {
    
    	@Override
    	public void Interact(Session Session, FloorItem Item)
    	{
    		int Random = new Random().nextInt(6);
    		
    		Item.ExtraData = String.valueOf(Random);
    		Item.sendUpdate(Session);
    		Item.saveExtraData();
    	}
    }
    Code:
    package sierra.habbohotel.furniture.interactions;
    
    import java.util.Random;
    
    import sierra.habbo.session.Session;
    import sierra.habbohotel.room.items.floor.FloorItem;
    
    public class DiceAction implements IAction {
    
    	@Override
    	public void Interact(Session Session, FloorItem Item)
    	{
    		int Random = new Random(System.currentTimeMillis()).nextInt(6);
    		
    		Item.ExtraData = String.valueOf(Random);
    		Item.sendUpdate(Session);
    		Item.saveExtraData();
    	}
    }
    You're welcome :)

  13. #928
    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 Hejula View Post
    You don't have to open the case to reset password?! You can just do so from the Windows installation disk.
    It's what my IT guy told me.
    So I'd trust him more than someone over the internet.

  14. #929
    Web & Interaction Design Gangnam is offline
    MemberRank
    Dec 2010 Join Date
    Lincoln, UKLocation
    1,983Posts

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

    Quote Originally Posted by Quackster View Post
    It's what my IT guy told me.
    So I'd trust him more than someone over the internet.
    But a password is software related, not hardware?!

  15. #930
    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 n0minal View Post
    But a password is software related, not hardware?!
    System password.

    Quote Originally Posted by Jenna Doe View Post
    Code:
    package sierra.habbohotel.furniture.interactions;
    
    import java.util.Random;
    
    import sierra.habbo.session.Session;
    import sierra.habbohotel.room.items.floor.FloorItem;
    
    public class DiceAction implements IAction {
    
    	@Override
    	public void Interact(Session Session, FloorItem Item)
    	{
    		int Random = new Random(System.currentTimeMillis()).nextInt(6);
    		
    		Item.ExtraData = String.valueOf(Random);
    		Item.sendUpdate(Session);
    		Item.saveExtraData();
    	}
    }
    You're welcome :)
    What is the difference?



Advertisement