Re: [SOURCE] BcStorm - The whole caboodle.
Quote:
Originally Posted by
Dovis
Error criticalexceptions :
....
1 day , I have 300 Players
Are you serious? Wrong thread! Use the help thread for this!
http://forum.ragezone.com/f333/offic...thread-902373/
Re: [SOURCE] BcStorm - The whole caboodle.
Quote:
Originally Posted by
leenster
Fix for stream images:
First add this to your htaccess
PHP Code:
RewriteRule ^habbo-imaging/head/([^/]+) /habbo-imaging/head.php?figure=$1
In GameClientMessageHandler.cs find
PHP Code:
if (((int) row["Type"]) == 0)
{
message.AppendString("http://habteen.com/heads/look.gif");
}
Replace that with
PHP Code:
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 Code:
private void GiveAllOnlineCredits(int amount)
Above that add
PHP Code:
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 Code:
<?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);
$fn = md5(microtime()."head").".png";
imagealphablending($image,false);
imagesavealpha($image,true);
imagepng($image);
imagedestroy($image);
?>
In your emulator configuration
PHP Code:
stream.link=http://YOUR_URL/habbo-imaging/avatarimage.php?figure=
http://hubbahubba.no-ip.biz/downloads/screens/head.png
lol i can't find this;
PHP Code:
if (((int) row["Type"]) == 0)
{
message.AppendString("http://habteen.com/heads/look.gif");
}
in GameClientMessageHandler.cs which line?
Re: [SOURCE] BcStorm - The whole caboodle.
sorry habteen.com = localhost
updated the other post...
Re: [SOURCE] BcStorm - The whole caboodle.
Quote:
Originally Posted by
FlyHotel
lol i can't find this;
PHP Code:
if (((int) row["Type"]) == 0)
{
message.AppendString("http://habteen.com/heads/look.gif");
}
in GameClientMessageHandler.cs which line?
Try:
if (((int)row["Type"]) == 0)
Quote:
Originally Posted by
leenster
In your emulator configuration
PHP Code:
stream.link=http://YOUR_URL/habbo-imaging/avatarimage.php?figure=
And in Emulator Config:
stream.link=http://YOUR_URL/habbo-imaging/head/
1 Attachment(s)
Re: [SOURCE] BcStorm - The whole caboodle.
Does anyone know how to fix this?
I think it is something in the swf.
Attachment 121223
Re: [SOURCE] BcStorm - The whole caboodle.
Quote:
Originally Posted by
FlyHotel
lol i can't find this;
PHP Code:
if (((int) row["Type"]) == 0)
{
message.AppendString("http://habteen.com/heads/look.gif");
}
in GameClientMessageHandler.cs which line?
In this void: "internal void InitStream()"
Some colors aren't working with badges like purple and the colors for group furni are sometimes the wrong colors you chose when you created the group.
Re: [SOURCE] BcStorm - The whole caboodle.
nice leen thanks! appreaciate the help
Re: [SOURCE] BcStorm - The whole caboodle.
Quote:
Originally Posted by
XiFy
For the last time, everybody use the help thread provided by James in the Habbo help section to stop you from receiving a infection and from stop this thread from getting closed.
It's infraction not infection XD
I also made a thread so that everyone can find all the fixes that where posted in this thread
Re: [SOURCE] BcStorm - The whole caboodle.
Leen, can u please send me ur two files of gameclient and messenger.. im getting errors debuging .
Re: [SOURCE] BcStorm - The whole caboodle.
Quote:
Originally Posted by
Squashing
@Jordynegen
Trade's works :)
It's disabled at my hotel? huh? 0__O?
Re: [SOURCE] BcStorm - The whole caboodle.
Quote:
Originally Posted by
jordynegen11
It's disabled at my hotel? huh? 0__O?
Sorry but for me works very fine!
Re: [SOURCE] BcStorm - The whole caboodle.
Quote:
Originally Posted by
FlyHotel
How can you add custom jukebox songs?
In table "songs" have the data for you make your custom song!
#Edit
I have fixed the:
Roller and Rugs bug;
:lay command (The user does not will anymore to out of room!).
And now i will beggin to fix the doorbell ^^
Re: [SOURCE] BcStorm - The whole caboodle.
Can you please release he scripts so we can add it? Instead of your own edit, because I have made a few changes of my own :/
Re: [SOURCE] BcStorm - The whole caboodle.
Agree with DDOS ATTACK Because that's better :$
Re: [SOURCE] BcStorm - The whole caboodle.
Like I said, I want to at least fix some more things for me to disclose