-
Re: Phoenix CMS [UberEmu Compatible]
When are we expecting to see this demo site aaron?
-
Re: Phoenix CMS [UberEmu Compatible]
Yh my balls can't wait any longer lol.
-
Re: Phoenix CMS [UberEmu Compatible]
Dan is coming over to my house this morning for a few days so I should expect some more progress over the next few days.
-
Re: Phoenix CMS [UberEmu Compatible]
Aaron, are you planning on hosting the css files local? Its a much more smarter move of course than linking to Habbo (for any imaging).
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
matty13
Aaron, are you planning on hosting the css files local? Its a much more smarter move of course than linking to Habbo (for any imaging).
Yes of course, all of our CSS is with the cms files, the only linking to Habbo will be for the habbo imager (avatars) which I'm hoping to get rid of in the long run.
-
Re: Phoenix CMS [UberEmu Compatible]
Aaron, why don't you make a figure-downloader in PHP/ColdFusion :P , The figure-downloader then downloads the images from habbo.com automaticly :)
Here's a example:
avatarimage.php
PHP Code:
<?php
// Function that Creates the avatar
function CreateAvatar()
{
$figure = $_GET["figure"];
$direction = $_GET["direction"];
$head_direction = $_GET["head_direction"];
$gesture = $_GET["gesture"];
$action = $_GET["action"];
$size = $_GET["size"];
$URL = "http://www.habbo.nl/habbo-imaging/avatarimage?figure=".$figure."&direction=".$direction."&head_direction=".$head_direction."&action=".$action."&gesture=".$gesture."&size=".$size;
$i = file_get_contents($URL);
$f = fopen("../cache/avatars/".$direction."-".$head_direction."-".$action."-".$gesture."-".$size."-".$figure.".png","a+");
fwrite($f,$i);
fclose($f);
}
// Function that Shows the avatar
function ShowAvatar()
{
$figure = $_GET["figure"];
$direction = $_GET["direction"];
$head_direction = $_GET["head_direction"];
$gesture = $_GET["gesture"];
$action = $_GET["action"];
$size = $_GET["size"];
$URL = "../cache/avatars/".$direction."-".$head_direction."-".$action."-".$gesture."-".$size."-".$figure.".png";
$i = file_get_contents($URL);
echo $i;
}
// Checking shit
if(isset($_GET['figure']))
{
$figure = $_GET["figure"];
$direction = $_GET["direction"];
$head_direction = $_GET["head_direction"];
$gesture = $_GET["gesture"];
$action = $_GET["action"];
$size = $_GET["size"];
$filename = "../cache/avatars/".$direction."-".$head_direction."-".$action."-".$gesture."-".$size."-".$figure.".png";
if (file_exists( $filename )) {
header( "Content-type: image/png" );
ShowAvatar();
} else {
header( "Content-type: image/png" );
CreateAvatar();
ShowAvatar();
}
}
?>
I know, its a bit messy coded, but i coded it in 5 min so its pretty good for a 5 min work :D
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
PEjump2
Aaron, why don't you make a figure-downloader in PHP/ColdFusion :P , The figure-downloader then downloads the images from habbo.com automaticly :)
I'll post a example in php in a few minutes.
That 3 mins has been 3 days mate. lol.
Also, Can't wait to see the demo site!
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Sledmore
That 3 mins has been 3 days mate. lol.
Also, Can't wait to see the demo site!
:o lol, i will post it now then :P
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
PEjump2
Aaron, why don't you make a figure-downloader in PHP/ColdFusion :P , The figure-downloader then downloads the images from habbo.com automaticly :)
Here's a example:
avatarimage.php
PHP Code:
<?php
// Function that Creates the avatar
function CreateAvatar()
{
$figure = $_GET["figure"];
$direction = $_GET["direction"];
$head_direction = $_GET["head_direction"];
$gesture = $_GET["gesture"];
$action = $_GET["action"];
$size = $_GET["size"];
$URL = "http://www.habbo.nl/habbo-imaging/avatarimage?figure=".$figure."&direction=".$direction."&head_direction=".$head_direction."&action=".$action."&gesture=".$gesture."&size=".$size;
$i = file_get_contents($URL);
$f = fopen("../cache/avatars/".$direction."-".$head_direction."-".$action."-".$gesture."-".$size."-".$figure.".png","a+");
fwrite($f,$i);
fclose($f);
}
// Function that Shows the avatar
function ShowAvatar()
{
$figure = $_GET["figure"];
$direction = $_GET["direction"];
$head_direction = $_GET["head_direction"];
$gesture = $_GET["gesture"];
$action = $_GET["action"];
$size = $_GET["size"];
$URL = "../cache/avatars/".$direction."-".$head_direction."-".$action."-".$gesture."-".$size."-".$figure.".png";
$i = file_get_contents($URL);
echo $i;
}
// Checking shit
if(isset($_GET['figure']))
{
$figure = $_GET["figure"];
$direction = $_GET["direction"];
$head_direction = $_GET["head_direction"];
$gesture = $_GET["gesture"];
$action = $_GET["action"];
$size = $_GET["size"];
$filename = "../cache/avatars/".$direction."-".$head_direction."-".$action."-".$gesture."-".$size."-".$figure.".png";
if (file_exists( $filename )) {
header( "Content-type: image/png" );
ShowAvatar();
} else {
header( "Content-type: image/png" );
CreateAvatar();
ShowAvatar();
}
}
?>
I know, its a bit messy coded, but i coded it in 5 min so its pretty good for a 5 min work :D
Thats actually cool, so it saves them as they are used basically? will work nicely.
-
Re: Phoenix CMS [UberEmu Compatible]
Yeah it does that, and i made that script for my ubercms edit :)
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
PEjump2
Yeah it does that, and i made that script for my ubercms edit :)
If I remember rightly that was used within phpRETRO, aswell right? :)
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Pure
If I remember rightly that was used within phpRETRO, aswell right? :)
Yewp, but a bit differently, this saves and loads it like: avatarimage?figure=%figure%
And the phpretro one does it like this: avatarimage/%figure%/%md5_hash%.png
-
Re: Phoenix CMS [UberEmu Compatible]
How long does it take from now to release? Or is the develop down? :P
Grettingz to Aaron
-
Re: Phoenix CMS [UberEmu Compatible]
This is Really great 10/10 i cant wait until the release thanks
-
Re: Phoenix CMS [UberEmu Compatible]
Any guess on a release date I can't wait for this smexy thing of smexiness
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
PEjump2
Aaron, why don't you make a figure-downloader in PHP/ColdFusion :P , The figure-downloader then downloads the images from habbo.com automaticly :)
Here's a example:
avatarimage.php
PHP Code:
<?php
// Function that Creates the avatar
function CreateAvatar()
{
$figure = $_GET["figure"];
$direction = $_GET["direction"];
$head_direction = $_GET["head_direction"];
$gesture = $_GET["gesture"];
$action = $_GET["action"];
$size = $_GET["size"];
$URL = "http://www.habbo.nl/habbo-imaging/avatarimage?figure=".$figure."&direction=".$direction."&head_direction=".$head_direction."&action=".$action."&gesture=".$gesture."&size=".$size;
$i = file_get_contents($URL);
$f = fopen("../cache/avatars/".$direction."-".$head_direction."-".$action."-".$gesture."-".$size."-".$figure.".png","a+");
fwrite($f,$i);
fclose($f);
}
// Function that Shows the avatar
function ShowAvatar()
{
$figure = $_GET["figure"];
$direction = $_GET["direction"];
$head_direction = $_GET["head_direction"];
$gesture = $_GET["gesture"];
$action = $_GET["action"];
$size = $_GET["size"];
$URL = "../cache/avatars/".$direction."-".$head_direction."-".$action."-".$gesture."-".$size."-".$figure.".png";
$i = file_get_contents($URL);
echo $i;
}
// Checking shit
if(isset($_GET['figure']))
{
$figure = $_GET["figure"];
$direction = $_GET["direction"];
$head_direction = $_GET["head_direction"];
$gesture = $_GET["gesture"];
$action = $_GET["action"];
$size = $_GET["size"];
$filename = "../cache/avatars/".$direction."-".$head_direction."-".$action."-".$gesture."-".$size."-".$figure.".png";
if (file_exists( $filename )) {
header( "Content-type: image/png" );
ShowAvatar();
} else {
header( "Content-type: image/png" );
CreateAvatar();
ShowAvatar();
}
}
?>
I know, its a bit messy coded, but i coded it in 5 min so its pretty good for a 5 min work :D
LOL you don't coded it, YifanLU did it...
is the figure downloader of phpretro :thumbdown:
anyways is a good idea
-
Re: Phoenix CMS [UberEmu Compatible]
Compare the two codes and you'll see its totally different :P
I coded that myself :s
-
Re: Phoenix CMS [UberEmu Compatible]
Looks a lot like Rasta's design-style for Imadj's hotel. Looks good though, good luck with this.
-
Re: Phoenix CMS [UberEmu Compatible]
is development still active?
what will be first php or cf version ?
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Blatnoi
is development still active?
what will be first php or cf version ?
He said both lol.. And i take it this is over now? As there is no new progress.
-
Re: Phoenix CMS [UberEmu Compatible]
his official site for this is habboon.com
but not much is happning there
-
Re: Phoenix CMS [UberEmu Compatible]
Quote:
Originally Posted by
Sledmore
He said both lol.. And i take it this is over now? As there is no new progress.
i know that both will be developed i just asked which will be first ....
-
Re: Phoenix CMS [UberEmu Compatible]
Link please ? :)
I looooove :D
-
Re: Phoenix CMS [UberEmu Compatible]
Above:Its Development if your looking for downloads then go to Habbo Hotel - Habbo Releases at RaGEZONE.com
Ontopic: Your Using this For HabboRP But RP Version ;] any updates?
-
Re: Phoenix CMS [UberEmu Compatible]
no he isn't.
Only index page.
All other site have old design, old features, old exploits...