-
Posts
68 -
Joined
-
Last visited
Content Type
Profiles
Forums
Events
Everything posted by Teath
-
Hello =) I was wondering if any of you wills to convert a login page template to a working McCodes v2.02 login page. I have sliced it using Adobe Photoshop CS5, and saved it as HTML, later converted to PHP. It has the same elements as the default login page, no screenshot areas, etc., just better design. I'm afraid I can't pay you at the moment, but for a good job I will make a custom design for one of your webpages. The custom design will be uncoded as well, it will be given to you with PSD files, html file and the PNG files. Here's the link to the layout I want converted: http://p3.i-city.co.cc (might be down due to some issues) Thanks, Teath
-
They are absolutely not worth that price, plus they have terrible quality.
-
No free things in this world.
-
Thank you all =) I will be making some more mods soon!
-
And how to do that?
-
gideon, what are the two dots in front of the "<?php"? I don't think they should be there. Nice tho =)
-
Way too crispy and detailed for a modern logo.
-
Good thing about Fortumo is that you can simulate the sms, without actually sending it. I would still like to stay to Fortumo, thanks. So I am still looking for someone to make me the mod =)
-
You have a slight mistake here, as in the database the time is recorded with minute precise, then if I refresh the jail page, the counter starts counting again from the past minute. Like, when I have 7 minutes left in jail, every time I refresh it starts counting from 7:00 again.
-
Could someone make me a mod that allows people to pay for donation pack through Fortumo? I have looked for that mod everywhere, and I haven't found any mods that allow integration of this. I am unable to pay you at the moment, but I'm sure we can get to an arrangement. I'd like to have it as soon as possible =) Contact me through my MSN: [email protected] Thanks.
-
That's nice, tho mine has the option to refill all bars =) But I like your's too.
-
Sorry, can't code that =( I'm not good enough yet =)
-
I made a small update to it, now there is a Back button after you refill something, so you don't have to get it from the menu. The Back button gets you back to the admin refill centre. That makes the using even more easier. I updated the topic with new code. Hope you enjoy it =) Sorry for double post.
-
I'm very happy to see so good comments for a mod that's actually very easy to make =) Thanks.
-
Thank you very much =)
-
Thanks =) It's a perfect mod for absolutely lazy admin =)
-
This is my first mod I have ever made =) This is a very simple mod that lets admins fill up they energy, brave, will or health and gets them out of jail or hospital with one click, so you don't have to go to staff panel, then edit your user, find the right box, etc. You just click a button. I took the crystal temple to the base of it. I hope you like it =) admincentre.php ??<?php include "globals.php"; global $db,$ir,$c,$h,$userid,$set; if($ir['user_level'] != 2) { die("403"); } if(!$_GET['spend']) { print "Welcome to the Admin Refill Centre! What would you like to do? [url='admincentre.php?spend=erefill']Energy Refill[/url] [url='admincentre.php?spend=brefill']Brave Refill[/url] [url='admincentre.php?spend=wrefill']Will Refill[/url] [url='admincentre.php?spend=hrefill']Health Refill[/url] [url='admincentre.php?spend=arefill']Refill All[/url] [url='admincentre.php?spend=nojail']No Jail[/url] [url='admincentre.php?spend=nohosp']No Hostpital[/url] "; } else { if($_GET['spend'] == 'erefill') { if($ir['energy'] == $ir['maxenergy']) { print "You already have full energy."; print " [url='admincentre.php']Back[/url] "; } else { $db->query("UPDATE users SET energy=maxenergy WHERE userid=$userid"); print "You have refilled your energy bar."; print " [url='admincentre.php']Back[/url] "; } } else if($_GET['spend'] == 'brefill') { if($ir['brave'] == $ir['maxbrave']) { print "You already have full brave."; print " [url='admincentre.php']Back[/url] "; } else { $db->query("UPDATE users SET brave=maxbrave WHERE userid=$userid"); print "You have refilled your brave bar."; print " [url='admincentre.php']Back[/url] "; } } else if($_GET['spend'] == 'wrefill') { if($ir['will'] == $ir['maxwill']) { print "You already have full will."; print " [url='admincentre.php']Back[/url] "; } else { $db->query("UPDATE users SET will=maxwill WHERE userid=$userid"); print "You have refilled your will bar."; print " [url='admincentre.php']Back[/url] "; } } else if($_GET['spend'] == 'hrefill') { if($ir['hp'] == $ir['maxhp']) { print "You already have full health."; print " [url='admincentre.php']Back[/url] "; } else { $db->query("UPDATE users SET hp=maxhp WHERE userid=$userid"); print "You have refilled your health bar."; print " [url='admincentre.php']Back[/url] "; } } else if($_GET['spend'] == 'arefill') { $db->query("UPDATE users SET brave=maxbrave WHERE userid=$userid"); $db->query("UPDATE users SET will=maxwill WHERE userid=$userid"); $db->query("UPDATE users SET hp=maxhp WHERE userid=$userid"); $db->query("UPDATE users SET energy=maxenergy WHERE userid=$userid"); print "You have refilled all your bars."; print " [url='admincentre.php']Back[/url] "; } else if($_GET['spend'] == 'nojail') { if($ir['jail'] == 0) { print "You are not in jail."; print " [url='admincentre.php']Back[/url] "; } else { $db->query("UPDATE users SET jail=0 WHERE userid=$userid"); print "You have been released from jail."; print " [url='admincentre.php']Back[/url] "; } } else if($_GET['spend'] == 'nohosp') { if($ir['hospital'] == 0) { print "You are not in hospital."; print " [url='admincentre.php']Back[/url] "; } else { $db->query("UPDATE users SET hospital=0 WHERE userid=$userid"); print "You have been released from hospital."; print " [url='admincentre.php']Back[/url] "; } } } $h->endpage(); ?> Then add a link to Main Menu. That's it =) Hope you'll enjoy it.
-
I agree above in some points. But, I personally like many special effects, so I wouldn't use it for my game. It still need a lot work to be done.
-
I can make them, $3 per icon.
-
I meant website budget.
-
Not enough. A good budget for a website is $4000 - $5000.
-
And your budget is?
-
Making a custom made website, need coders and designers.
Teath replied to kaine-'s topic in Game Projects
Wait a sec. You said in the main topic you made it all by yourself, and now you say you bought it? Sounds weird to me. -
Okay, I spent some hours looking through different galleries, and trying different tricks. New example. I really, really put some effort in this, so I hope you will like it =) I'm waiting for comments.