iLOG
Hello and welcome to this thread!
A couple of weeks ago, i started coding an habboscripting-app.
And this came from it..
Hope you like it!
What tehf00k is this?
iLOG is an habbo "scripting" application..
iLOG can log the packets off all the habbo-hotel (Retro's NOT supported)
iLOG is coded in C#
Coding snippets
How to log users in
How to log users outPHP Code:habbo.Hotel = "co.uk";
String[] errors = habbo.Login("Username", "Password");
if (errors != null) // Checks if there are errors.
{
foreach (String error in errors) MessageBox.Show(error);
}
else
// Okay, now we will display that the user is logged in
MessageBox.Show("Succes!");
Register accounts whit bunnyPHP Code:habbo.Logout(); // Just logs the user out. :)
Addings tagsPHP Code:Random rand = new Random();
int RandomNumber = rand.Next();
int AnotherRandomNumber = rand.Next();
habbo.Hotel = (textBox6.Text);
String[] errors = habbo.Register((textBox3.Text), GenderCode.M, "lol123", "hd-205-1.ch-210-62.lg-270-62.sh-295-62.fa-1211-", "hiddenuser@hotmail.com", DateTime.Parse("1991-01-01"), false); // Settings
if (errors != null)
{
foreach (String error in errors) MessageBox.Show(error);
}
else
{
MessageBox.Show("Success!"); // Show's that the registring is succes.
habbo.AddTag("robke"); // Adding the tag 'Robke'
String myMotto = habbo.Motto;
habbo.Motto = "Robke"; // Sets mission
habbo.Logout(); // Logs the user out
}
Setting new mottoPHP Code:if (habbo.IsLoggedIn)
{
habbo.AddTag("Hello"); // Adding the tag "Hello"
}
else
{
return; // If the user isnt logged in, then return.
}
Join groupsPHP Code:if (habbo.IsLoggedIn)
{
String myMotto = habbo.Motto;
habbo.Motto = ("New motto"); // Sets motto to 'New motto'
}
else
{
return; // If the user isnt logged in, then return
}
Leaving groupsPHP Code:if (habbo.IsLoggedIn)
{
habbo.JoinGroup("1337"); // Joins the group '1337'
}
else
{
return;
}
Removing tagsPHP Code:if (habbo.IsLoggedIn)
{
habbo.LeaveGroup("1337"); // Leave's group '1337'
}
else
{
return;
}
How to send something to the server/clientPHP Code:if (habbo.IsLoggedIn)
{
habbo.RemoveTag("Hello"); // Removes tag "Hello"
}
else
{
return;
}
How to change the portPHP Code:if (habbo.IsLoggedIn)
{
habbo.SendClient("@Bfuse_habbo_chooser" + ((Char)2).ToString() + "fuse_furni_chooser" + ((Char)2).ToString()); // This code is an example, this will send furni & chooser.
}
else
{
return;
}
-------------------------------------------------------------------PHP Code:if (habbo.IsLoggedIn)
{
habbo.Port = 1337;
}
else
{
return;
}
iLOG uses the Bunny class, Bunny is a class written by Dinnerbone.
The class worked for v22 to v26 on the habbo hotel,
Then the flash client came, and bunny could connect to the normal hotel anymore..
So i recoded the class, and now it DOES work :).
Sending packets to the client
Yes whit the bunny class, it is possible..
Would send a alert whit the text iLOG.PHP Code:if (habbo.IsLoggedIn)
{
habbo.SendClient("BKiLOG") + ((Char)2).ToString() + ((Char)1).ToString());
}
else
{
return;
}
Screens
Download & Virusscan
Clicky - Download
Clicky - Virusscan
------------------------------------------------------------------------
And thats all,
Packetsending is possible is the next version..
It is allready possible to send packets to the client/server.
But because the app = console, its not easy. :)
------------------------------------------------------------------------
Good luck with it!
- Robke!




![[REL] iLOG // The revolution of packetlogging!](http://ragezone.com/hyper728.png)


