Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[SOURCE] BcStorm - The whole caboodle.

Status
Not open for further replies.
Banned
Banned
Joined
May 6, 2009
Messages
531
Reaction score
165
I will post the following fixs:
*Action Sit;
*Sign Fix;
*Navigator Fix;
*Help Tool;
*Freeze;
*Rooms Invisible;
*Stream.

But to post these fixs, I need to finish fixing others, as:
*BattleBall;
*Groups;
*Rooms.

I'm focusing more on fixing the rooms, they are very important ... If you have any bugs or errors to fix, let me know I'll put on my to do list.
 
Joined
Oct 11, 2012
Messages
544
Reaction score
143
I will post the following fixs:
*Action Sit;
*Sign Fix;
*Navigator Fix;
*Help Tool;
*Freeze;
*Rooms Invisible;
*Stream.

But to post these fixs, I need to finish fixing others, as:
*BattleBall;
*Groups;
*Rooms.

I'm focusing more on fixing the rooms, they are very important ... If you have any bugs or errors to fix, let me know I'll put on my to do list.

You sir are a legend :)


 
Experienced Elementalist
Joined
Jul 12, 2011
Messages
272
Reaction score
51
Anyone Fixed bots ive done some to code but when i put one in the room i cant enter it again does my heading :p
 
Experienced Elementalist
Joined
Jun 7, 2012
Messages
244
Reaction score
27
I will post the following fixs:
*Action Sit;
*Sign Fix;
*Navigator Fix;
*Help Tool;
*Freeze;
*Rooms Invisible;
*Stream.

But to post these fixs, I need to finish fixing others, as:
*BattleBall;
*Groups;
*Rooms.

I'm focusing more on fixing the rooms, they are very important ... If you have any bugs or errors to fix, let me know I'll put on my to do list.

are you going to release the fixes one by one or are you going to release your EMU edit with the fixes?
 
Joined
Apr 27, 2011
Messages
569
Reaction score
80
*Action Sit; (FIXED)
*Sign Fix; (FIXED)

Those 2 are already fixed?

Leon - [SOURCE] BcStorm - The whole caboodle. - RaGEZONE Forums
 
Banned
Banned
Joined
May 6, 2009
Messages
531
Reaction score
165
are you going to release the fixes one by one or are you going to release your EMU edit with the fixes?
One by one for ^^

*Action Sit; (FIXED)
*Sign Fix; (FIXED)

Those 2 are already fixed?

Action Sit: In Menu Bar of Habbo have one option for sit.. I fixed this...
Sign: The sign keeps popping up all the time.. I fixed this too..
 
Junior Spellweaver
Joined
Jan 19, 2011
Messages
119
Reaction score
5
Make 1 Thread with all Fixes posted. It's hard to search fixes on the 28 pages.
 
Junior Spellweaver
Joined
Jun 29, 2012
Messages
143
Reaction score
187
Can those submitting updates post the updates here instead of compiling it into a new source, helps those working on their own edits. :) Thanks :)
 
Experienced Elementalist
Joined
Jun 7, 2012
Messages
244
Reaction score
27
One by one for ^^



Action Sit: In Menu Bar of Habbo have one option for sit.. I fixed this...
Sign: The sign keeps popping up all the time.. I fixed this too..

mind releasing this little fix xD
 
Joined
Apr 24, 2007
Messages
644
Reaction score
157
I will post the following fixs:
*Action Sit;
*Sign Fix;
*Navigator Fix;
*Help Tool;
*Freeze;
*Rooms Invisible;
*Stream.

But to post these fixs, I need to finish fixing others, as:
*BattleBall;
*Groups;
*Rooms.

I'm focusing more on fixing the rooms, they are very important ... If you have any bugs or errors to fix, let me know I'll put on my to do list.

Good Job :D. Can't wait for your release :)

What's the problem with BattleBall, Rooms and Groups exactly ?

EDIT: Another Bug not fixed to do. Can't turn on/off Lights WallItem. Think the packet header is missing.
 
Last edited:
Junior Spellweaver
Joined
Jun 29, 2012
Messages
143
Reaction score
187
Dude. Spoiler tag that next time, I hate having to scroll through crap :(
 
Experienced Elementalist
Joined
Jun 7, 2012
Messages
244
Reaction score
27
well we diden't need all of the expections. little snippets would be nice.. took me a year to get down here to post
 
[̲̅$̲̅(̲̅1̲̅)̲̅$ ̲̅]
Joined
May 4, 2008
Messages
831
Reaction score
741
Fix for stream images:

First add this to your htaccess
PHP:
RewriteRule ^habbo-imaging/head/([^/]+) /habbo-imaging/head.php?figure=$1

In GameClientMessageHandler.cs find
PHP:
if (((int) row["Type"]) == 0)
                {
                    message.AppendString("http://localhost/heads/look.gif");
                }

Replace that with
PHP:
if (((int)row["Type"]) == 0)
                {
                    string im = ButterflyEnvironment.StreamLink + ButterflyEnvironment.GetGame().GetClientManager().GetLookById(Convert.ToUInt32(row["FriendId"])) + ".gif";
                    message.AppendString((string)im);
                }

In GameClientManager.cs find

PHP:
private void GiveAllOnlineCredits(int amount)

Above that add
PHP:
internal string GetLookById(uint Id)
        {
            using (IQueryAdapter adapter = ButterflyEnvironment.GetDatabaseManager().getQueryreactor())
            {
                adapter.setQuery("SELECT look FROM users WHERE id = " + Id);
                return adapter.getString();
            }
        }


In Habbo-Imaging create a file called head.php and put this PHP code in there
PHP:
<?php
header('Content-Type: image/gif');

$figure = str_replace(".gif","",$_GET['figure']);
$url = 'http://habbo.com/habbo-imaging/avatarimage?figure='.$figure;

$image = imagecreatetruecolor(64, 60);
imagealphablending($image, false);
$col=imagecolorallocatealpha($image,255,255,255,127);
imagefilledrectangle($image,0,0,485, 500,$col);
imagealphablending($image,true);

$img_avatar = imagecreatefrompng($url);
imagecopyresampled($image, $img_avatar, 0, 0, 0, 0, 64, 60, 64, 60);
imagealphablending($image,true);

imagealphablending($image,false);
imagesavealpha($image,true);

imagepng($image);
imagedestroy($image);

?>

In your emulator configuration
PHP:
stream.link=http://YOUR_URL/habbo-imaging/head.php?figure=

Leon - [SOURCE] BcStorm - The whole caboodle. - RaGEZONE Forums
 
Last edited:
Status
Not open for further replies.
Back
Top