Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Habbo badge script

Status
Not open for further replies.
Make a wish
Joined
Jan 21, 2012
Messages
470
Reaction score
130
Hello Ragezone,

I have created a small script.
If habbo has new badges and you are to lazy to add it to your server you only have to do:
HA_[BADGEID] and he gets the badge from the habbo server.

Make a script called habbobadge.php and place it in your album1584 map.
Then you paste this in the file;
PHP:
<?php 
$file = "http://images-eussl.habbo.com/c_images/album1584/".$_GET['id'].".gif";
$data = file_get_contents($file);

header('Content-type: image/gif');
echo $data;
?>

Go to your web.config and place this;
PHP:
<rule name="Imported Rule 107">
                    <match url="^c_images/album1584/HA_(.*).gif$" ignoreCase="false" />
                    <action type="Rewrite" url="c_images/album1584/habbobadge.php?id={R:1}" appendQueryString="false" />
                </rule>
Demo;
PHP:
http://www.typohotel.nl/c_images/album1584/HA_IT216.gif

.::Arjan::. - Habbo badge script - RaGEZONE Forums


Like if you like.. And sorry for my English.
 
Last edited:
Zephyr Studios
Loyal Member
Joined
Feb 18, 2012
Messages
1,877
Reaction score
724
It's nice! Thanks Arjan, and welcome back :):
 
Newbie Spellweaver
Joined
Dec 12, 2013
Messages
20
Reaction score
0
The web.config is the similar to the configuration file of cms? Because I am under my cms php and nothing displays.
Sorry for my bad English I'm from the French.
 
Make a wish
Joined
Jan 21, 2012
Messages
470
Reaction score
130
The web.config is the similar to the configuration file of cms? Because I am under my cms php and nothing displays.
Sorry for my bad English I'm from the French.

No, find in your cms for web.config or .htaccess
 
Status
Not open for further replies.
Back
Top