-
Swf v63 + Crazzy Emulador
Well I am come to send tolomeotti swf v63.2 ...
All credits to Team Crazzy, Marlon Colhado and Programmer EC
Page Client
Code:
<body id="client" class="flashclient">
<script type="text/javascript">
var habboDefaultClientPopupUrl = "%www%/client";
</script>
<noscript>
<meta http-equiv="refresh" content="0;url=%www%/client/nojs" />
</noscript>
<script type="text/javascript">
FlashExternalInterface.loginLogEnabled = true;
FlashExternalInterface.logLoginStep("web.view.start");
if (top == self) {
FlashHabboClient.cacheCheck();
}
var flashvars = {
"client.allow.cross.domain" : "1",
"client.notify.cross.domain" : "0",
"connection.info.host" : "IP YOU SERVER",
"connection.info.port" : "PORT YOU SERVER",
"site.url" : "%www%",
"url.prefix" : "%www%",
"client.reload.url" : "%www%/account/reauthenticate?page=/flash_client",
"client.fatal.error.url" : "%www%/flash_client_error",
"client.connection.failed.url" : "%www%/client_connection_failed",
"external.hash" : "",
"external.variables.txt" : "http://swfs.host.crazzy.com.br/swf/r63.2/gamedata/external_variables.txt",
"external.texts.txt" : "http://swfs.host.crazzy.com.br/swf/r63.2/gamedata/external_flash_texts/ba89ecbe6d71bb4194177e36a33e14fe9a5344c8.txt",
"productdata.load.url" : "http://swfs.host.crazzy.com.br/swf/r63.2/gamedata/productdata.txt",
"furnidata.load.url" : "http://swfs.host.crazzy.com.br/swf/r63.2/gamedata/furnidata.txt",
"use.sso.ticket" : "1",
<?php
if ($forwardType > 0)
{
echo ' "forward.type" : "' . $forwardType . '",' . LB;
echo ' "forward.id" : "' . $forwardId . '",' . LB;
}
?>
"sso.ticket" : "%sso_ticket%",
"processlog.enabled" : "0",
"account_id" : "0",
"client.starting" : "Por favor aguarde! O Habbo está carregando...",
"flash.client.url" : "%flash_client_url%",
"user.hash" : "",
"facebook.user" : "0",
"has.identity" : "0",
"flash.client.origin" : "popup"
};
var params = {
"base" : "%flash_base%",
"allowScriptAccess" : "always",
"menu" : "false"
};
if (!(HabbletLoader.needsFlashKbWorkaround())) {
params["wmode"] = "opaque";
}
FlashExternalInterface.signoutUrl = "%www%/account/logout";
var clientUrl = "%flash_base%CrazzY.swf";
swfobject.embedSWF(clientUrl, "flash-container", "100%", "100%", "9.0.115", "http://images.habbo.com/habboweb/%web_build%/web-gallery/flash/expressInstall.swf", flashvars, params);
</script>
<div id="overlay"></div>
<div id="client-ui" >
<div id="flash-wrapper">
<div id="flash-container">
<div id="content" style="width: 400px; margin: 20px auto 0 auto; display: none">
<div class="cbb clearfix">
<h2 class="title">Por favor instale o Adobe Flash Player.</h2>
<div class="box-content">
<p>Você pode instalar e baixar o Adobe Flash Player aqui: <a href="http://get.adobe.com/flashplayer/">Instale o flash player</a>. Mais instruções para a instalação podem ser encontrados aqui: <a href="http://www.adobe.com/products/flashplayer/productinfo/instructions/">Mais informações</a></p>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://images.habbo.com/habboweb/%web_build%/web-gallery/v2/images/client/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
</div>
</div>
</div>
<script type="text/javascript">
$('content').show();
</script>
<noscript>
<div style="width: 400px; margin: 20px auto 0 auto; text-align: center">
<p>Se você não for redirecionado automaticamente, por favor <a href="/client/nojs">clique aqui</a></p>
</div>
</noscript>
</div>
</div>
<div id="content" class="client-content"></div>
</div>
<div style="display: none">
<div id="habboCountUpdateTarget">
%hotel_status%
</div>
<script language="JavaScript" type="text/javascript">
setTimeout(function() {
HabboCounter.init(600);
}, 20000);
</script>
</div>
<script type="text/javascript">
RightClick.init("flash-wrapper", "flash-container");
</script>
</body>
</html>
Client
Code:
<?php
/*=======================================================================
| Dayvso CMS - Leve sistema local para CMS
| #######################################################################
| Copyright (c) 2011, By 'dayvson1112'
| #######################################################################
| Este programa é software livre: você pode redistribuí-lo e / ou modificar
| Lo sob os termos da GNU General Public License como publicado pela
| A Free Software Foundation, tanto a versão 3 da Licença, ou
| (em sua opção) qualquer versão posterior.
| #######################################################################
| Este programa é distribuído na esperança que possa ser útil,
| mas SEM NENHUMA GARANTIA, nem mesmo a garantia implícita de
| COMERCIALIZAÇÃO ou ADEQUAÇÃO PARA UM DETERMINADO PROPÓSITO. Veja o
| GNU General Public License para mais detalhes.
\======================================================================*/
define('HIDE_FEEDBACK', true);
require_once "global.php";
require_once "inc/class.rooms.php";
if (!LOGGED_IN)
{
header("Location: " . WWW. "/login_popup");
exit;
}
$forwardType = 0;
$forwardId = 0;
if ($users->getUserVar(USER_ID, 'newbie_status') == "0")
{
if (isset($_GET['createRoom']) && is_numeric($_GET['createRoom']))
{
$roomId = RoomManager::CreateRoom(USER_NAME . "'s room", USER_NAME, 'model_s');
switch (intval($_GET['createRoom']))
{
default:
case 0:
RoomManager::PaintRoom($roomId, '1701', '601');
break;
case 1:
RoomManager::PaintRoom($roomId, '607', '111');
break;
case 2:
RoomManager::PaintRoom($roomId, '1901', '301');
break;
case 3:
RoomManager::PaintRoom($roomId, '1801', '110');
break;
case 4:
RoomManager::PaintRoom($roomId, '503', '104');
break;
case 5:
RoomManager::PaintRoom($roomId, '804', '107');
break;
}
//die('createRoom Result: ' . $roomId);
dbquery("UPDATE users SET home_room = '" . $roomId . "', newbie_status = '1' WHERE id = '" . USER_ID . "' LIMIT 1");
//$forwardType = 2;
//$forwardId = $roomId;
}
else
{
header("Location: " . WWW . "/client?createRoom=" . rand(0, 5));
exit;
}
}
else if (isset($_GET['forwardType']) && isset($_GET['forwardId']) && is_numeric($_GET['forwardType']) && is_numeric($_GET['forwardId']))
{
$forwardType = intval($_GET['forwardType']);
$forwardId = intval($_GET['forwardId']);
if ($forwardType >= 3 || $forwardType <= 0)
{
return;
}
}
$users->CheckSSO(USER_ID);
$tpl->Init();
$tpl->AddGeneric('head-init');
$tpl->AddIncludeSet('default');
$tpl->AddIncludeFile(new IncludeFile('text/css', 'http://images.habbo.com/habboweb/%web_build%/web-gallery/v2/styles/habboclient.css', 'stylesheet'));
$tpl->AddIncludeFile(new IncludeFile('text/css', 'http://images.habbo.com/habboweb/%web_build%/web-gallery/v2/styles/habboflashclient.css', 'stylesheet'));
$tpl->AddIncludeFile(new IncludeFile('text/javascript', 'http://images.habbo.com/habboweb/%web_build%/web-gallery/static/js/habboflashclient.js'));
$tpl->WriteIncludeFiles();
$tpl->AddGeneric('head-bottom');
$client = new Template('page-client');
$client->SetParam('page_title', ' ');
$client->SetParam('sso_ticket', $users->GetUserVar(USER_ID, 'auth_ticket', false));
$client->SetParam('flash_base', 'http://swfs.host.crazzy.com.br/swf/r63.2/gordon/RELEASE63-30139-30128-201011221209/');
$client->SetParam('flash_client_url', 'http://swfs.host.crazzy.com.br/swf/r63.2/gordon/RELEASE63-30139-30128-201011221209/');
$client->SetParam('hotel_status', $core->GetUsersOnline() . ' Usuários online agora!');
$client->SetParam('forwardType', $forwardType);
$client->SetParam('forwardId', $forwardId);
if (isset($_GET['forceTicket']) && $users->HasFuse(USER_ID, 'fuse_admin'))
{
$client->SetParam('sso_ticket', $_GET['forceTicket']);
}
$tpl->AddTemplate($client);
$tpl->Output();
?>
But for the swf needs to run the emulator Crazzy 1.0.
Download:CrazzYEMU r1.0.rar - 4shared.com - online file sharing and storage - download
VT : VirusTotal - Free Online Virus, Malware and URL Scanner
Credits:
-tolomeotti
-Programmer EC
-Marlon Colhado
-Team Crazzy
Hope that helps.
There may also use the swf h4bbo because it is compatible with the emulator!
-
Re: Swf v63 + Crazzy Emulador
-
Re: Swf v63 + Crazzy Emulador
Yea, what The Hell Is Dis? Is It The Original SWF's?
-
Re: Swf v63 + Crazzy Emulador
Read it noob. :glare:
-Look's good, but I can just about figure out what you'r trying to put through to us 282'ers.
EDIT: It's the cracked SWFS.
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
GrandCoder
Yea, what The Hell Is Dis? Is It The Original SWF's?
Everything is right.
And I will not be reading nonsense test yourself!
-
Re: Swf v63 + Crazzy Emulador
Can you please reup the EMU to MediaFire?
And also, is this in english?
-
Re: Swf v63 + Crazzy Emulador
Can someone tell me wtf this is? o_O
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
PEjump2
Can someone tell me wtf this is? o_O
-Well it's the SWF's (cracked I think), and some kinda "Crazzy Emulator". :glare:
-
Re: Swf v63 + Crazzy Emulador
-
Re: Swf v63 + Crazzy Emulador
It's true, the cracked SWF,
Screen: ImageShack® - Online Photo and Video Hosting
It's work's also with UberEMU, Fck you if you say something about my server :ott1:, I like it when my name is in there :love:
-
Re: Swf v63 + Crazzy Emulador
Nice release, guess theirs no chance of releasing them..?
-
Re: Swf v63 + Crazzy Emulador
Put them all in a pack and release,
then I'll say thank you :)
-
Re: Swf v63 + Crazzy Emulador
Hmmm.
Banzai isnt working (neither are the scoreboards...)
also, what interactions do I need to put into my database?
But anyway :D thanks for releasing :)
-
Re: Swf v63 + Crazzy Emulador
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
Brapie
its bull shit the swf
i wait for the release from Pejump2
No.
this is the CRACKED version
Pejump2 just injects the Swfs.
This has ALL the new stuff :D
-
Re: Swf v63 + Crazzy Emulador
I hope everyone enjoyed it.
tolomeotti, always bringing news!
-
Re: Swf v63 + Crazzy Emulador
Thanks for this, but my Client is Portuguese.
How to Change that ?
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
Emerica
Thanks for this, but my Client is Portuguese.
How to Change that ?
Use habbos Current texts.
Or use your own :D
ALSO
I would like to know why it wont load the furniture when I choose to use my OWN set of furniture SWFs.
this one doesnt have stuff like the Battle banzai counter, or any New years stuff ETC...
-
Re: Swf v63 + Crazzy Emulador
Oh my god, the noobs did find the way.
Now is the question, what fag will code you all the new features like Freeze etc?
Haha, go on use r63 uberemu hasnt all features in the r63.
I prefer Privileges "GOD LIKE" emulator.
It's even better then the shit uber. (blabla).
Go use your crap :D!
-
Re: Swf v63 + Crazzy Emulador
-
Re: Swf v63 + Crazzy Emulador
WOW, this looks better than pejump2's shit packs!! finaly :D
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
Mikehunt
Use habbos Current texts.
Or use your own :D
ALSO
I would like to know why it wont load the furniture when I choose to use my OWN set of furniture SWFs.
this one doesnt have stuff like the Battle banzai counter, or any New years stuff ETC...
I have the same problem...
But wenn I use my own Texts, there is a big Mistake :O
http://img202.imageshack.us/img202/8477/fehlerjj.png
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
oleaa
WOW, this looks better than pejump2's shit packs!! finaly :D
This is prehosted? And just wait for my new pack, It will be alot better then this shit.
-
Re: Swf v63 + Crazzy Emulador
Quote:
This is prehosted? And just wait for my new pack, It will be alot better then this shit.
Cant wait Pejump :)
-
Re: Swf v63 + Crazzy Emulador
Yeah but this is cracked? eh?
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
PowahAlert
Yeah but this is cracked? eh?
Mine too, But without a fucked up logo.
-
Re: Swf v63 + Crazzy Emulador
LOL. Yeah well :glare: Someone test my CMS and this?
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
Emerica
Thats coz you dont have the right texts.
-
Re: Swf v63 + Crazzy Emulador
JayNike, Ever heard of XML Injection bro? :P
-
Re: Swf v63 + Crazzy Emulador
what sql db do i use for this?
-
Re: Swf v63 + Crazzy Emulador
I Cant trust you if you cant spell emulator o_0
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
Žak™
I Cant trust you if you cant spell emulator o_0
Translator error?
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
JayNike
Oh my god, the noobs did find the way.
Now is the question, what fag will code you all the new features like Freeze etc?
Haha, go on use r63 uberemu hasnt all features in the r63.
I prefer Privileges "GOD LIKE" emulator.
It's even better then the shit uber. (blabla).
Go use your crap :D!
Yeah you can prefer everything you want, but you need to have Privilege in a good mood if you will get the emu(working).
But ur right.
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
DjInTrouble
Yeah you can prefer everything you want, but you need to have Privilege in a good mood if you will get the emu(working).
But ur right.
Privilege wouldnt just GIVE it out.
Dont you need a license for it or something?
-
Re: Swf v63 + Crazzy Emulador
Yeah,so? He can even give you the license.
And you'll never know.
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
DjInTrouble
Yeah,so? He can even give you the license.
And you'll never know.
I lol'ed at this,
I would just give up and go be a legend ur self xD
-
Re: Swf v63 + Crazzy Emulador
Pejump2 hope you can hurry up with your swf pack!!!! In 5 min. and 10 hours, it need to be set up the cracked r63. No-one of the other "cracked" works for me!!!!
---------- Post added at 02:00 PM ---------- Previous post was at 01:55 PM ----------
I just get a black screen!!!!!!
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
DjInTrouble
Yeah,so? He can even give you the license.
And you'll never know.
So you believe,
That he will just GIVE UP all his work.
Doubt it.
He coded it himself.
Thats WHY he has a license.
To stop people from being able to use it without his permission.
---------- Post added at 01:35 PM ---------- Previous post was at 01:33 PM ----------
Quote:
Originally Posted by
superkulao
Pejump2 hope you can hurry up with your swf pack!!!! In 5 min. and 10 hours, it need to be set up the cracked r63. No-one of the other "cracked" works for me!!!!
---------- Post added at 02:00 PM ---------- Previous post was at 01:55 PM ----------
I just get a black screen!!!!!!
Okay.
Seriously.
Stop Spamming.
I will try and help.
PM me your MSN.
-
Re: Swf v63 + Crazzy Emulador
JayNike, Privilege's Emulator sucks ass, Do you know why? Cuz his base in vb6 is fucked up, it doesn't even use B64 for decoding >_<.
And UberEmulator is the best emulator ever developed, It just needs some "small" fixes.
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
PEjump2
JayNike, Privilege's Emulator sucks ass, Do you know why? Cuz his base in vb6 is fucked up, it doesn't even use B64 for decoding >_<.
And UberEmulator is the best emulator ever developed, It just needs some "small" fixes.
It's not really possible to not have any form of B64 encode....
You have to get the length for packets..
He may have used the crappy usa111 "encode" module, which isn't an encode just a switch statement with a int that tells what the number = when the string is.
-
Re: Swf v63 + Crazzy Emulador
James, He's using something like:
Code:
CASE "BK":
Sock.SendData(BK.stringbla bla);
I'm not a pro in vb6, but he's using something similiar to that ( He told me that on msn )
-
Re: Swf v63 + Crazzy Emulador
Someone help? It loads fine and i get just a black screen. Help???
-
Re: Swf v63 + Crazzy Emulador
Why go off topic about Hebbo's EMU? Anyway "Emulador" is in Portugeese or spannish.
-
Re: Swf v63 + Crazzy Emulador
Quote:
Originally Posted by
PEjump2
This is prehosted? And just wait for my new pack, It will be alot better then this shit.
lol? On msn you said you wouldnt release packs anymore and when i asked for the r63 cracked ones you asked me money?
Smd bro.