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

Page 15 of 103 FirstFirst ... 578910111213141516171819202122232565 ... LastLast
Results 211 to 225 of 1536
  1. #211
    Developer Quackster is offline
    DeveloperRank
    Dec 2010 Join Date
    AustraliaLocation
    3,476Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Recoded profile and fixed it where it says friend or not, or request sent. I retrieved the right structure :)



    But no idea why the figure won't load. It loads when you enter a room :(

    Quote Originally Posted by jomp16 View Post
    How do I turn on the emulator SierraJAVA?

    Import project for NetBeans?
    Install JDK. Download Eclipse. Import the project. Read the README.txt file (move config into /bin everytime you open Eclipse) and then press run.. euh

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

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    You need to add the jdbc driver into your class path.
    @Alex, use a build system, preferably maven if you want to automate libraries and stuff
    Posted via Mobile Device

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

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Cool updates Man, Keep it up.

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

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Catalogue Stocked. Used Phoenix's db tables (catalogue_items, furniture).



    Added new spaces layout. With the new items.

    Last edited by Quackster; 31-03-12 at 04:37 AM.

  5. #215
    Enthusiast Futurama is offline
    MemberRank
    Mar 2012 Join Date
    33Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by Quackster View Post
    Catalogue Stocked. Used Phoenix's db tables (catalogue_items, furniture).



    Added new spaces layout. With the new items.

    Mate, Are you going to relase these ? As in cms.

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

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    It's going to check your ranks by this now. Because I'm cool like that.

    Code:
    	public Boolean IsAdmin()
    	{
    		return Rank == 6 ? true : false;
    	}
    	public Boolean IsModerator()
    	{
    		return Rank == 5 ? true : false;
    	}
    	public Boolean IsTrainee()
    	{
    		return Rank == 4 ? true : false;
    	}
    	public Boolean IsVIP()
    	{
    		return Rank == 3 ? true : false;
    	}
    	public Boolean IsHC()
    	{
    		return Rank == 2 ? true : false;
    	}
    	public Boolean IsNormal()
    	{
    		return Rank == 1 ? true : false;
    	}
    	public Boolean IsBanned()
    	{
    		return Rank == 0 ? true : false;
    	}
    Quote Originally Posted by Futurama View Post
    Mate, Are you going to relase these ? As in cms.
    https://github.com/QuacksterNET/SierraCMS

  7. #217
    lol Disguised is offline
    MemberRank
    Jan 2011 Join Date
    521Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Awesome Alex. Keep it up man! :)

  8. #218
    Calm yo tits. TashiaLurvesYou is offline
    MemberRank
    Nov 2011 Join Date
    PhilippinesLocation
    474Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    OMFG(:
    goodluck with the project
    sexy....

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

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by Quackster View Post
    It's going to check your ranks by this now. Because I'm cool like that.

    Code:
    	public Boolean IsAdmin()
    	{
    		return Rank == 6 ? true : false;
    	}
    	public Boolean IsModerator()
    	{
    		return Rank == 5 ? true : false;
    	}
    	public Boolean IsTrainee()
    	{
    		return Rank == 4 ? true : false;
    	}
    	public Boolean IsVIP()
    	{
    		return Rank == 3 ? true : false;
    	}
    	public Boolean IsHC()
    	{
    		return Rank == 2 ? true : false;
    	}
    	public Boolean IsNormal()
    	{
    		return Rank == 1 ? true : false;
    	}
    	public Boolean IsBanned()
    	{
    		return Rank == 0 ? true : false;
    	}


    https://github.com/QuacksterNET/SierraCMS

    PHP Code:
        public Boolean IsAdmin()
        {
            return 
    Rank == 6;
        }
        public 
    Boolean IsModerator()
        {
            return 
    Rank == 5;
        }
        public 
    Boolean IsTrainee()
        {
            return 
    Rank == 4;
        }
        public 
    Boolean IsVIP()
        {
            return 
    Rank == 3;
        }
        public 
    Boolean IsHC()
        {
            return 
    Rank == 2;
        }
        public 
    Boolean IsNormal()
        {
            return 
    Rank == 1;
        }
        public 
    Boolean IsBanned()
        {
            return 
    Rank == 0;
        } 
    Is a conditional statement really needed?

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

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by Makarov View Post
    PHP Code:
        public Boolean IsAdmin()
        {
            return 
    Rank == 6;
        }
        public 
    Boolean IsModerator()
        {
            return 
    Rank == 5;
        }
        public 
    Boolean IsTrainee()
        {
            return 
    Rank == 4;
        }
        public 
    Boolean IsVIP()
        {
            return 
    Rank == 3;
        }
        public 
    Boolean IsHC()
        {
            return 
    Rank == 2;
        }
        public 
    Boolean IsNormal()
        {
            return 
    Rank == 1;
        }
        public 
    Boolean IsBanned()
        {
            return 
    Rank == 0;
        } 
    Is a conditional statement really needed?
    Didn't know you could do that in JAVA.

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

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Yeah you can.. Think of it as an if statement(which is a boolean). If you return an "if" statement it's going to return a true/false value relative to the statement.

  12. #222
    Custom Title Enabled James is offline
    LegendRank
    Jan 2007 Join Date
    DenverLocation
    2,288Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    You could always store ranks in a Dictionary with fuse rights =p or you could use an array, which would be kinda silly, or you could use properties like above =p

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

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by James View Post
    You could always store ranks in a Dictionary with fuse rights =p or you could use an array, which would be kinda silly, or you could use properties like above =p
    Or bitpermissions =3

  14. #224
    Account Upgraded | Title Enabled! Pure is offline
    MemberRank
    May 2008 Join Date
    809Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by joopie View Post
    Or bitpermissions =3
    They are called BitFields.

  15. #225
    hi i'm robbie Roper is offline
    MemberRank
    Oct 2008 Join Date
    /home/roperLocation
    2,283Posts

    re: Sierra [R63, JAVA, MySQL (JDBC), Netty]

    Quote Originally Posted by Nathe View Post
    and how do I start the emulator?
    Compile and run the executable.



Advertisement