Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Custom [Service] Coding RevCMS Add-on's

Status
Not open for further replies.
Junior Spellweaver
Joined
Mar 12, 2015
Messages
111
Reaction score
8
Title says it all.
Use this format:

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_ Name (*):
_- What it does (*):
-_ -----------------EXTRA-------------
_- Session php code include: (Y/N)
-_ Checktheban code include: (Y/N)
_--_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
 
Newbie Spellweaver
Joined
Jan 28, 2015
Messages
16
Reaction score
0
Name: head badge
What it does: a system you can buy a badge of your head for an amount of vippoints.

Session php; yes
include ban; yes

Sorry for my english
 
Junior Spellweaver
Joined
Mar 12, 2015
Messages
111
Reaction score
8
Name: head badge
What it does: a system you can buy a badge of your head for an amount of vippoints.

Session php; yes
include ban; yes

Sorry for my english
For that it would need a generator and a gif saving system, If you can get that and I'll fix it. Else I can't Sorry.
 
Experienced Elementalist
Joined
Aug 26, 2012
Messages
248
Reaction score
49
Not sure how well you can code but if you had a db structure could you code a box thats lists all furni thats in a room?
 
Experienced Elementalist
Joined
Aug 26, 2012
Messages
248
Reaction score
49
images would be up to you but you have to get furni id from room_items then use that id to get the furni name from item_base i dont have time to do it do you think you can?
 
Joined
Feb 22, 2012
Messages
2,103
Reaction score
1,271
For that it would need a generator and a gif saving system, If you can get that and I'll fix it. Else I can't Sorry.

Very simple script for you to get Figure Data and save the .gif :

PHP:
<?php
function getHead($figure)
{
	return file_get_contents("https://www.habbo.com/habbo-imaging/avatarimage?figure={$figure}&action=std&gesture=std&direction=2&head_direction=2&size=n&img_format=gif&headonly=1");
}

function saveFigure($fileName, $content)
{
	file_put_contents($fileName, $content);
}
$figure = "hd-180-1.ch-255-66.lg-280-110.sh-305-62.ha-1012-110.hr-828-61";
saveFigure(md5($figure) . ".gif", getHead($figure));
?>

Yes, it's hardcoded, don't bully me

You can set the figure, so it will go to habbo.com, fetch the image, save in a gif. So you basically needs to do is a fetch to current user style, and use it to fetch the image. No mystery.

Thanks by helping the community with your services,

Lucca
 
Still alive.
Loyal Member
Joined
Apr 13, 2013
Messages
1,145
Reaction score
886
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_ Name (*): Habbo Bundles
_- What it does (*): You can buy a bundle of Credits, Duckets, Furnis or Badges in once for diamonds.
-_ -----------------EXTRA-------------
_- Session php code include: Yes
-_ Checktheban code include: Yes
_--_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
 
Elite Diviner
Joined
Dec 16, 2013
Messages
441
Reaction score
28
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_ Name (*): Paypal Shop (Auto)
_- What it does (*): Make users VIP / give them diamonds/credits/duckets/furniture. When a user buy it in the shop, they will get it without an admin need to give them anything
-_ -----------------EXTRA-------------
_- Session php code include: Yes
-_ Checktheban code include: No
_--_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
 
Joined
Sep 10, 2011
Messages
778
Reaction score
138
Why is there an option for Checktheban when you can code it into global.php or even your template engine...
if(isset($_SESSION["user"]["username"])) { checktheban }
fr guys
 
Newbie Spellweaver
Joined
Oct 8, 2012
Messages
89
Reaction score
0
Title says it all.
Use this format:

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
-_ Name: a revcms home/profile page
_- What it does (*):shows users credit and duckets and so users can make comments and also have a YouTube video on it so users can display other users video sorta like fresh
-_ -----------------EXTRA-------------
_- Session php code include: yes
-_ Checktheban code include: yes
 
Status
Not open for further replies.
Back
Top