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

Page 86 of 103 FirstFirst ... 3676787980818283848586878889909192939496 ... LastLast
Results 1,276 to 1,290 of 1536
  1. #1276
    Retired lRetros is offline
    MemberRank
    Mar 2011 Join Date
    Madrid, SpainLocation
    289Posts

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

    Quote Originally Posted by Quackster View Post
    It's not my database. :D

    And also the download for the "10MB" file is 140 KB and it's a virus with a 10MB text file or whatever.

    Well how to say.. the worse thing is that everyday the people is making copyied and faked threads stealing the work of people like you to trying "to be one of the best community members" LOL.. That's why rarely i visit the section, i know only with the name of the authors which threads won't make me lose the time.

    Thanks for the reply and i think he should add in the thread title [FAKE]

    PD: The thread has two likes, Congratulations for the poor and noob thief for the fake! LOOL
    Last edited by lRetros; 09-03-13 at 01:35 AM.

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

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

    Sometimes I wonder what kind of idiot moderates KekoMundo.

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

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

    Been seriously demotivated on this project. I've been sick, got exams, assignments, but it's nearly over.

    I might clean up the source and make some parts easier for people to edit.
    Last edited by Quackster; 18-03-13 at 10:31 AM.

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

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

    I told you to make changlelogs, BITCH!!

  5. #1280
    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 AWA View Post
    I told you to make changlelogs, BITCH!!
    I don't make them because I am disorganized. :)

  6. #1281
    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
    Been seriously demotivated on this project. I've been sick, got exams, assignments, but it's nearly over.

    I might clean up the source and make some parts easier for people to edit.
    Tip: if you want to help people and let them use your emulator as a base / to learn, include database :)

    Good luck with your remaining school things and hope you'll get well soon.

  7. #1282
    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
    Tip: if you want to help people and let them use your emulator as a base / to learn, include database :)

    Good luck with your remaining school things and hope you'll get well soon.
    I am better, don't worry.

    Updates

    - Welcome user added with last login working! :)



    - Recoded my packet handling so it's easier for me to develop. For example if you have a fields like (for changing clothes as an example)

    Code:
    	
    public String Sex;
    public String Figure;
    The request class will read in order depending on what type the field is. Integer, boolean or string.

    Snip-snip:

    Code:
    			for (Field field : message.getClass().getFields())
    			{
    				if (field.getType() == Boolean.class)
    					field.setBoolean(message, Request.readBoolean());
    
    				if (field.getType() == String.class)
    					field.set(message, Request.readString());
    
    				if (field.getType() == Integer.class)
    					field.setInt(message, Request.readInt());
    			}

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

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

    Quote Originally Posted by Quackster View Post
    I am better, don't worry.

    Updates

    - Welcome user added with last login working! :)



    - Recoded my packet handling so it's easier for me to develop. For example if you have a fields like (for changing clothes as an example)

    Code:
    	
    public String Sex;
    public String Figure;
    The request class will read in order depending on what type the field is. Integer, boolean or string.

    Snip-snip:

    Code:
    			for (Field field : message.getClass().getFields())
    			{
    				if (field.getType() == Boolean.class)
    					field.setBoolean(message, Request.readBoolean());
    
    				if (field.getType() == String.class)
    					field.set(message, Request.readString());
    
    				if (field.getType() == Integer.class)
    					field.setInt(message, Request.readInt());
    			}
    Looking better :D

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

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

    Explain to me the benefits of your new system dealing with your request class? :P

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

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

    Quote Originally Posted by Quackster View Post
    Code:
                for (Field field : message.getClass().getFields())
                {
                    if (field.getType() == Boolean.class)
                        field.setBoolean(message, Request.readBoolean());
    
                    if (field.getType() == String.class)
                        field.set(message, Request.readString());
    
                    if (field.getType() == Integer.class)
                        field.setInt(message, Request.readInt());
                }
    :o, why did I never thought about that?! (Sarcasm)

    Quote Originally Posted by Makarov View Post
    Explain to me the benefits of your new system dealing with your request class? :P
    Readability?
    Last edited by Joopie; 21-03-13 at 04:51 PM.

  11. #1286
    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 Makarov View Post
    Explain to me the benefits of your new system dealing with your request class? :P
    Uniqueness.

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

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

    No one cares what you think Cobe.

    Updates

    - Finished updating all classes for the new packet handling. (I finished it ages ago, just telling everyone)
    Last edited by Quackster; 21-03-13 at 03:51 AM.

  13. #1288
    Custom Title Enabled James is online now
    LegendRank
    Jan 2007 Join Date
    DenverLocation
    2,288Posts

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

    Next to go off-topic will receive an infraction, stop fighting.

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

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

    Updates

    - Finally updated my source on GitHub (https://github.com/Quackster/Sierra)
    - Allowances are no longer hardcoded.




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

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

    Quote Originally Posted by Quackster View Post
    Updates

    - Finally updated my source on GitHub (https://github.com/Quackster/Sierra)
    - Allowances are no longer hardcoded.



    Very nice Quackster,

    Only I dont like that style of rights. But it's your choice. And when the stable release is I will use it.
    So I still wish you goodluck. Finally a emulator for Linux in R63B! =D

    Greetz,



Advertisement