Re: Grizzly Source Code [Java, RELEASE63-201302071600-466653663]
Quote:
Originally Posted by
joopie
What has revisions to do with this? Its just a bunch of header ids....
Well then tell me how it's 50% sierra, even thought grizzly has way more features? o.o
I would love to hear this lol.
Re: Grizzly Source Code [Java, RELEASE63-201302071600-466653663]
Quote:
Originally Posted by
mikkelfriis
Yeah, actually you should. As Cobe is selling this, it's a worthy leak. He's selling it because he needs money. And he have changed, since he was a moderator. He was that guy that hated Aaron, for selling Phoenix, though he's the one that's selling emulators now.
Yeah bruh!!! Definitely when all he has to do is finish it and he can sell the completed emulator while fucks like you are stuck with the incomplete one!!!
Re: Grizzly Source Code [Java, RELEASE63-201302071600-466653663]
Coded friend stream when its removed by Sulake now. Haahhh~
Whys everyone hating? Everyone loves when stuff leaks for free. Half of you always bash paying for emulators and now that Cobe is selling one you're all up his ass. News flash he isn't MOD so you don't have to pretend to be his friend anymore!
Re: Grizzly Source Code [Java, RELEASE63-201302071600-466653663]
what can i install to run the emulator?
Re: Grizzly Source Code [Java, RELEASE63-201302071600-466653663]
I would buy it if it was all compleet !
Re: Grizzly Source Code [Java, RELEASE63-201302071600-466653663]
Quote:
Originally Posted by
Quackster
Just wondering why you credited me, anyway nice release!
Cobe obviously copied and pasted his work from someone, I guess you're the lucky guy! I mean coming from a PHP expert who thinks MySQLi was only developed for prepared statements, and a guy who thinks pointers are pointless (he "learned C++ in 1 whole day"). It's hardly surprising. Anyway I don't see a 'point' in this server either.
Re: Grizzly Source Code [Java, RELEASE63-201302071600-466653663]
Quote:
Originally Posted by
SkeetEmUp
Coded friend stream when its removed by Sulake now. Haahhh~
Whys everyone hating? Everyone loves when stuff leaks for free. Half of you always bash paying for emulators and now that Cobe is selling one you're all up his ass. News flash he isn't MOD so you don't have to pretend to be his friend anymore!
yeah this server is still shit none the less, the base code is good but not even his.
this is how he probably made this server, took the headers + packets from fStorm or a revision of bcstorm then took alexes code from git, pathetic.
still looks good (But its not cobes so every1 stfu)
Re: Grizzly Source Code [Java, RELEASE63-201302071600-466653663]
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? :/
Re: Grizzly Source Code [Java, RELEASE63-201302071600-466653663]
Quote:
Originally Posted by
Makarov
//bullshit
who said it was all sierras? you can mix & match cant you
Re: Grizzly Source Code [Java, RELEASE63-201302071600-466653663]
If you're so smart, show me the copied code ^.^
Re: Grizzly Source Code [Java, RELEASE63-201302071600-466653663]
Quote:
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.
Re: Grizzly Source Code [Java, RELEASE63-201302071600-466653663]
Quote:
Originally Posted by
Tha
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.
LOL at this :3
Re: Grizzly Source Code [Java, RELEASE63-201302071600-466653663]
Quote:
Originally Posted by
Tha
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.
deleted