PDA

View Full Version : Mini-I.FM Trophy Script



ReviewDude
13-02-2007, 10:38 PM
Hey,

You may have seen Invent's recent thread about Mini-I.fm (http://mini-i.fm)'s Trophy script. Well we've now implemented it fully into the usersystem.

What you do is select a User to send it to, type in a message and select its colour. The trophy lands in their inventory, and a copy of it goes into yours. When the trophy is clicked, you get an image like this:

http://mini-i.fm/troph/17.gif (http://www.mini-i.fm)

as well as HTML and BB Code should you wish to post it on a website or Forum.

Anyway, what I would like you to do is to post any comments, suggestions, bug finds etc. so you'll need to sign up to the User System (http://mini-i.fm), click Trophy Catalogue and try it out! If you don't know anyone on the System, send it to yourself, or to me (Trish).

Thanks, and anyone who posts a comment & their username will receive 100 credits onto their account.

Regards,

ReviewDude & Invent
Owners, Mini-I.fm

ScottDiamond
13-02-2007, 10:45 PM
I love it, very nice. :)

I'm mr.geeza on your system.

Lysine
13-02-2007, 10:48 PM
It's a shame for having a name called kk :rolleyes:

Could you un-ban it as i cant register another account or see the login box :)

ReviewDude
13-02-2007, 10:49 PM
PMed you the Credit Code (via the system).

EDIT: I'll see what I can do QPR

EDIT EDIT: Unbanned.

Invent
13-02-2007, 10:59 PM
Hey.

You can now buy an item of furniture on the system as a gift and the furni will be sent to the chosen members hand along with a gift tag.

An example of one is:

http://mini-i.fm/pres/1.gif

To see a gift tag just click on the piece of furniture either in the members list or your inventory.

crans
13-02-2007, 11:07 PM
how come i can buy everything without creditS? lol.

Invent
13-02-2007, 11:09 PM
We are having some problems with credits.

We don't mind about it atm, it should all be sorted later.

Also, you will get negative credits so once its fixed, you will be ****** ha ;p

Invent
13-02-2007, 11:24 PM
Credits are now fixed ;]

Bomb-Head
14-02-2007, 11:04 AM
Wow, nice :D

Jackbee
14-02-2007, 11:19 AM
Where do you view how many credits you have?

Kanker.
14-02-2007, 11:36 AM
I'm Mathew on system

http://mini-i.fm/troph/28.gif (http://www.mini-i.fm)

Ini
14-02-2007, 11:49 AM
thats really good.

well done

Luckyrare
14-02-2007, 01:28 PM
Where do I view the credits?

Ini
14-02-2007, 01:30 PM
you have to go to members search for urself and click ur name, then it tells u

EDIT: what features do you get with the mini-Ifm club?

Invent
14-02-2007, 03:53 PM
Yeah find your profile to see your credits. Im making a page now that will show your information as soon as you login.

Also, Mini-I Club is still being developed but currently when you purchase it you get all these signatures:

http://habbojungle.net/a/Admin.png

http://habbojungle.net/b/Admin.png

http://habbojungle.net/c/Admin.png

http://habbojungle.net/d/Admin.png

You will also receive a special badge (im adding it now).

Once you have bought the club go to www.HabboJungle.net (http://www.HabboJungle.net) to retrieve all your extras!

EDIT: What badge should I give to Mini-I Club Members? It can be ANY Habbo Badge.

DCeption
14-02-2007, 04:01 PM
simon ya wee nerd :D It looks awesome!

Invent
14-02-2007, 04:05 PM
LOL Thanks :P

Btw, Mini-I Club now expires. You can buy it for 1 month :) You will be able to buy it for longer soon.

Invent
14-02-2007, 04:32 PM
Cant edit post.

You can now buy the club for 1, 3 or 5 months (:

1 Month = 100 Credits
3 Months = 300 Credits
5 Months = 500 Credits.

We will soon have offers when you buy for more months.

Ini
14-02-2007, 04:40 PM
Ooo love the images :D

Invent
14-02-2007, 08:29 PM
Ive added the bank account feature. Create yours today !

nets
15-02-2007, 12:18 AM
Nothing really spectacular.


<?php

// During typical usage, these would be POST data.

$name = 'Bob';
$message = "Hello!\nThis is an example message!\n\nChange as required.";

function imagestringshade($img, $fnt, $inx, $iny, $str) {
global $s1, $s2;
imagestring($img, $fnt, $inx, $iny--, $str, $s2);
imagestring($img, $fnt, $inx, $iny, $str, $s1);
}

function addmessageline(&$tmp, $key) {
global $im, $f1;
$iny = (int)(10*$key)+35;
imagestringshade($im, $f1, 27, $iny, $tmp);
}

$im = imagecreatefromgif('back.gif');
$s1 = imagecolorallocate($im, 0x7F, 0x55, 0x2B);
$s2 = imagecolorallocate($im, 0xFF, 0xF3, 0xB7);
$f1 = imageloadfont('voltar.gdf');

imagestringshade($im, $f1, 22, 127, date("j-m-y"));
imagestringshade($im, $f1, 275-strlen($name)*7, 127, $name);
$messages = explode("\n", wordwrap($message, 40, "\n"));
array_walk($messages, 'addmessageline');

header('content-type: image/gif');
imagegif($im);
imagedestroy($im); // Can output to a file.

?>

Output:

http://xs412.xs.to/xs412/07074/127.0.0.1.gif

Obviously in a real situation, you'd have a form and be validating the data. However, implementing that would be far from trivial.

Invent
15-02-2007, 01:24 AM
Nice share for other people.

ScottDiamond
15-02-2007, 05:00 PM
Nothing really spectacular.


<?php

// During typical usage, these would be POST data.

$name = 'Bob';
$message = "Hello!\nThis is an example message!\n\nChange as required.";

function imagestringshade($img, $fnt, $inx, $iny, $str) {
global $s1, $s2;
imagestring($img, $fnt, $inx, $iny--, $str, $s2);
imagestring($img, $fnt, $inx, $iny, $str, $s1);
}

function addmessageline(&$tmp, $key) {
global $im, $f1;
$iny = (int)(10*$key)+35;
imagestringshade($im, $f1, 27, $iny, $tmp);
}

$im = imagecreatefromgif('back.gif');
$s1 = imagecolorallocate($im, 0x7F, 0x55, 0x2B);
$s2 = imagecolorallocate($im, 0xFF, 0xF3, 0xB7);
$f1 = imageloadfont('voltar.gdf');

imagestringshade($im, $f1, 22, 127, date("j-m-y"));
imagestringshade($im, $f1, 275-strlen($name)*7, 127, $name);
$messages = explode("\n", wordwrap($message, 40, "\n"));
array_walk($messages, 'addmessageline');

header('content-type: image/gif');
imagegif($im);
imagedestroy($im); // Can output to a file.

?>

Output:

http://xs412.xs.to/xs412/07074/127.0.0.1.gif

Obviously in a real situation, you'd have a form and be validating the data. However, implementing that would be far from trivial.

It's very sad you done that, you should let others do it themself. Mini-I have tried to be unique and make a great fansite with these features and you go and give out the code?

I feel sorry for Simon now. ;/

Dentafrice1
15-02-2007, 09:45 PM
Thats sad, Us fansites spend hours days and weeks coding things like this and you sad idiots come along and post it for everyone to use.

What a shame.

You could have made it for yourself but not release it.

Invent
15-02-2007, 09:49 PM
Thats sad, Us fansites spend hours days and weeks coding things like this and you sad idiots come along and post it for everyone to use.

What a shame.

You could have made it for yourself but not release it.

Gah, exactly what I wanted to post, but I thought I would be nice.

But actually I don't feel very nice atm, so scrap that. There was no point in releasing then code, as Kevin said we spend hours, days creating these things for our sites trying to make them unique. Then people like you just copy the idea and wreck it for us. There was honestly no point in posting the code.

Dentafrice1
15-02-2007, 09:52 PM
Im agreeing with this,

You are wrecking most of the sites now coding features like the imager for them that Skylightlobby and Mini-I.FM have worked hard to create. Neither one of our sites rip of each other. We share ideas and help each other.. im not saying its not a competition to get on top but we all want our sites to be unique.

If my site has trophys its not because I ripped it or used your code, its cause I made it for my site.. not got it off some cheesy dude who releases things like that.

Sorry if that made no sense, im just angry.

Invent
15-02-2007, 09:55 PM
Totally agree +rep

Dentafrice1
15-02-2007, 09:56 PM
Thanks :) +REP Back.

Im not trying to be mean nets, but that was uncalled for.

nets
16-02-2007, 01:12 PM
Not my problem it takes you "hours and weeks" to code something I did in less than 10 minutes. Personally, I believe in open source ethics; if everyone was as selfish as yourselves then you wouldn't even have access to PHP anyway. Do you think Microsoft cries every time a new Linux distribution is released? No. Anyhow, my script adds a shadow (resembling Habbo trophies) so it's not the same as yours anyway. (-:

Dentafrice1
16-02-2007, 01:19 PM
Don't start with open source ethics and selfish?

Microsoft crys when anything is released so don't give us that ****.

Big whoop on how long it took you? Now everyone is going to have it on their site and we no longer have unique features.

nets
16-02-2007, 01:31 PM
I should really think of the consequences before helping people out! I've gone and ruined the thing I love the most, your site having unique features! Now where will I find a resource for a game I'm way too old to play, which has unique features?

:'(

Dentafrice1
16-02-2007, 01:54 PM
Don't get smart assy with me. I respect your opinion or whatever you want to call it. If your too old to play, just like Joe-Commins why are you on a forum dedicated to Habbo.

It doesnt say www.placewithnothingtodowithhabbowhereeveryonecanc omeforum.com

its wwww.habboxforum.com

notice the Habbo(x) in it?

If you are too old to play then go to a coding forum, and release things. But why ruin our fun and enjoyment when your too old to play.

Invent
16-02-2007, 04:41 PM
Agreed. +Rep (When I can)

letisix
16-02-2007, 04:51 PM
Don't get smart assy with me. I respect your opinion or whatever you want to call it. If your too old to play, just like Joe-Commins why are you on a forum dedicated to Habbo.

It doesnt say www.placewithnothingtodowithhabbowhereeveryonecanc omeforum.com (http://www.placewithnothingtodowithhabbowhereeveryonecanc omeforum.com)

its wwww.habboxforum.com

notice the Habbo(x) in it?

If you are too old to play then go to a coding forum, and release things. But why ruin our fun and enjoyment when your too old to play.


Wow, Good speach +Rep xD

ZAG
16-02-2007, 05:03 PM
I suppose I agree with you. This could've made your site unique but now the source is there...

F32
16-02-2007, 05:03 PM
Wow, Good speach +Rep xD
Hardly a speach, more the truth.

About time aswell.

+Rep.

nets
16-02-2007, 05:09 PM
I used to play Habbo about 2 years ago. Not every thread on this site is exclusively Habbo related.

Just because you don't want me to release a script, doesn't mean everyone else doesn't. I'm not going to succumb your wishes simply because you want it for yourself. If you don't have the capability to create something which other people would find hard to, then don't expect to have a wholly unique website. Perhaps if you spent more time coding, rather than promoting your faux-coding skills then you'd get somewhere.

I help others on this forum simply for practise. I haven't ever expected anything in return and I don't need to impress anyone for self gratification.

letisix
16-02-2007, 05:14 PM
I used to play Habbo about 2 years ago. Not every thread on this site is exclusively Habbo related.

Just because you don't want me to release a script, doesn't mean everyone else doesn't. I'm not going to succumb your wishes simply because you want it for yourself. If you don't have the capability to create something which other people would find hard to, then don't expect to have a wholly unique website. Perhaps if you spent more time coding, rather than promoting your faux-coding skills then you'd get somewhere.

I help others on this forum simply for practise. I haven't ever expected anything in return and I don't need to impress anyone for self gratification.

And in your Previous Post "Not my problem it takes you "hours and weeks" to code something I did in less than 10 minutes."

Dentafrice1
16-02-2007, 05:15 PM
Yes whatever you say Mr. Nets!

You help people. yes.

But when you advertise something unique to your site, its nice not to release it and let the people figure it out themselves. Like we do.

If they figure it out, they learn more PHP and then can develop new things.

You can help but why spoon feed them everything? Its just right there on the plate.. they copy and paste and never learn.

Thats not helping, thats sugarcoating spoon feeding. I want people to learn, not be given the script.

nets
16-02-2007, 05:19 PM
Yes whatever you say Mr. Nets!

You help people. yes.

But when you advertise something unique to your site, its nice not to release it and let the people figure it out themselves. Like we do.

If they figure it out, they learn more PHP and then can develop new things.

You can help but why spoon feed them everything? Its just right there on the plate.. they copy and paste and never learn.

Thats not helping, thats sugarcoating spoon feeding. I want people to learn, not be given the script.
Perhaps people don't want to learn, I'm giving them the option. They don't have to look at my code, if anything it's an asset to their learning since they can review my code.


And in your Previous Post "Not my problem it takes you "hours and weeks" to code something I did in less than 10 minutes."
Sorry, how is that related to what I said whatsoever?

Dentafrice1
16-02-2007, 05:20 PM
Perhaps people don't want to learn, I'm giving them the option. They don't have to look at my code, if anything it's an asset to their learning since they can review my code.


Sorry, how is that related to what I said whatsoever?
Interesting point.

But thats kind of like going to school.. and recieving the answer book to all the assignments.. hows that going to help? Other then get you by with assignments by copying.. you never learn.

letisix
16-02-2007, 05:21 PM
Lol he -Rep's me for being a crowd Follower And No I ain't a Crowd Follower i Just say whats on my Mind nobody eles. So -Rep

Dentafrice1
16-02-2007, 05:26 PM
Who -repped you?

Blob
16-02-2007, 05:28 PM
I agree with nets. Tbh, not everyone is lucky enough to be able to use GD, like me. Maybe we arent going to use the trophy, maybe we will change the image. So its good he released some good code +rep to nets. And PM me I need more scripts like that lol

nets
16-02-2007, 05:29 PM
Interesting point.

But thats kind of like going to school.. and recieving the answer book to all the assignments.. hows that going to help? Other then get you by with assignments by copying.. you never learn.
If people truly want to learn then they would have the self control to (and I quote myself) "review" the code. That's surely how I learned to begin with. Also, I'm giving people who perhaps don't have the time to code it the chance to have it on their site without doing the hard work. I'm sure Thomas Edison is turning over in his grave after learning you're using his light bulb, without creating your own alternative!

Jamus_Solari
16-02-2007, 05:30 PM
Interesting point.

But thats kind of like going to school.. and recieving the answer book to all the assignments.. hows that going to help? Other then get you by with assignments by copying.. you never learn.

Its easier for people to learn from examples than trying to guess how to do it.
You're just jealous that nets made a better script than you, and took less time to do so.

Dentafrice1
16-02-2007, 05:31 PM
If people truly want to learn then they would have the self control to (and I quote myself) "review" the code. That's surely how I learned to begin with. Also, I'm giving people who perhaps don't have the time to code it the chance to have it on their site without doing the hard work. I'm sure Thomas Edison is turning over in his grave after learning you're using his light bulb, without creating your own alternative!
Whatever, im not continuing this argument on as it will result in the thread being closed etc. If you want to post a point on this argument PM me.

Dentafrice1
16-02-2007, 05:32 PM
Its easier for people to learn from examples than trying to guess how to do it.
You're just jealous that nets made a better script than you, and took less time to do so.
Actually im not Jealous? How is that a better script from me, I dont even work for Mini-I, Its not better then mine, its almost the same exact thing without the shadow.

And dont tell me im jealous when im not. -REP

Sygon..
16-02-2007, 05:35 PM
**Removed**

Edited by Bomb-Head (Forum Moderator): Please don't offend other forum members, thanks :)

Dentafrice1
16-02-2007, 05:39 PM
all you ******** need to get your own head out of your own ***'s

Josh is one of the best coders i know, that trophy script isnt even hard to do its some basic GD BIG DEAL, atleast he has the balls to do stuff for free - because im all about money, dentafrice seriously get a life everytime someone releases a php script of habbo your like

**** I M4d3 1t f1rst !! j00 n00b

grow up this is php it was ment for others to code it to.
IT is not your script he made it his own and its better your probaly just jealous. Infact if you keep acting like a stuck up idiot who has sheep BAA +REP I BONE YOU EVERYDAY FOR MAKING **** COMMENTS.

I will personally make every feature on your fansite(S) and release them for free. just to **** you off.

Listen, That made absolutely no sense.

You avoided the filter so much it looked like something Alterasion/Greco would write.

Serioulsy.. grow up.

If you want to continue PM me as I said above. Its nothing to discuss on here.

Im just saying what Simon wouldnt say. He feels the same way as me.. and so does the other fansite owners who get their scripts released free daily.

If you want to reply to this PM me.. not reply here.

nets
16-02-2007, 05:40 PM
They're bringing out the heavy ammunition, reputation points! I'm allegedly a "stpid copyier".


PopC@t says:
lol
PopC@t says:
u know that idiot
josh says:
yeah
PopC@t says:
he good repped me by mistake

Sygon..
16-02-2007, 05:41 PM
Listen, That made absolutely no sense.

You avoided the filter so much it looked like something Alterasion/Greco would write.

Serioulsy.. grow up.

If you want to continue PM me as I said above. Its nothing to discuss on here.

Im just saying what Simon wouldnt say. He feels the same way as me.. and so does the other fansite owners who get their scripts released free daily.

If you want to reply to this PM me.. not reply here.

oh come on kevin you can do better than that where's the - rep !! i was waiting for it.

you sure have changed your tune, and listen i dont need to grow up i was telling YOU to grow up because your the one who needs to.

Dentafrice1
16-02-2007, 05:42 PM
They're bringing out the heavy ammunition, reputation points! I'm allegedly a "stpid copyier".
I didnt give you a rep saying Stupid Copier.

I dont even think I bad repped you and if I did I wouldnt say nothing like stpidcopyier, and who is PopC@T?

Im not against you here, im not mad at you, I have my opinion and you have yours. Its a simple discussion.


Actually I have grown up.. and I didn't bad rep you because whats the point?

Im not the one re-registering here over and over because I get banned ;)

You dont see a banned in my usertitle and those ruby stars as a banned usergroup.

Why do you get registering in the first place? If your banned it must mean your not wanted.

nets
16-02-2007, 05:44 PM
No, that other guy bad repped me. Jamus Solari is PopC@t, he's some kid who saw me posting on this during my computar class.

Dentafrice1
16-02-2007, 05:46 PM
Oh..
Anyways.. I just dont think you should have released it. My opinion is I think people should learn.

You have a different opinion on this.. thats great. Im not dissing it. We just look at things two different ways.

+REP ;)

timROGERS
16-02-2007, 05:47 PM
Good, this argument is finally ending :P I have to say, I agree with open sourcing things :)

Sygon..
16-02-2007, 05:48 PM
I didnt give you a rep saying Stupid Copier.

I dont even think I bad repped you and if I did I wouldnt say nothing like stpidcopyier, and who is PopC@T?

Im not against you here, im not mad at you, I have my opinion and you have yours. Its a simple discussion.


Actually I have grown up.. and I didn't bad rep you because whats the point?

Im not the one re-registering here over and over because I get banned ;)

You dont see a banned in my usertitle and those ruby stars as a banned usergroup.

Why do you get registering in the first place? If your banned it must mean your not wanted.

Hmm who cares if i got banned i was banned for saying what i believe this is a idiotic forum full of idiots like you hey why am i using it, to bring the light into your eyes that you are an idiotic, immature and ignorant noob, list of three hey? You cant say anything about me ohh i got banned who caress no one i can make another acount if i wanted to thats my choice no one dis respects me because i got banned hey? only fools like you using it agaisnt me in an argument.

If your not mad at him why do you have to go and start this whole argument just do what simon did, hey i wouldnt like it but thats life it itsnt hard to make, now if you continue to act like an immature ******* i will release all the scripts on your site custom coded and improved then argue with me about that you sadistic moron. No and being banned doesnt mean i wasnt wanted it means i broke a rule - get a life. wheres your little sheep i dont hear no "baa's" anymore




And dont tell me im jealous when im not. -REP

Wootzeh
16-02-2007, 05:48 PM
They're habbo fansites, your script was going to get copied soon enough anyway.

Dentafrice1
16-02-2007, 05:49 PM
I agree with open sourcing things to an extent.

If someone made a product like Dreamweaver. And someone goes and makes the same EXACT thing.. design buttons everything. And releases it free.. macromedia/adobe has the right to be angry..

But anyways.. its ending. Opensource ftw.

Sygon..
16-02-2007, 05:51 PM
I agree with open sourcing things to an extent.

If someone made a product like Dreamweaver. And someone goes and makes the same EXACT thing.. design buttons everything. And releases it free.. macromedia/adobe has the right to be angry..

But anyways.. its ending. Opensource ftw.

Thats life you get used to it.

You have totally changed your tune

You know josh did nothing wrong yet you still argued with him you should admit that you are wrong some times and you should say sorry to HIM. not masking it up with OPEN SOURCE FTW. say sorry itll end.

nets
16-02-2007, 05:52 PM
Dreamweaver is under copyright protection. I'm guessing my script has no or little similarities to yours, other than the actual image (which belongs to Habbo).

Dentafrice1
16-02-2007, 05:54 PM
Why should I say sorry, I wasn't flaming him.

Again I say.. its two different opinions on that. If I offended josh or anything sorry.

If he wants to release stuff.. fine go ahead.

No one is stopping him.. its his choice if he wants to make something and release it.

Thats not to say everyone will be for what he is releasing as it may hurt another site or company.

Since your all about money Sygon,
If you made something, and you were making tons of money off that product,

and someone made the exact same thing, and released it free and you made no more money.. what would you say..?

Sygon..
16-02-2007, 05:55 PM
Why should I say sorry, I wasn't flaming him.

Again I say.. its two different opinions on that. If I offended josh or anything sorry.

If he wants to release stuff.. fine go ahead.

No one is stopping him.. its his choice if he wants to make something and release it.

Thats not to say everyone will be for what he is releasing as it may hurt another site or company.

Since your all about money Sygon,
If you made something, and you were making tons of money off that product,

and someone made the exact same thing, and released it free and you made no more money.. what would you say..?

I would be a man and do what simon did:

Thats nice of you nets

But behind his back i would be like

Oh fgs josh released the script little *******

You dont always have to put your thoughts in the open ¬¬

nets
16-02-2007, 05:57 PM
I wasn't offended.

Oh Blob, if you want some more scripts..
http://habboxforum.com/showthread.php?t=272942

Dentafrice1
16-02-2007, 06:16 PM
Haha one of my threads..

Thats a nice one.. I just can't figure out how they do the spacing.

Blob
16-02-2007, 07:14 PM
OK, dentafrice + REP. After reading paged 6+7 from where I posted, it seems this is actually preeetty stupid to be arguing about.

Dentafrice1
16-02-2007, 07:29 PM
Yep I know. Its stupid :P

Invent
16-02-2007, 07:47 PM
Ive been just laughing at this thread. Always saying "lmao@the thread on hxf" to everyone on my MSN list ;p

F32
16-02-2007, 07:52 PM
^- I feel left out in that case.

ElliotA
16-02-2007, 08:31 PM
wow that script is great. well done invent/simon

Want to hide these adverts? Register an account for free!