Re: Me Page Avatar Change
Re: Me Page Avatar Change
I wish I was creative enough ;/ Pretty cool idea dude.
Re: Me Page Avatar Change
Oh I like this And You are new here i see ? Sweet Welcome:D
Re: Me Page Avatar Change
http://www.habbo.com/habbo-imaging/a...tion=wav,crr=3
This is my idea (i had it on my hotel but Nice! for releasing)
Tip
Do it on your staff page
and more!
Re: Me Page Avatar Change
Looks cool, a 360 rotation script on mousehover is cooler though :P
Re: Me Page Avatar Change
Thats sounds like a Pretty Sweet idea PEJump, It would be Cool to use a code similar that when you Hover over it It keeps Spinning until you Move mouse away then it goes back to original. Ill look in to it :)
Re: Me Page Avatar Change
I already tryed to code it, Here's my code ( untested, Should work for UberCMS ):
PHP Code:
<div id="habbo-plate">
<script>
function Rotate(r) {
if (r == 8) { r = 0; }
document.habbo_user_img.src = 'http://www.habbo.nl/habbo-imaging/avatarimage?figure=%look%&direction=' + r + '&head_direction=' + r + '&action=wav&gesture=sml&size=b';
var RotateTimeout = setTimeout('Rotate(' + (r + 1) + ');', 500);
}
function ResetRotate() {
clearTimeout(RotateTimeout);
document.habbo_user_img.src = 'http://www.habbo.nl/habbo-imaging/avatarimage?figure=%look%&direction=2&head_direction=2&size=b';
}
</script>
<a href="%www%/profile" onmouseover="Rotate(2)" onmouseout="ResetRotate()">
<img alt="%habboName%" src="http://www.habbo.nl/habbo-imaging/avatarimage?figure=%look%&direction=2&head_direction=2&size=b" name="habbo_user_img" />
</a>
</div>
Re: Me Page Avatar Change
Amazing PEJump! I Love it :) It works perfect
Re: Me Page Avatar Change
thats hes php coding for yeh nice release mate
Re: Me Page Avatar Change
Here's it for PHPretro if anyone needs it:
PHP Code:
<div id="habbo-plate">
<script>
function Rotate(r) {
if (r == 8) { r = 0; }
document.habbo_user_img.src = 'http://www.habbo.nl/habbo-imaging/avatarimage?figure=<?php echo $user->figure; ?>&direction=' + r + '&head_direction=' + r + '&action=wav&gesture=sml&size=b';
var RotateTimeout = setTimeout('Rotate(' + (r + 1) + ');', 500);
}
function ResetRotate() {
clearTimeout(RotateTimeout);
document.habbo_user_img.src = 'http://www.habbo.nl/habbo-imaging/avatarimage?figure=<?php echo $user->figure; ?>&direction=2&head_direction=2&size=b';
}
</script>
<a href="<?php echo PATH; ?>/profile" onmouseover="Rotate(2)" onmouseout="ResetRotate()">
<img alt="<?php echo $user->name; ?>" src="http://www.habbo.nl/habbo-imaging/avatarimage?figure=<?php echo $user->figure; ?>&direction=2&head_direction=2&size=b" name="habbo_user_img" />
</a>
</div>
Re: Me Page Avatar Change
can someone show screens of wtf it's suppose to be lmao, link's not working so im just like ......
Re: Me Page Avatar Change
Re: Me Page Avatar Change
Good job, nice creativity.
Re: Me Page Avatar Change
How do you add this for phpretro?