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

Page 79 of 103 FirstFirst ... 2969717273747576777879808182838485868789 ... LastLast
Results 1,171 to 1,185 of 1536
  1. #1171
    Run, but I'll find you. Ddos Attack is offline
    MemberRank
    Jan 2011 Join Date
    AustraliaLocation
    908Posts

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

    Quote Originally Posted by Quackster View Post
    Updates

    - Added invitations

    Oh and of course...

    **ONE YEAR SINCE THIS DEVELOPMENT HAS BEEN MADE**
    Aww :)
    You started the development on my birthday. <3

  2. #1172
    Account Upgraded | Title Enabled! JaydenC is offline
    MemberRank
    Feb 2012 Join Date
    993Posts

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

    Quote Originally Posted by Ddos Attack View Post
    Aww :)
    You started the development on my birthday. <3
    happy birthday?

  3. #1173
    Run, but I'll find you. Ddos Attack is offline
    MemberRank
    Jan 2011 Join Date
    AustraliaLocation
    908Posts

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

    Quote Originally Posted by jaydenn View Post
    happy birthday?
    Thank you :)

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

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

    Quote Originally Posted by Ddos Attack View Post
    Aww :)
    You started the development on my birthday. <3
    8th of April?

  5. #1175
    Account Upgraded | Title Enabled! JaydenC is offline
    MemberRank
    Feb 2012 Join Date
    993Posts

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

    Quote Originally Posted by Quackster View Post
    8th of April?
    February 8th

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

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

    Quote Originally Posted by jaydenn View Post
    February 8th
    Oops I don't know where I got April from. I have a lot on my mind at the moment. :P

  7. #1177
    Run, but I'll find you. Ddos Attack is offline
    MemberRank
    Jan 2011 Join Date
    AustraliaLocation
    908Posts

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

    Quote Originally Posted by Quackster View Post
    Oops I don't know where I got April from. I have a lot on my mind at the moment. :P
    owut D:
    Its the 9th for me - my birthday.
    Lol @ timezones ;)

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

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

    Quote Originally Posted by Ddos Attack View Post
    owut D:
    Its the 9th for me - my birthday.
    Lol @ timezones ;)
    I go by +0 GMT for dates. It was still 8th of February in England.

    Updates

    - Started work on mod tool.

    I still need to load user info add send caution.


  9. #1179
    Alpha Member Emily is offline
    MemberRank
    Oct 2012 Join Date
    The NetherlandsLocation
    2,408Posts

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

    Quote Originally Posted by Quackster View Post
    I go by +0 GMT for dates. It was still 8th of February in England.

    Updates

    - Started work on mod tool.

    I still need to load user info add send caution.

    I have a feeling your timestamp int is wrong, but good job :-)

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

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

    Quote Originally Posted by Tha View Post
    I have a feeling your timestamp int is wrong, but good job :-)
    Nope.

    Even made it hardcoded and it still showed the time on my computer
    Last edited by Quackster; 09-02-13 at 11:07 PM.

  11. #1181
    Alpha Member Emily is offline
    MemberRank
    Oct 2012 Join Date
    The NetherlandsLocation
    2,408Posts

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

    Quote Originally Posted by Quackster View Post
    Nope.

    Even made it hardcoded and it still showed the time on my computer

    No one likes little whiners.
    Your int is wrong if it just shows your computer time.

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

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

    Quote Originally Posted by Tha View Post
    Your int is wrong if it just shows your computer time.
    Code:
            Calendar c = Calendar.getInstance();
            c.setTimeInMillis(milli);
            
            this.Hour =  c.get(Calendar.HOUR);
            this.Minute = c.get(Calendar.MINUTE);
            
        }
    
        public void Serialize(Response packet)
        {
            packet.appendInt32(this.Hour);
            packet.appendInt32(this.Minute);
            packet.appendString(this.username);
            packet.appendString(this.message);
        }
    millis is Calendar.getInstance().getTimeInMillis();

    It's all working fine. It's the client - not me. I didn't ask for your help.

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

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

    Updates

    - Coded user info, with working time.


  14. #1184
    Keep your head up. FlyHotel is offline
    MemberRank
    Apr 2011 Join Date
    The NetherlandsLocation
    570Posts

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

    Quote Originally Posted by Quackster View Post
    Updates

    - Coded user info, with working time.

    Nice Alex, good job :)

  15. #1185
    Lurking around Clawed is offline
    MemberRank
    Jun 2012 Join Date
    RaGEZONELocation
    785Posts

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

    Quote Originally Posted by Quackster View Post
    Updates

    - Coded user info, with working time.

    You can do that on other EMU's just gotta insert the right time function :P
    Nice work :)



Advertisement