REQUEST!

lhazze53

Member
Apr 30, 2012
67
3
First of all, you haven't explained your problem. You are requesting for help here on a Habbo support section where we don't know if this is Habbo related.
How are you asking for help when you are requesting for people that knows javascript?
I was going to explain it when they inboxed me, and of course its habbo related.. If it wasn't I would not of posted it here for help, I was asking the forum to see if anyone knew it well enough it help me sort out some code, I was not recruiting. Recruiting would be wanting people to join my site or team. I am not doing any of that.
 

Alam

shietttt
Jul 3, 2011
433
166
I was going to explain it when they inboxed me, and of course its habbo related.. If it wasn't I would not of posted it here for help, I was asking the forum to see if anyone knew it well enough it help me sort out some code, I was not recruiting. Recruiting would be wanting people to join my site or team. I am not doing any of that.
Alright, looked like Recruitment to me as you were asking for people that knew Javascript.
 

Mitchul

Sledmoresux
Feb 18, 2012
371
46
Try
PHP:
<script>
 
        function Rotate(r) {
 
            if (r == 8) { r = 0; }
 
            document.{figure}.src = 'http://www.habbo.com/habbo-imaging/avatarimage?figure={figure}&direction=' + r + '&head_direction=' + r + '&action=wav&gesture=sml&size=b';
 
            var RotateTimeout = setTimeout('Rotate(' + (r + 1) + ');', 500);
 
        }
 
 
 
        function ResetRotate() {
 
            clearTimeout(RotateTimeout);
 
            document.{$Users['look']}.src = 'http://www.habbo.com/habbo-imaging/avatarimage?figure={figure}&direction=2&head_direction=2&size=b';
 
        }
 
        </script>
 
 
 
        <a href="/me" onmouseover="Rotate(r)" onmouseout="ResetRotate()">
 
            <img alt="{username}" src="http://www.habbo.com/habbo-imaging/avatarimage?figure={figure}&direction=2&head_direction=2&size=b" name="{figure}" />
 
        </a>
 

lhazze53

Member
Apr 30, 2012
67
3
Try
PHP:
<script>
 
        function Rotate(r) {
 
            if (r == 8) { r = 0; }
 
            document.{figure}.src = 'http://www.habbo.com/habbo-imaging/avatarimage?figure={figure}&direction=' + r + '&head_direction=' + r + '&action=wav&gesture=sml&size=b';
 
            var RotateTimeout = setTimeout('Rotate(' + (r + 1) + ');', 500);
 
        }
 
 
 
        function ResetRotate() {
 
            clearTimeout(RotateTimeout);
 
            document.{$Users['look']}.src = 'http://www.habbo.com/habbo-imaging/avatarimage?figure={figure}&direction=2&head_direction=2&size=b';
 
        }
 
        </script>
 
 
 
        <a href="/me" onmouseover="Rotate(r)" onmouseout="ResetRotate()">
 
            <img alt="{username}" src="http://www.habbo.com/habbo-imaging/avatarimage?figure={figure}&direction=2&head_direction=2&size=b" name="{figure}" />
 
        </a>
It did not work sadly, thanks for your response though! :)
 

Users who are viewing this thread

Top