• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

SwiftEMU (fStorm with features + fixes and new headers)

Status
Not open for further replies.
Junior Spellweaver
Joined
Sep 2, 2008
Messages
113
Reaction score
27
Can someone tell me, for what is Packet ID 3443?
If I know it, I would Update the Incoming + Outgoing for this release :)

Little preview:

Incoming.MarketplaceCanSell = 2319;//b Updated by smasher1994
Incoming.MarketplacePostItem = 2316;//b Updated by smasher1994
Incoming.MarketplaceGetOwnOffers = 3836;//b Updated by smasher1994
Incoming.MarketplaceTakeBack = 3080;//b Updated by smasher1994
Incoming.MarketplaceClaimCredits = 2136;//b Updated by smasher1994
Incoming.MarketplaceGetOffers = 2558;//Updated by smasher1994
Incoming.MarketplacePurchase = 2819;//Updated by smasher1994

//Edit
Fixxed the Winows "Rights" under Room Options.
It is now fully functional (Need only the right structure for RemoveRights)
 
Last edited:
Newbie Spellweaver
Joined
Jun 4, 2012
Messages
57
Reaction score
6
Can someone tell me, for what is Packet ID 3443?
If I know it, I would Update the Incoming + Outgoing for this release :)

Little preview:




//Edit
Fixxed the Winows "Rights" under Room Options.
It is now fully functional (Need only the right structure for RemoveRights)

Okay looking good smasher!

Sorry for annoying you guy's but I fixed my cms and emu and swfs to work and I accidentally deleted them, so can somebody fix this error

Recieved message 4000_[4000] BODY: [0]↨CRACKED-BY-FOREX/XANA99
=> 4000
Recieved message 1266_[1266] BODY: [0][0][0][0]
=> 1266

or is it my swfs it's the original from jaydenn and i'm using habbod.swf
 
Ragezone Furni Releaser
Joined
Dec 2, 2012
Messages
918
Reaction score
158
Okay looking good smasher!

Sorry for annoying you guy's but I fixed my cms and emu and swfs to work and I accidentally deleted them, so can somebody fix this error

Recieved message 4000_[4000] BODY: [0]↨CRACKED-BY-FOREX/XANA99
=> 4000
Recieved message 1266_[1266] BODY: [0][0][0][0]
=> 1266

or is it my swfs it's the original from jaydenn and i'm using habbod.swf

This is normal i think.

you get this message on your emu when you come into your client?
 
Newbie Spellweaver
Joined
Jun 4, 2012
Messages
57
Reaction score
6
ok AND I'M USING ILLUMINA CMS

Code:
 <?php

	require_once "required.php";
	
	if(!isset($_GET["novote"]) && $light->thehabbos_enabled) {
		$vote_uri = str_replace('/', '!', WWW);
		header ("Location: http://votingapi.com/vote.php?username=" . $light->thehabbos_username . "&api=" . $vote_uri . "!client?novote");
	}
	
	if(!$users->isLogged()) {
		header ("Location: " . WWW . "/");
	}
	else if($users->userVar(USERNAME, 'acc_pornbanned') == 1) {
		header ("Location: http://meatspin.com/");
	}
	else if(isset($_GET["e"])) {
		$e = $db->real_escape_string($_GET["e"]);
		if($e == "flash_client_error") {
			echo "<font face='verdana> <center> <b>" . $light->site_name . " - Client Error</b><hr>";
			if($light->flash_client_dump) {
				foreach($_POST as $key => $val) {
					echo $key . "=" . $val . " . <br />";
				}
			}
		}
		exit;
	}
	else if(!isset($_SESSION["Pincode_Passed"]) && $users->userVar(USERNAME, 'rank') >= 6) {
		header ("Location: " . WWW . "/client_denied");
	}
	else if($users->userVar(USERNAME, 'acc_pornbanned')) {
		header ("Location: http://meatspin.com/");
	}
	
	$sso = $users->genSSO();
	
	$db->real_query("UPDATE users SET ip_last = '" . $_SERVER["REMOTE_ADDR"] . "', auth_ticket = '" . $sso . "' WHERE id = '" . USER_ID . "'");
	
	if($light->server_type == "Butterfly") {
		$check = $db->lnumrows("SELECT null FROM user_tickets WHERE userid = '" . USER_ID . "'");
		if($check > 0) {
			$db->real_query("UPDATE user_tickets SET sessionticket = '" . $sso . "', ipaddress = '" . $_SERVER["REMOTE_ADDR"] . "' WHERE userid = '" . USER_ID . "'");
		}
		else {
			$db->real_query("INSERT INTO user_tickets (userid, sessionticket, ipaddress) VALUES ('" . USER_ID . "', '" . $sso . "', '" . $_SERVER["REMOTE_ADDR"] . "')");
		}
	}
	
	$tpl->assign('connection_info_host', $light->connection_info_host);
	$tpl->assign('connection_info_port', $light->connection_info_port);
	$tpl->assign('variables', $light->variables);
	$tpl->assign('texts', $light->texts);
	$tpl->assign('override_texts', $light->override_texts);
	$tpl->assign('productdata', $light->productdata);
	$tpl->assign('furnidata', $light->furnidata);
	$tpl->assign('baseurl', $light->baseurl);
	$tpl->assign('habbo_swf', $light->habbo_swf);
	$tpl->assign('loadingtext', $light->loadingtext);
	$tpl->assign('sso', $sso);
	$tpl->draw('client');
	
?>
 
Ragezone Furni Releaser
Joined
Dec 2, 2012
Messages
918
Reaction score
158
ok AND I'M USING ILLUMINA CMS

Code:
 <?php

	require_once "required.php";
	
	if(!isset($_GET["novote"]) && $light->thehabbos_enabled) {
		$vote_uri = str_replace('/', '!', WWW);
		header ("Location: http://votingapi.com/vote.php?username=" . $light->thehabbos_username . "&api=" . $vote_uri . "!client?novote");
	}
	
	if(!$users->isLogged()) {
		header ("Location: " . WWW . "/");
	}
	else if($users->userVar(USERNAME, 'acc_pornbanned') == 1) {
		header ("Location: http://meatspin.com/");
	}
	else if(isset($_GET["e"])) {
		$e = $db->real_escape_string($_GET["e"]);
		if($e == "flash_client_error") {
			echo "<font face='verdana> <center> <b>" . $light->site_name . " - Client Error</b><hr>";
			if($light->flash_client_dump) {
				foreach($_POST as $key => $val) {
					echo $key . "=" . $val . " . <br />";
				}
			}
		}
		exit;
	}
	else if(!isset($_SESSION["Pincode_Passed"]) && $users->userVar(USERNAME, 'rank') >= 6) {
		header ("Location: " . WWW . "/client_denied");
	}
	else if($users->userVar(USERNAME, 'acc_pornbanned')) {
		header ("Location: http://meatspin.com/");
	}
	
	$sso = $users->genSSO();
	
	$db->real_query("UPDATE users SET ip_last = '" . $_SERVER["REMOTE_ADDR"] . "', auth_ticket = '" . $sso . "' WHERE id = '" . USER_ID . "'");
	
	if($light->server_type == "Butterfly") {
		$check = $db->lnumrows("SELECT null FROM user_tickets WHERE userid = '" . USER_ID . "'");
		if($check > 0) {
			$db->real_query("UPDATE user_tickets SET sessionticket = '" . $sso . "', ipaddress = '" . $_SERVER["REMOTE_ADDR"] . "' WHERE userid = '" . USER_ID . "'");
		}
		else {
			$db->real_query("INSERT INTO user_tickets (userid, sessionticket, ipaddress) VALUES ('" . USER_ID . "', '" . $sso . "', '" . $_SERVER["REMOTE_ADDR"] . "')");
		}
	}
	
	$tpl->assign('connection_info_host', $light->connection_info_host);
	$tpl->assign('connection_info_port', $light->connection_info_port);
	$tpl->assign('variables', $light->variables);
	$tpl->assign('texts', $light->texts);
	$tpl->assign('override_texts', $light->override_texts);
	$tpl->assign('productdata', $light->productdata);
	$tpl->assign('furnidata', $light->furnidata);
	$tpl->assign('baseurl', $light->baseurl);
	$tpl->assign('habbo_swf', $light->habbo_swf);
	$tpl->assign('loadingtext', $light->loadingtext);
	$tpl->assign('sso', $sso);
	$tpl->draw('client');
	
?>
I see no errors


Your database is not compatible with your emulator
 
Not so spooky...
Loyal Member
Joined
May 22, 2010
Messages
1,017
Reaction score
276
Hey dose anyone have a clean database iv'e tried the bcstorm_leensters_edition.sql
But it screws up when uploading,

and iv;e just spent the last 4 hours attempting to fix it I managed to get rid of all the errors,
but i'm still not able to create rooms or anything!

And it keeps saying sql error but I don't see any at all.

So if anyone has a clean db please link me up!
 
Newbie Spellweaver
Joined
May 3, 2012
Messages
73
Reaction score
3
The button Buy gifts is disabled how do i activate it again?
 
Newbie Spellweaver
Joined
May 3, 2012
Messages
73
Reaction score
3
When i want to buy something i press buy button then it ask me to cancel and buy. When i press buy again it doens't buy? Can someone help me? (confirm Purchase)
 
Junior Spellweaver
Joined
May 14, 2009
Messages
130
Reaction score
23
Hey dose anyone have a clean database iv'e tried the bcstorm_leensters_edition.sql
But it screws up when uploading,

and iv;e just spent the last 4 hours attempting to fix it I managed to get rid of all the errors,
but i'm still not able to create rooms or anything!

And it keeps saying sql error but I don't see any at all.

So if anyone has a clean db please link me up!

Disable strict mode in your MySQL settings.
 
Ragezone Furni Releaser
Joined
Dec 2, 2012
Messages
918
Reaction score
158
i need a emulator with fixed ads_background

upload it please
 
Last edited:
Newbie Spellweaver
Joined
May 3, 2012
Messages
73
Reaction score
3
When i want to buy something i press buy button then it ask me to cancel and buy. When i press buy again it doens't buy? Can someone help me? (confirm Purchase)
 
Experienced Elementalist
Joined
Apr 25, 2012
Messages
222
Reaction score
35
if i buy a item, and i relog, then the item is gone, if u set a furni in a room, i reload the room, the furni is gone...

fix please?
 
Junior Spellweaver
Joined
Sep 2, 2008
Messages
113
Reaction score
27
#Added ChangeName :)

JaydenC - SwiftEMU (fStorm with features + fixes and new headers) - RaGEZONE Forums
 
Status
Not open for further replies.
Back
Top