-
Re: SWF Pack [R61+, Injected, Uber]
No Thats not the Client.php inside ur pack.
Inside ur pack its
PHP Code:
<?php
/*=======================================================================
| UberCMS - Advanced Website and Content Management System for uberEmu
| #######################################################################
| Copyright (c) 2010, Roy 'Meth0d' and updates by Matthew 'MDK'
| http://www.meth0d.org & http://www.sulake.biz
| #######################################################################
| This program is free software: you can redistribute it and/or modify
| it under the terms of the GNU General Public License as published by
| the Free Software Foundation, either version 3 of the License, or
| (at your option) any later version.
| #######################################################################
| This program is distributed in the hope that it will be useful,
| but WITHOUT ANY WARRANTY; without even the implied warranty of
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
| GNU General Public License for more details.
\======================================================================*/
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;
$lang = '';
$habbo10 = '';
if (isset($_GET['lang']))
{
$lang = $_GET['lang'];
}
switch ($lang)
{
default:
$lang = "";
dbquery("UPDATE users SET real_name = 'English' WHERE id = '" . USER_ID . "' LIMIT 1");
break;
case "br":
$lang = "_br.txt";
dbquery("UPDATE users SET real_name = 'Brazilian' WHERE id = '" . USER_ID . "' LIMIT 1");
break;
case "de":
$lang = "_de.txt";
dbquery("UPDATE users SET real_name = 'German' WHERE id = '" . USER_ID . "' LIMIT 1");
break;
case "dk":
$lang = "_dk.txt";
dbquery("UPDATE users SET real_name = 'Danish' WHERE id = '" . USER_ID . "' LIMIT 1");
break;
case "es":
$lang = "_es.txt";
dbquery("UPDATE users SET real_name = 'Spanish' WHERE id = '" . USER_ID . "' LIMIT 1");
break;
case "fi":
$lang = "_fi.txt";
dbquery("UPDATE users SET real_name = 'Finnish' WHERE id = '" . USER_ID . "' LIMIT 1");
break;
case "fr":
$lang = "_fr.txt";
dbquery("UPDATE users SET real_name = 'French' WHERE id = '" . USER_ID . "' LIMIT 1");
break;
case "it":
$lang = "_it.txt";
dbquery("UPDATE users SET real_name = 'Italian' WHERE id = '" . USER_ID . "' LIMIT 1");
break;
case "jp":
$lang = "_jp.txt";
$habbo10 = "_jp";
dbquery("UPDATE users SET real_name = 'Japanese' WHERE id = '" . USER_ID . "' LIMIT 1");
break;
case "nl":
$lang = "_nl.txt";
dbquery("UPDATE users SET real_name = 'Dutch' WHERE id = '" . USER_ID . "' LIMIT 1");
break;
case "no":
$lang = "_no.txt";
dbquery("UPDATE users SET real_name = 'Norwegian' WHERE id = '" . USER_ID . "' LIMIT 1");
break;
case "se":
$lang = "_se.txt";
dbquery("UPDATE users SET real_name = 'Swedish' WHERE id = '" . USER_ID . "' LIMIT 1");
break;
}
if ($users->getUserVar(USER_ID, 'newbie_status') == "0")
{
if (isset($_GET['createRoom']) && is_numeric($_GET['createRoom']))
{
$roomId = RoomManager::CreateRoom(USER_NAME . "'s kamer", 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;
}
}
if ($users->GetUserVar(USER_ID, "newbie_status", false) == "1")
{
dbquery("UPDATE users SET newbie_status = '2' WHERE id = '" . USER_ID . "' LIMIT 1");
}
$users->CheckSSO(USER_ID);
$tpl->Init();
$client = new Template('page-client-r61');
$client->SetParam('sso_ticket', $users->GetUserVar(USER_ID, 'auth_ticket', false));
$client->SetParam('flash_base', '%www%/gordon/RELEASE61-29232-29225-201010221424_9ceba2c2aa22ca6c86bbff05c74cb321/');
$client->SetParam('flash_client_url', '%www%/client');
$client->SetParam('habbo10_swf', '%www%/gordon/RELEASE61-29232-29225-201010221424_9ceba2c2aa22ca6c86bbff05c74cb321/Habbo10'.$habbo10.'.swf');
$client->SetParam('external_flash_texts', '%www%/gamedata/external?id=external_flash_texts'.$lang);
$client->SetParam('info_host', '127.0.0.1');
$client->SetParam('info_port', '30000');
if (isset($_GET['forceTicket']) && $users->HasFuse(USER_ID, 'fuse_admin'))
{
$client->SetParam('sso_ticket', $_GET['forceTicket']);
}
$tpl->AddTemplate($client);
$tpl->Output();
?>
Which has .txt behind all the language with doesn't let the language work.
-
Re: SWF Pack [R61+, Injected, Uber]
me & PEjump2 working on fixing the r61+ pack editor as we speak might be re-released tommorow.
-
Re: SWF Pack [R61+, Injected, Uber]
nice work!and can you share your uberdb for this R61?
---------- Post added at 04:06 AM ---------- Previous post was at 04:04 AM ----------
and other question:i want change cms to UTF-8,can you tell me ,which files i need to edit?thank you!
-
Re: SWF Pack [R61+, Injected, Uber]
tested and it works perfectly this is awesome dude cant wait for the next big pack.
-
Re: SWF Pack [R61+, Injected, Uber]
Nice mate!
As always.. Keep it up!
-
Re: SWF Pack [R61+, Injected, Uber]
Quote:
Originally Posted by
UltraHab
me & PEjump2 working on fixing the r61+ pack editor as we speak might be re-released tommorow.
Whats wrong with the original one?
-
Re: SWF Pack [R61+, Injected, Uber]
Quote:
Originally Posted by
Imagician
Hello PEjump2,
work this SWF's with the Emulator from iJakey?
Do i really need to say this like 3000+ times?
Yes it does idiot.
---------- Post added at 10:10 AM ---------- Previous post was at 10:07 AM ----------
Quote:
Originally Posted by
Milw0rm
Whats wrong with the original one?
It has alot of exploits, and that's bad :P
-
Re: SWF Pack [R61+, Injected, Uber]
Quote:
Originally Posted by
PEjump2
Do i really need to say this like 3000+ times?
Yes it does idiot.
---------- Post added at 10:10 AM ---------- Previous post was at 10:07 AM ----------
It has alot of exploits, and that's bad :P
Oh, okay.
But the %Limit% things isnt fixed, nothing important, but could you take a look on it?
-
Re: SWF Pack [R61+, Injected, Uber]
Anyone can inject swfs, As A matter of fact. I'll post a tut soon hardy hardy har.
Mean't to be doing school work so not now...
-
Re: SWF Pack [R61+, Injected, Uber]
Quote:
Originally Posted by
Milw0rm
Oh, okay.
But the %Limit% things isnt fixed, nothing important, but could you take a look on it?
I will :P
-
Re: SWF Pack [R61+, Injected, Uber]
PEjump, Come On MSN,
Ps; Our .htacces is failure so i had to config it myself in the external vars etc.
XD
Btw, Verry Nice Release I Hope That You will keep us up-to-date? :D
Greetz,
Sidle - Holobe2.servebeer.com Owner.
-
Re: SWF Pack [R61+, Injected, Uber]
Quote:
Originally Posted by
sidle
PEjump, Come On MSN,
Ps; Our .htacces is failure so i had to config it myself in the external vars etc.
XD
Btw, Verry Nice Release I Hope That You will keep us up-to-date? :D
Greetz,
Sidle - Holobe2.servebeer.com Owner.
You haven't add me on msn yet? pejump@sulake.com
-
Re: SWF Pack [R61+, Injected, Uber]
The Skull face is bugged with them swfs. It wont let you import it into your wardrobe and is still off on the chat.
-
Re: SWF Pack [R61+, Injected, Uber]
Quote:
Originally Posted by
Seano2o6
The Skull face is bugged with them swfs. It wont let you import it into your wardrobe and is still off on the chat.
Yeah, i'll try to fix that bug in my R62+ Pack :P
-
Re: SWF Pack [R61+, Injected, Uber]
PEJump come over in Msn online.
Do check with you something.
-
Re: SWF Pack [R61+, Injected, Uber]
Quote:
Originally Posted by
Imagician
PEJump come over in Msn online.
Do check with you something.
I'm online?
-
Re: SWF Pack [R61+, Injected, Uber]
Wired Furni can only be used with the original Habbo.swf of R61, because it got Packets for the Editor. There would be a way: "Coding it by an own way, without a Wired-Editor" :-)
Quote:
Originally Posted by
ŽÄK
The Sexy SWF Cracker DId it Again Lmao Your Owning Habbo
Cracked? Injected? I see nothing cracked here. I only see R54 swfs with the R61 furnitures added.
-
Re: SWF Pack [R61+, Injected, Uber]
Nice way to steal h4bbo.net / sulkea idea of the multi-lingual hotel :{
-
Re: SWF Pack [R61+, Injected, Uber]
Great release, now I can continue with my epic server :)
-
Re: SWF Pack [R61+, Injected, Uber]
It says that it is "Injected" in the thread title, and with wired furni i mean the new "Wired furni" furni's & images.
---------- Post added at 02:01 PM ---------- Previous post was at 02:01 PM ----------
Quote:
Originally Posted by
MoBaTeY
Nice way to steal h4bbo.net / sulkea idea of the multi-lingual hotel :{
Thanks :D
-
Re: SWF Pack [R61+, Injected, Uber]
i just can;t get the furni to load for some reason? everything else seems to work -> clothing rooms and everything tho
edit: apparently only the effects work... could it be just the db im using sucks?
-
Re: SWF Pack [R61+, Injected, Uber]
Then you've added it wrong :)
-
Re: SWF Pack [R61+, Injected, Uber]
Quote:
Originally Posted by
omnija
i just can;t get the furni to load for some reason? everything else seems to work -> clothing rooms and everything tho
I had that problem but fixed it now, Did you add the htaccess
PHP Code:
RewriteRule ^gamedata/external(|/)$ ./externals.php
RewriteRule ^gamedata/figurepartconfig/partsets(|/)$ ./gamedata/figurepartconfig/partsets.xml
RewriteRule ^gamedata/figurepartconfig/draworder(|/)$ ./gamedata/figurepartconfig/draworder.xml
RewriteRule ^gamedata/figurepartconfig/animation(|/)$ ./gamedata/figurepartconfig/animation.xml
RewriteRule ^gamedata/figuredata(|/)$ ./gamedata/figuredata.xml
RewriteRule ^gamedata/furnidata(|/)$ ./gamedata/furnidata.txt
RewriteRule ^gamedata/productdata(|/)$ ./gamedata/productdata.txt
RewriteRule ^gamedata/external(|/)$ ./gamedata/external.php
RewriteRule ^gamedata/external_variables(|/)$ ./gamedata/external_variables.txt
RewriteRule ^gamedata/external_flash_texts(|/)$ ./gamedata/external_flash_texts.txt
RewriteRule ^gamedata/banner(|/)$ ./gamedata/banner.png
RewriteRule ^habblet/xml/promo_habbos(|/)$ ./xml/promo_habbos.xml
RewriteRule ^clientlog/update(|/)$ ./clientlog/update.php
RewriteRule ^cacheCheck(|/)$ ./cacheCheck.php
RewriteRule ^rd/([^/]+)(|/)$ ./home.php?qryId=$1
And removed?
PHP Code:
RewriteRule ^gamedata/external(|/)$ ./externals.php
Hope this helps.
-
Re: SWF Pack [R61+, Injected, Uber]
yea i did..im wondering it it's a db issue since the effects showed up but nothing elsE?
could yo pm me hour .htaccess so i could see if that changes anything plz?
-
Re: SWF Pack [R61+, Injected, Uber]
Quote:
Originally Posted by
PEjump2
i Did now, So, Ehhr, Add me because my MSN buggs a little,
sidle@holoday.nl
Btw. I Love Your Releases Hope Your Java/FUSE Emu is getting Released Soon :)