are you going to release the fixes one by one or are you going to release your EMU edit with the fixes?
Printable View
*Action Sit; (FIXED)
*Sign Fix; (FIXED)
Those 2 are already fixed?
http://s20.postimage.org/67xy1ffmz/fxo.png
Make 1 Thread with all Fixes posted. It's hard to search fixes on the 28 pages.
And i can't forget to fix the parameter '@name' of user_pets ...
Can those submitting updates post the updates here instead of compiling it into a new source, helps those working on their own edits. :) Thanks :)
@Jordynegen
Trade's works :)
nice the thrand more fixes ^^
Dude. Spoiler tag that next time, I hate having to scroll through crap :(
well we diden't need all of the expections. little snippets would be nice.. took me a year to get down here to post
Fix for stream images:
First add this to your htaccess
In GameClientMessageHandler.cs findPHP Code:RewriteRule ^habbo-imaging/head/([^/]+) /habbo-imaging/head.php?figure=$1
Replace that withPHP Code:if (((int) row["Type"]) == 0)
{
message.AppendString("http://localhost/heads/look.gif");
}
In GameClientManager.cs findPHP Code:if (((int)row["Type"]) == 0)
{
string im = ButterflyEnvironment.StreamLink + ButterflyEnvironment.GetGame().GetClientManager().GetLookById(Convert.ToUInt32(row["FriendId"])) + ".gif";
message.AppendString((string)im);
}
Above that addPHP Code:private void GiveAllOnlineCredits(int amount)
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
In your emulator configurationPHP 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);
imagealphablending($image,false);
imagesavealpha($image,true);
imagepng($image);
imagedestroy($image);
?>
http://hubbahubba.no-ip.biz/downloads/screens/head.pngPHP Code:stream.link=http://YOUR_URL/habbo-imaging/head.php?figure=
leenster Very Nice :thumbup: