
Originally Posted by
Makarov
So let me get this straight..
Grizzly is based on Sierra even though..
- Our communication system is completely different..
Sierra: Sierra.getSocketFactory().getMessageHandler().sessionInvokePacket(Session, Request, LoadMyCredits.class);
Grizzly: Session.sendResponse(SendCreditsComposer.compose(Session.getHabbo().getCredits()));
- Our catalog's are completely polar
Sierra: Uses the basic, washed up switch casing; https://github.com/Quackster/Sierra/...ShopPages.java
Grizzly: Parses the correct header/texts of every page.
- Grizzly has a plether of features compared to sierra
Stream, Trading, Wired, etc. etc.
- The header count is off
Sierra: Maybe 70 - 110
Grizzly: 180+
- Storage Handling is also different. Though we both use BoneCP.
- I couldn't have copied his queries because He uses PreparedStatements and I do not.
Oh, and before we go saying alex is pure and shit..
https://github.com/Quackster/Sierra/...oadMyData.java
As you can clearly see.. he copied/pasted a whole block of code from BCStorm into his project, Who's the ripper now? :/
Your InitializeCatalogPageEvent is sloppy...
PHP Code:
switch(Page.Layout.toString())
{
case "frontpage":
What are you? Old and have no clue how to work with it? Look at how I do it.
PHP Code:
Message.pushInt(Page.getHeaders().length);
for (String Header : Page.getHeaders())
{
Message.pushString(Header);
}
Message.pushInt(Page.getBodies().length);
for (String Body : Page.getBodies())
{
Message.pushString(Body);
}
And it's easy to change some little code but use code as a base, so basically it CAN still be based on Sierra.