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.I'm not recruiting though, I have a problem I need helped with?
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.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?
Alright, looked like Recruitment to me as you were asking for people that knew 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.
Haha, its alright man. Do you know Javascript?Alright, looked like Recruitment to me as you were asking for people that knew Javascript.
<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!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>