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

Page 58 of 103 FirstFirst ... 848505152535455565758596061626364656668 ... LastLast
Results 856 to 870 of 1536
  1. #856
    Apprentice Torgeirp3 is offline
    MemberRank
    Aug 2012 Join Date
    13Posts

    Re: Yay for changing titles!


  2. #857
    beep Bui is offline
    MemberRank
    Jan 2012 Join Date
    United KingdomLocation
    459Posts

    Re: Yay for changing titles!

    Quote Originally Posted by Torgeirp3 View Post
    It changed.

    https://github.com/Quackster/Sierra

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

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

    Test hotel

    Click here! (:

  4. #859
    Valued Member NetVibeNet is offline
    MemberRank
    Jul 2012 Join Date
    Brisbane, AUSLocation
    117Posts

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

    Quackster ~ Hello, is your EMU up and Running now. Plus is it Phoenix Database compatible aswell ?

  5. #860
    Account Upgraded | Title Enabled! Harrison is offline
    MemberRank
    Mar 2009 Join Date
    417Posts

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

    Quote Originally Posted by NetVibeNet View Post
    Quackster ~ Hello, is your EMU up and Running now. Plus is it Phoenix Database compatible aswell ?
    The emulator isn't exactly suitable for live hotels, you can never know what would happen.

    If you don't mind missing out on features like wired, moderation tools and stuff like that then go ahead.

    It isn't compatible with the Phoenix database either, only the catalog from what I can see.

  6. #861
    fak Dysfunctional is offline
    MemberRank
    Jul 2012 Join Date
    AustraliaLocation
    391Posts

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

    Offtopic: Heard you made some Bukkit Plugins, If so what were they called?

    Ontopic: Was on the hotel, got disconnected. Now I cant get back on.
    Last edited by Dysfunctional; 21-08-12 at 03:04 PM.

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

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

    Aww yiss. Running smoothly!



    Quote Originally Posted by Inadequate View Post
    Offtopic: Heard you made some Bukkit Plugins, If so what were they called?

    Ontopic: Was on the hotel, got disconnected. Now I cant get back on.
    Question 1) I've made private ones but I've released bProtect (block protect)

    2) You're online?!!?

  8. #863
    Enthusiast Structured is offline
    MemberRank
    Aug 2012 Join Date
    29Posts

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

    Good to see the test hotel is back, I forgot my password to my email and to my ragezone account for Garrison so this will be my username... but while I been away on ragezone... I have been watching Alex... neaten his code up and save errors to make it run better so that was good (Y)... good to see you doing great stuff to the emulator... nearly all basics are done... and OMG the drinks thing is sooo sexy!

  9. #864
    Member Reimu is offline
    MemberRank
    Aug 2012 Join Date
    62Posts

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

    I've been following Sierra quite closely and it's looking great. I wish you the best of luck with your project, Quackster!

  10. #865
    Valued Member Harmonic is offline
    MemberRank
    Jun 2012 Join Date
    149Posts

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

    Pathfinder needs fixing asap Quackster, the issue results in quite buggy walking (clicking another square while moving causes glitching.)

  11. #866
    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 Harmonic View Post
    Pathfinder needs fixing asap Quackster, the issue results in quite buggy walking (clicking another square while moving causes glitching.)
    That's quite funny because I was going to post updates about my improvements of the pathfinder..

    --

    Updates

    - Fixed search crashing.
    - You can now cleanly change to another title. The hotel has been updated. Thanks to Goir for teaching me about the FutureTask method.

    Code:
    package sierra.habbohotel.room.threading;
    
    import java.util.Iterator;
    import java.util.List;
    import java.util.concurrent.FutureTask;
    
    import sierra.habbo.session.Session;
    import sierra.habbohotel.furniture.FurnitureWalkOn;
    import sierra.habbohotel.pathfinder.Coord;
    import sierra.habbohotel.pathfinder.Rotation;
    import sierra.habbohotel.room.flooritems.FloorItem;
    
    public class WalkUser implements Runnable
    {
    	private Session Session;
    	private List<Coord> it;
    	private FutureTask<?> Task;
    
    	public WalkUser(Session Session, List<Coord> it)
    	{
    		this.Session = Session;
    		this.it = it;
    	}
    
    	public void setTask(FutureTask<?> Task) {
    		this.Task = Task;
    	}
    
    	@Override
    	public void run() {
    		try{
    
    			Iterator<?> iterator = it.iterator();
    
    			while (iterator.hasNext() && Session.getRoomUser().isWalking())
    			{
    				Coord Next = (Coord)iterator.next();
    
    				if(Next.X == Session.getRoomUser().getModel().getDoorX() && Next.Y == Session.getRoomUser().getModel().getDoorY()) {
    					Session.getRoomUser().getRoom().LeaveRoom(true, false, Session);
    				}
    
    				Session.getRoomUser().getStatus().clear();
    
    				int Rot = Rotation.Calculate(Session.getRoomUser().getX(), Session.getRoomUser().getY(), Next.X, Next.Y);
    				Session.getRoomUser().setBodyRotation(Rot);
    
    				Session.getRoomUser().getStatus().put("mv", String.valueOf(Next.X).concat(",").concat(String.valueOf(Next.Y)).concat(",").concat(String.valueOf(Session.getRoomUser().getModel().getSquareHeight()[Next.X][Next.Y])));
    				Session.getRoomUser().updateStatus();
    
    				Session.getRoomUser().setX(Next.X);
    				Session.getRoomUser().setY(Next.Y);
    				Session.getRoomUser().setHeight(Session.getRoomUser().getModel().getSquareHeight()[Next.X][Next.Y]);
    				Session.getRoomUser().setIsWalking(true);
    
    				Thread.sleep(500);
    
    				List<FloorItem> Items = Session.getRoomUser().getRoom().getItemListByCoords(Session.getRoomUser().getX(), Session.getRoomUser().getY());
    
    				for (FloorItem Item : Items)
    				{
    					Session.getRoomUser().getStatus().clear();
    					
    					if (!FurnitureWalkOn.walkedOnItem(Item, Session))
    						stop(false);
    				}
    
    				if (Session.getRoomUser().getGoalX() == Next.X && Session.getRoomUser().getY() == Next.Y && Session.getRoomUser().isWalking()) {
    					stop(true);
    					break;
    				}
    			}
    		}
    		catch(Exception e)
    		{
    		}
    	}
    
    	public void stop(Boolean Cancel)
    	{
    		Session.getRoomUser().setIsWalking(false);
    		Session.getRoomUser().getStatus().remove("mv");
    		Session.getRoomUser().updateStatus();
    
    		if (Cancel)
    			Task.cancel(true);
    	}
    }

  12. #867
    Enthusiast CobraKills is offline
    MemberRank
    Aug 2012 Join Date
    27Posts

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

    Could you, push the least updates too github.

    Thanks Alex

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

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

    Quote Originally Posted by Quackster View Post
    Aww yiss. Running smoothly!

    look at all them wannabe developers.... :D

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

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

    Updates

    - Pathfinder now has a thread pool.
    - Instead of FutureTask it's own ScheduledFuture.

    The pathfinder has a minor bug of only walking 1 square when it should walk the whole distance. I'll fix it later.

  15. #870
    Enthusiast CobraKills is offline
    MemberRank
    Aug 2012 Join Date
    27Posts

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

    Every updates you do, do you push them to github?



Advertisement