[Help] How to fix badges [Azure EMU]

Sebz

Developer
May 20, 2015
47
3
I have the habbo-imaging and web.config added already for badges but I will add it in here anyway
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1">
<match url="^(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>

<rule name="Imported Rule 2">
<match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>

<rule name="Imported Rule 3">
<match url="^(.*)\.htm$" />
<action type="Rewrite" url="{R:1}.php" />
</rule>

<rule name="Imported Rule 4">
<match url="^(|/)$" ignoreCase="false" />
<action type="Rewrite" url="dash.php?page={R:1}" appendQueryString="false" />
</rule>

<rule name="Imported Rule 5">
<match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="dash.php?url={R:1}" appendQueryString="false" />
</rule>

<rule name="Imported Rule 6">
<match url="news/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=news&amp;id={R:1}" appendQueryString="false" />
</rule>

<rule name="Imported Rule 7">
<match url="^news/([a-zA-Z0-9_-]+)/ban/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=news&amp;id={R:1}&amp;ban={R:2}" appendQueryString="false" />
</rule>

<rule name="Imported Rule 8">
<match url="^news/([a-zA-Z0-9_-]+)/delete/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=news&amp;id={R:1}&amp;delete={R:2}" appendQueryString="false" />
</rule>

<rule name="Imported Rule 9">
<match url="^store/vip(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=store_vip" appendQueryString="false" />
</rule>

<rule name="Imported Rule 10">
<match url="^store/rares(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=store_rares" appendQueryString="false" />
</rule>

<rule name="Imported Rule 11">
<match url="^store/donations(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=store_donations" appendQueryString="false" />
</rule>

<rule name="Imported Rule 12">
<match url="^home/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=home&amp;username={R:1}" appendQueryString="false" />
</rule>

<rule name="Imported Rule 13">
<match url="^profile/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=profile&amp;tab={R:1}" appendQueryString="false" />
</rule>

<rule name="Imported Rule 14">
<match url="^badgeshop/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=badgeshop&amp;id={R:1}" appendQueryString="false" />
</rule>

<rule name="Imported Rule 15">
<match url="^rarevalues/([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=rarevalues&amp;id={R:1}" appendQueryString="false" />
</rule>

<rule name="Imported Rule 16">
<match url="^index/novote(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=index&amp;novote={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 17" stopProcessing="true">
<match url="^forum/(.*)/?$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url=forum&amp;threadname={R:1}" appendQueryString="true" />
</rule>
<rule name="Imported Rule 1-9">
<match url="^habbo-imaging/badge/([^/]+)" ignoreCase="false" />
<action type="Rewrite" url="/habbo-imaging/badge.php?badge={R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
group.badge.url=
group.homepage.url=
groupMembers.enabled=true
groupRoomInfo.attach.enabled=true
groupRoomInfo.badge.enabled=true
groupRoomInfo.enabled=true
group_logo_url_template=
groupforum.poll.period=900
It would be great if you could help
 

Jerry

not rly active lol
Jul 8, 2013
1,956
522
Hey,

Just noticed something wrong with the group.badge.url variable.

Replace:
Code:
group.badge.url=http://localhost/habbo-imaging/badge-fill/%imagerdata%.gif

with:
Code:
group.badge.url=http://localhost/habbo-imaging/badge/%imagerdata%.gif


Sent from my iPhone using Tapatalk
 

JayC

Always Learning
Aug 8, 2013
5,493
1,398
Mate I changed it to localhost so you didnt know my ip to my hotel or my url as it is not open...
and

Yes that is what I am trying to say.
Idiot thats what I meant
Hey,

Just noticed something wrong with the group.badge.url variable.

Replace:
Code:
group.badge.url=http://localhost/habbo-imaging/badge-fill/%imagerdata%.gif

with:
Code:
group.badge.url=http://localhost/habbo-imaging/badge/%imagerdata%.gif


Sent from my iPhone using Tapatalk
 

Users who are viewing this thread

Top