I'll add the ability to disable / enable pixels in future.
Can't wait for Sierra, probably the only officially updated emulator since Holograph :P Can't wait Alex, you're doing great!
Hey, just wanted to fork and commit, but i found out, that there are about 90 Errors?! Did I fork a dev built and you planned to fix that or did I perhaps misconfigure something?
(Buildpath is correct)
I need to clear the repository and reupload everything since I've renamed a lot of files etc. But I'm new to Git so I don't know how to clear a repository apart from deleting it and making it again.
Updates
- So I have my feature planned out. If you choose to disable credits, all sales in catalogue that were pixels will cost as credits (this will make no change to the database)
Updates
- Added change wall item state as I was missing the header...
I have a super-seekrit method of getting headers that I forget to packet log 8)
Awesome dude
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(); } }
Damn you This developement is getting better everyday very jealous although i thought that Dices would already automatic work but that's obviously me being stupid.