Plus Emu Problems

GlobalSamm

New Member
Aug 28, 2017
14
1
Screenshots of Error:



External_variables:


"myhotelip" was put there deliberately for security reasons and yes I don't use a domain as of now.
override_variables are also setup perfectly.
 

yoyok

Member
Apr 24, 2013
197
24
Before opening a thread, look if someone in the past had the same issue and how he fixed it.
I have seen this problem alot times on other threads where they provide the solution.
 

GlobalSamm

New Member
Aug 28, 2017
14
1
Before opening a thread, look if someone in the past had the same issue and how he fixed it.
I have seen this problem alot times on other threads where they provide the solution.
Trust me I've looked plenty, I have also seen this problem without the answer to fix it correctly. Everyone has said "external_variables" or "override_variables" which hasn't fixed it, they've also said "have an icons folder for the catalog items" that's done, not fixed, "make sure all icons are png" already done that, not fixed.
 

yoyok

Member
Apr 24, 2013
197
24
Trust me I've looked plenty, I have also seen this problem without the answer to fix it correctly. Everyone has said "external_variables" or "override_variables" which hasn't fixed it, they've also said "have an icons folder for the catalog items" that's done, not fixed, "make sure all icons are png" already done that, not fixed.
Probably your icons are not in the file directory, or you've set a wrong url link to your icons.
 

yoyok

Member
Apr 24, 2013
197
24
Well my icons are /swf/dcr/hof_furni/icons , the config is there and I don't see a problem with the url links to icons.
Go to your external_variables.txt
Look for:
Code:
flash.dynamic.icon.download.name.template=%typeid%%param%_icon.png
Change it to:
Code:
flash.dynamic.icon.download.name.template=icons/%typeid%%param%_icon.png
Delete your cache / webhistory and try now if the icons load.
 

GlobalSamm

New Member
Aug 28, 2017
14
1
Go to your external_variables.txt
Look for:
Code:
flash.dynamic.icon.download.name.template=%typeid%%param%_icon.png
Change it to:
Code:
flash.dynamic.icon.download.name.template=icons/%typeid%%param%_icon.png
Delete your cache / webhistory and try now if the icons load.
Thank you so much you're legend, you fixed my cata item icons but the only thing is now, still that invisible character on launch and group badges are invisible!
 

Kak

Posting Freak
Apr 21, 2017
951
165
Thank you so much you're legend, you fixed my cata item icons but the only thing is now, still that invisible character on launch and group badges are invisible!
your avatar loads fine in rooms etc its just the invisible head on the landing issue thats the problem and by invisible badges if u are referring to the badge emblems you need to add the rule to your web.config if iis
 

yoyok

Member
Apr 24, 2013
197
24
Correct, can you send me that web.config rule?
Go to external_variables_override.txt
Look for:
Code:
group.badge.url=http://playhubbo.pw/swf/habbo-imaging/badges/%imagerdata%.gif

Change it to:
Code:
group.badge.url=http://playhubbo.pw/habbo-imaging/badges/%imagerdata%.gif

Go to .htaccess
Put this there:
Code:
RewriteEngine On
RewriteRule ^habbo-imaging/badge/(.*).gif$ ./habbo-imaging/badge.php?badge=$1

Clean your web history and try it again.
 
Last edited:

GlobalSamm

New Member
Aug 28, 2017
14
1
Go to external_variables_override.txt
Look for:
Code:
group.badge.url=http://playhubbo.pw/swf/habbo-imaging/badges/%imagerdata%.gif

Change it to:
Code:
group.badge.url=http://playhubbo.pw/habbo-imaging/badges/%imagerdata%.gif

Go to .htaccess
Put this there:
Code:
RewriteEngine On
RewriteRule ^habbo-imaging/badge/(.*).gif$ ./habbo-imaging/badge.php?badge=$1

Clean your web history and try it again.
Didn't fix it, thanks for trying. Anymore ideas?
 

yoyok

Member
Apr 24, 2013
197
24
One more thing you can try is to add a rule.

Go to your web.config and add this.
Code:
  <rule name="Habbo Imaging Group Badges">
          <match url="^habbo-imaging/badge/([^/]+)" ignoreCase="false" />
          <action type="Rewrite" url="/habbo-imaging/badge.php?badge={R:1}" appendQueryString="false" />
        </rule>
        <rule name="Habbo Imaging Avatarimage 1">
          <match url="^habbo-imaging/avatar/([^/]+)" ignoreCase="false" />
          <action type="Rewrite" url="habbo-imaging/avatarimage.php?figure={R:1}" appendQueryString="false" />
        </rule>
        <rule name="Habbo Imaging Avatar Image 2">
          <match url="^habbo-imaging/avatarimage/([^/]+)" ignoreCase="false" />
          <action type="Rewrite" url="habbo-imaging/avatarimage.php?username={R:1}" appendQueryString="false" />
        </rule>
        <rule name="Habbo Imaging Avatar Head">
          <match url="^habbo-imaging/head/([^/]+)" ignoreCase="false" />
          <action type="Rewrite" url="habbo-imaging/head.php?figure={R:1}" appendQueryString="false" />
        </rule>
 

GlobalSamm

New Member
Aug 28, 2017
14
1
One more thing you can try is to add a rule.

Go to your web.config and add this.
Code:
  <rule name="Habbo Imaging Group Badges">
          <match url="^habbo-imaging/badge/([^/]+)" ignoreCase="false" />
          <action type="Rewrite" url="/habbo-imaging/badge.php?badge={R:1}" appendQueryString="false" />
        </rule>
        <rule name="Habbo Imaging Avatarimage 1">
          <match url="^habbo-imaging/avatar/([^/]+)" ignoreCase="false" />
          <action type="Rewrite" url="habbo-imaging/avatarimage.php?figure={R:1}" appendQueryString="false" />
        </rule>
        <rule name="Habbo Imaging Avatar Image 2">
          <match url="^habbo-imaging/avatarimage/([^/]+)" ignoreCase="false" />
          <action type="Rewrite" url="habbo-imaging/avatarimage.php?username={R:1}" appendQueryString="false" />
        </rule>
        <rule name="Habbo Imaging Avatar Head">
          <match url="^habbo-imaging/head/([^/]+)" ignoreCase="false" />
          <action type="Rewrite" url="habbo-imaging/head.php?figure={R:1}" appendQueryString="false" />
        </rule>

Still not fixed, <-- .htaccess
Did you do your override external variables?
 

Users who are viewing this thread

Top