Are you one of those people that like to keep tight statistics on anything and everything? MCSkins allows you to upload skins with ease, and then the site automatically keeps track of how many downloads and views your uploaded skins have. Soon, users will also be able to post comments on skins and rate skins. So you will be able to see the average rating of all your skins.
Supporting Us
Do you want to help us get started? You can, and it's easy! Just upload skins to the site, and suggest the site to your friends! If we can get more and more skins uploaded to MCSkins, we can have a fairly large skin database, attracting more users to our site!
All supporters (people who upload a good amount of quality skins, post good amount of feedback & suggestions to improve the site) will receive a red username with a star beside it. You can see an example on the homepage for the user iStriide. If you have any questions regarding this, please, do ask!
Site Notices, Development
Site Theme
Right now, the site is in Alpha stage as you can see. We have a pretty basic theme, that may not even look attractive to most visitors. I'm currently trying to find someone that could design us a better theme for MCSkins, that can fit the feel of the site. If you think you could help us out with getting a quality theme, then hit me up on PM or just reply to this post!
Ideas! I need ideas!
Right now I'm currently low on ideas, and all suggestions & feedback would be greatly appreciated to help expand the site! So if you have even the slightest suggestion or idea that could improve the site, even if it's a little bit, please due bring it to my attention! I'm all for improving user's experiences at MCSkins!
Check us out!
I really recommend you read the full post first, to know whats happening around the site. :wink.gif:
You had to have lived through the creeper wars... It was bad, so many young boys/creepers died there... The worst part was going back home to tell your mom that your little brother died. I'm sorry mom! I tried to save him! *Cries*
No, but i'd say 4 months of playing, enough to know how things work.
When I say Veteran, I don't mean good at the game. I mean, veteran as in you were a player when Minecraft was just starting up.
I just got to thinking, whats considered a Minecraft veteran? A certain date, or if someone purchased the game in Alpha? I'm one of those people that like to brag that I was an early supporter. ^.^
Hey, when someone uploads a screenshot, it seems you do the URL only.
Heres a small code I wrote-up for you, to allow uploading (PNG only):
<?php
if(!$_FILES['file'])
{
echo "
<form action='filename.php' method='POST' enctype='multipart/form-data'>
Select a Screenshot: <input type='file' name='file' id='file'>
<input type='submit' value='Upload'>
</form>
";
}
else
{
if($_FILES['file']['error'] > 0)
{
echo "Sorry, an error occured while trying to upload the image ". $_FILES['file']['name']. "! POSSIBLE ERROR: No file selected.";
}
elseif($_FILES['file']['name'] > 15)
{
echo "Whoa there! Please reduce the name of the image, it cannot be greater than fifteen characters.";
}
elseif($_FILES['file']['type'] != "image/png")
{
echo "Only screenshots with the file format of .png are allowed!";
}
else
{
move_uploaded_file($_FILES['file']['name'],
"screenshots/". $_FILES['file']['name'] .".png")
echo "Your screenshot has been uploaded.";
}
}
?>
And for a search system:
<?php
$search = mysql_real_escape_string($_POST['search']);
if(!$search)
{
echo "You haven't entered in any search terms!";
}
else
{
$grab_data = mysql_query("SELECT seedname FROM table WHERE seedname LIKE '%$search%' LIMIT 20");
if(mysql_num_rows($grab_data) == 0)
{
echo "Sorry, no search results found.";
}
else
{
echo "Results found<hr>";
while($extract = mysql_fetch_assoc($grab_data))
{
echo "Seed Name: ". $extract['seedname'] ."</br>";
}
}
}
?>
Of course, you can manually edit it to suit your site.
0
Supporting Us
Do you want to help us get started? You can, and it's easy! Just upload skins to the site, and suggest the site to your friends! If we can get more and more skins uploaded to MCSkins, we can have a fairly large skin database, attracting more users to our site!
All supporters (people who upload a good amount of quality skins, post good amount of feedback & suggestions to improve the site) will receive a red username with a star beside it. You can see an example on the homepage for the user iStriide. If you have any questions regarding this, please, do ask!
Site Notices, Development
Site Theme
Right now, the site is in Alpha stage as you can see. We have a pretty basic theme, that may not even look attractive to most visitors. I'm currently trying to find someone that could design us a better theme for MCSkins, that can fit the feel of the site. If you think you could help us out with getting a quality theme, then hit me up on PM or just reply to this post!
Ideas! I need ideas!
Right now I'm currently low on ideas, and all suggestions & feedback would be greatly appreciated to help expand the site! So if you have even the slightest suggestion or idea that could improve the site, even if it's a little bit, please due bring it to my attention! I'm all for improving user's experiences at MCSkins!
Check us out!
I really recommend you read the full post first, to know whats happening around the site. :wink.gif:
http://stonedknights.net46.net/ (only have to accept the terms of use/rules once)
0
0
Best free image editing software, EVA.
0
But anyways, I really think spiders are overpowered now. They run fast, hit hard, and climb walls. Bruce Lee has been reborn.
0
0
0
0
When I say Veteran, I don't mean good at the game. I mean, veteran as in you were a player when Minecraft was just starting up.
0
Same as the date under my name. :biggrin.gif:
0
0
Not exactly sure what you mean. o.O - I don't really remember setting waypoints, hmm.
Also, 107 downloads! Woo-hoo!
0
11 more 'till 100! Woo-hoo!
0
0
Heres a small code I wrote-up for you, to allow uploading (PNG only):
And for a search system:
Of course, you can manually edit it to suit your site.
0
Site is now fully functional!