Sick. Could'nt you do a early release? :iYou must be registered for see links
Yes, he said it would work with the latest used revision (not like the most latest, but the ones that's cracked).This will work with the new habbo shiz?
It will support the new versions. But someone will have to crack the swfs. I'm just using a simple hosts file trick to use the swfs.Yes, he said it would work with the latest used revision (not like the most latest, but the ones that's cracked).
Thanks, also i think it's been a month and something.Ok, how long have you been workin on this? and have a nice trip
Ok thanks i reckon from what i i found out so far ( where your up to ) i reckon maybe another month or so i dunno never coded before hopefully i can somedayIt will support the new versions. But someone will have to crack the swfs. I'm just using a simple hosts file trick to use the swfs.
Thanks, also i think it's been a month and something.
Almost done the login.
Sorry for lack of updates.
I have been getting ready for my holiday to L.A next sunday.
Finally my shitty notebook can come into use. I can take my notebook and code for like 7 hours on the plane [since i have xampp i can test without internet connection required]
Using Wichards TCP Sockets [Will Explain later]
Packet Session Recoded to support new socket framework.
Began on the new Login [Crypto Based]
Coding the Databasetype system still. [It fully functions but needs to be coded better [Currently Hardcoded] ].
Gonna get a website for Rev Projects. [CMS and Emulator] Basically will have a demo of both the products.
Cheers,
Zak
looks epicFind you a layout? I design them myself, no need to copy paste stuff. I think I have a template that I was making for something else lying around.
EDIT:
What do you think of this one:
You must be registered for see links
I can implement navigation. Originally I made this for another emulator project, which didn't get done. But I changed the texts for this purpose.
using RevEmu.Messages.Composers;
using RevEmu.rSockets.TCP;
namespace RevEmu.Messages.Storage
{
internal class SecretKeyEvent : IMessageSessionEvent
{
public int Id()
{
return 206;
}
public void Invoke(TCPSession session)
{
session.SendPacketSession(PacketSession.RegisterSession(typeof(SecretKeyComposer)));
}
}
}
using RevEmu.rMessage;
namespace RevEmu.Messages.Composers
{
class SecretKeyComposer : IMessageRegister
{
public Sm RegisterSession()
{
var message = new Sm(257);
message.AppendInt(9);
message.AppendInt(0);
message.AppendInt(0);
message.AppendInt(1);
message.AppendInt(1);
message.AppendInt(3);
message.AppendInt(0);
message.AppendInt(2);
message.AppendInt(1);
message.AppendInt(4);
message.AppendInt(0);
message.AppendInt(5);
message.AppendString("dd-MM-yyyy");
message.AppendInt(7);
message.AppendBool(false);
message.AppendInt(8);
message.AppendString("hotel-co.uk");
message.AppendInt(9);
message.AppendBool(false);
return message;
}
}
}
using System;
using System.Linq;
using RevEmu.rMessage;
namespace RevEmu.Messages
{
class PacketSessionRegisterHandler
{
public static Sm RegisterSession(Type session)
{
if (!session.GetInterfaces().Contains(typeof(IMessageRegister)))
{
return new Sm(0);
}
var getPacketSession = (session.GetConstructor(new Type[] { }).Invoke(new object[] { }) as IMessageRegister);
return getPacketSession.RegisterSession();
}
}
}