-
FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
change all mensajes of header 2
Catalog.cs: Session.GetMessageH andler().GetResponse().Init(2);
Catalog.cs: Session.GetMessageH andler().GetResponse().Init(2);
GameClient.cs: GetMessageHandler().GetResponse().Init(2);
... etc..
add 1 AppendInt32(1); ..
example:
in Login(string AuthTicket)
before:
Code:
GetMessageHandler().GetResponse().Init(2);
GetMessageHandler().GetResponse().AppendInt32(Rights.Count);
foreach (string Right in Rights)
{
GetMessageHandler().GetResponse().AppendStringWithBreak(Right);
}
GetMessageHandler().SendResponse();
after:
Code:
GetMessageHandler().GetResponse().Init(2);
GetMessageHandler().GetResponse().AppendInt32(1);
GetMessageHandler().GetResponse().AppendInt32(Rights.Count);
foreach (string Right in Rights)
{
GetMessageHandler().GetResponse().AppendStringWithBreak(Right);
}
GetMessageHandler().SendResponse();
now working the hc .. and others stuff
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
thx for this fix, I'll test it
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Right this is my fix :
PHP Code:
GetMessageHandler().GetResponse().Init(2);
if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP
{
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(2);
GetMessageHandler().GetResponse().AppendInt32(0);
}
else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
{
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(1);
GetMessageHandler().GetResponse().AppendInt32(0);
}
else
{
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0);
}
GetMessageHandler().SendResponse();
HC works / VIP Works and normal users works.
Have fun;)
---------- Post added at 07:20 PM ---------- Previous post was at 07:19 PM ----------
to explain it :
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0); // status users (HC = 1 VIP = 2 )
GetMessageHandler().GetResponse().AppendInt32(0);
Give me thanks if u like IT hehe:p soz:]
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
vista4life
Right this is my fix :
PHP Code:
GetMessageHandler().GetResponse().Init(2);
if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP
{
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(2);
GetMessageHandler().GetResponse().AppendInt32(0);
}
else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
{
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(1);
GetMessageHandler().GetResponse().AppendInt32(0);
}
else
{
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0);
}
GetMessageHandler().SendResponse();
HC works / VIP Works and normal users works.
Have fun;)
---------- Post added at 07:20 PM ---------- Previous post was at 07:19 PM ----------
to explain it :
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0); // status users (HC = 1 VIP = 2 )
GetMessageHandler().GetResponse().AppendInt32(0);
Give me thanks if u like IT hehe:p soz:]
Mhm I think your Fix is better than the other.
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
habbo don't send fuse_XXXX anymore :] they use now that status :] it's better to still load the fuse_rights because it's safer :] habbo just don't send it because (i guess) it's faster then i big list at the begin hehe (less sql:] Finaly<3)
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
vista4life
Right this is my fix :
PHP Code:
GetMessageHandler().GetResponse().Init(2);
if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP
{
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(2);
GetMessageHandler().GetResponse().AppendInt32(0);
}
else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
{
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(1);
GetMessageHandler().GetResponse().AppendInt32(0);
}
else
{
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0);
}
GetMessageHandler().SendResponse();
HC works / VIP Works and normal users works.
Have fun;)
---------- Post added at 07:20 PM ---------- Previous post was at 07:19 PM ----------
to explain it :
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0); // status users (HC = 1 VIP = 2 )
GetMessageHandler().GetResponse().AppendInt32(0);
Give me thanks if u like IT hehe:p soz:]
your code is bad...
use my code..
the fuse flags still exist
Quote:
Originally Posted by
vista4life
habbo don't send fuse_XXXX anymore :] they use now that status :] it's better to still load the fuse_rights because it's safer :] habbo just don't send it because (i guess) it's faster then i big list at the begin hehe (less sql:] Finaly<3)
:O
mmm..
may be true, I just look habbo.es and use the flags fuse, in habbo.com use the flags fuse?
Give me a minute to enter. com and watch the packets
EDIT:
:o
NEW VERSION
RELEASE63-31731-31713-201102222307_864d9aa0509a3cb820e3150650731a52
in habbo.es the fix work.. in habbo.com.. wait me few minutes
EDIT...
@BHHH{1}
yes
3 params
I wonder which are each
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Huh, so which Code is actually better??
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
DarkBreakX
Huh, so which Code is actually better??
My code is for RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892
habbo.com now release
RELEASE63-31731-31713-201102222307_864d9aa0509a3cb820e3150650731a52
the code published
Code:
GetMessageHandler().GetResponse().Init(2);
if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP
{
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(2);
GetMessageHandler().GetResponse().AppendInt32(0);
}
else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
{
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(1);
GetMessageHandler().GetResponse().AppendInt32(0);
}
else
{
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0);
}
GetMessageHandler().SendResponse();
works in habbo.com..
but not is 100%
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
off topic: i search a coder for my phpretro r63 i can login in client but i must set the auth ticket and ip_last everytime by myself can anyone add me on msn or send me a pm
msn: stefangrims@hotmail.com
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
It's not really "clean".
Better would be:
Code:
GetMessageHandler().GetResponse().Init(2);
GetMessageHandler().GetResponse().AppendInt32(0);
if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP
GetMessageHandler().GetResponse().AppendInt32(2);
else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
GetMessageHandler().GetResponse().AppendInt32(1);
else
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().SendResponse();
Reduced from 22 lines to 12 :P
If you never need to change the other values then you should do it like this.
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
Bifi2000
It's not really "clean".
Better would be:
Code:
GetMessageHandler().GetResponse().Init(2);
GetMessageHandler().GetResponse().AppendInt32(0);
if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP
GetMessageHandler().GetResponse().AppendInt32(2);
else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
GetMessageHandler().GetResponse().AppendInt32(1);
else
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().SendResponse();
Reduced from 22 lines to 12 :P
If you never need to change the other values then you should do it like this.
like i said i give people temp coding to let them understand how it works so they can read much easyer there alot of beginners in this new world so they will not 100% understand that code :P
and yes that code is better i use that too :p
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
3 codes -.-'Witch one is better??
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
Miggs
3 codes -.-'Witch one is better??
read messages -.-"
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
Bifi2000
It's not really "clean".
Better would be:
Code:
GetMessageHandler().GetResponse().Init(2);
GetMessageHandler().GetResponse().AppendInt32(0);
if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP
GetMessageHandler().GetResponse().AppendInt32(2);
else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
GetMessageHandler().GetResponse().AppendInt32(1);
else
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().SendResponse();
Reduced from 22 lines to 12 :P
If you never need to change the other values then you should do it like this.
Nice code
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
What's new in; RELEASE63-31731-31713-201102222307_864d9aa0509a3cb820e3150650731a52 ??
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Nice fix, but I prefer vista's
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
Bifi2000
It's not really "clean".
Better would be:
Code:
GetMessageHandler().GetResponse().Init(2);
GetMessageHandler().GetResponse().AppendInt32(0);
if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP
GetMessageHandler().GetResponse().AppendInt32(2);
else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
GetMessageHandler().GetResponse().AppendInt32(1);
else
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().GetResponse().AppendInt32(0);
GetMessageHandler().SendResponse();
Reduced from 22 lines to 12 :P
If you never need to change the other values then you should do it like this.
Don't works here :( how to resolve?
(i need to use new swfs)?
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
GuikBretas
Don't works here :( how to resolve?
(i need to use new swfs)?
Give me a moment to see the new packets
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Resolved, i have downloaded AutoUpdateVersion and updated my SWFs, :D
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
so any good reason to update swf's or should i just wait?
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
iPixelHotel
What's new in; RELEASE63-31731-31713-201102222307_864d9aa0509a3cb820e3150650731a52 ??
What's New SWF[²] ?
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
iPixelHotel
What's new in; RELEASE63-31731-31713-201102222307_864d9aa0509a3cb820e3150650731a52 ??
New fuse packets...
with this code..
if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP
GetMessageHandler().GetResponse().AppendInt32(2);
else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
GetMessageHandler().GetResponse().AppendInt32(1);
else
GetMessageHandler().GetResponse().AppendInt32(0);
will you have working vip clothes and dances..
GetMessageHandler().GetResponse().AppendInt32(1); HC
GetMessageHandler().GetResponse().AppendInt32(2);VIP
GetMessageHandler().GetResponse().AppendInt32(0); Normal user
and if you have fuse_furni_chooser (a hc addon)
you will have
GetMessageHandler().GetResponse().AppendInt32(1);
but i didn't know how you're making an emulator and dont know wat this code does or how to create a masscredits command.
Your emu is een fcking renaming, and you're realy a newb
---------- Post added at 08:14 PM ---------- Previous post was at 08:10 PM ----------
Oh, Nice to see your packets it's really usefull
Keep it up!
Are you also on Kekomundo?
It's a cool forum but the emu's are mostly closed source and thas its really shitty.(not because i'm a renamer but because i will have some snippets...)
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
Richardjuhh
New fuse packets...
with this code..
if (GetHabbo().HasFuse("fuse_use_vip_outfits")) // VIP
GetMessageHandler().GetResponse().AppendInt32(2);
else if (GetHabbo().HasFuse("fuse_furni_chooser")) // HC
GetMessageHandler().GetResponse().AppendInt32(1);
else
GetMessageHandler().GetResponse().AppendInt32(0);
will you have working vip clothes and dances..
GetMessageHandler().GetResponse().AppendInt32(1); HC
GetMessageHandler().GetResponse().AppendInt32(2);VIP
GetMessageHandler().GetResponse().AppendInt32(0); Normal user
and if you have fuse_furni_chooser (a hc addon)
you will have
GetMessageHandler().GetResponse().AppendInt32(1);
but i didn't know how you're making an emulator and dont know wat this code does or how to create a masscredits command.
Your emu is een fcking renaming, and you're realy a newb
---------- Post added at 08:14 PM ---------- Previous post was at 08:10 PM ----------
Oh, Nice to see your packets it's really usefull
Keep it up!
Are you also on Kekomundo?
It's a cool forum but the emu's are mostly closed source and thas its really shitty.(not because i'm a renamer but because i will have some snippets...)
Teach me how to get packets from habbo?
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Where do I put the code?...
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
/facepalm
Read the main post idiot.
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Confusing to be honest, which ones better?
Either way, i guess you gave it your best shot
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
kiddoidao3d
Teach me how to get packets from habbo?
using a packetlogger,..
---------- Post added at 03:53 PM ---------- Previous post was at 03:50 PM ----------
Quote:
Originally Posted by
muscab
Confusing to be honest, which ones better?
Either way, i guess you gave it your best shot
Vista4life's one is the same as Bifi2000 but Bifi2000 is the more clean than Maarten's one
o. And sorry for my bad english
at my school i have a bad teacher too,
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
Richardjuhh
using a packetlogger,..[COLOR="Silver"]
Yes, but has a different code to convert to C #?
Please there a tutorial? I spend too thank your help!
-Marlon Colhado
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
PEjump2
/facepalm
Read the main post idiot.
1. Come up with a new insult. /facepalm is old now.
2. I have, but there are like, 10 different codes, and I dont know which one to use.
3. I have no idea where to put it. If I have put it in the right place, then it doesn't work for me.
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
kiddoidao3d
Yes, but has a different code to convert to C #?
Please there a tutorial? I spend too thank your help!
-Marlon Colhado
Ugh, read Nillus coding guide posted in the Development section and you will understand it abit ( After reading it multiple times ).
---------- Post added at 06:52 PM ---------- Previous post was at 06:50 PM ----------
Quote:
Originally Posted by
Mikehunt
1. Come up with a new insult. /facepalm is old now.
2. I have, but there are like, 10 different codes, and I dont know which one to use.
3. I have no idea where to put it. If I have put it in the right place, then it doesn't work for me.
1. Got any suggestions? :P
2. Use vista4life's.
3. Inside the GameClient thingie or something like that.
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
Quote:
Originally Posted by
kiddoidao3d
Yes, but has a different code to convert to C #?
Please there a tutorial? I spend too thank your help!
-Marlon Colhado
I think you'd better make a v14 because than you haven't change the packets code :D
---------- Post added at 06:59 PM ---------- Previous post was at 06:57 PM ----------
Quote:
Originally Posted by
DarkBreakX
Huh, so which Code is actually better??
And you coded a Server?
---------- Post added at 07:17 PM ---------- Previous post was at 06:59 PM ----------
Quote:
Originally Posted by
kiddoidao3d
Yes, but has a different code to convert to C #?
Please there a tutorial? I spend too thank your help!
-Marlon Colhado
Thats what we call 'coding'
---------- Post added at 07:19 PM ---------- Previous post was at 07:17 PM ----------
Quote:
Originally Posted by
PEjump2
Ugh, read Nillus coding guide posted in the Development section and you will understand it abit ( After reading it multiple times ).[COLOR="Silver"]
Thats true and i dont understand it too :P
could you translate it to Dutch?
---------- Post added at 07:20 PM ---------- Previous post was at 07:19 PM ----------
Quote:
Originally Posted by
Mikehunt
1. Come up with a new insult. /facepalm is old now.
Yes Thats true :D
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
@Richardjuhh if you can't even understand a simple post by Nillus you shouldn't try to code a server from scratch at all.
If you'r just trying to understand the packet proccessing etc, add me on msn and i'll help you later.
pejump@live.nl
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
I update this post because a lots of users need this fix (PEjump2 swf pack!)
-
Re: FIX fuse RELEASE63-31605-31594-201102162307_676ce1dc5ef8871e16a3af28d7323892)
i got a issue on my hotel clothes dont load at all and when people buy furni when u open inventory it dosent work. it says the inventory is empy! buy furni or w.e
any fixes for it?