• 0

    posted a message on [BETA] MCSkins - Keep track of downloads, views, and more!
    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:

    http://stonedknights.net46.net/ (only have to accept the terms of use/rules once)
    Posted in: Skins
  • 0

    posted a message on Minecraft Gift Code Requested
    Sorry M8, usually people don't do this & flame the OPs. >.<
    Posted in: Discussion
  • 0

    posted a message on A design program?
    http://www.getpaint.net

    Best free image editing software, EVA.
    Posted in: Discussion
  • 0

    posted a message on Why do spiders have to jump on my roof -.-
    Annoying spam above, (sigh).

    But anyways, I really think spiders are overpowered now. They run fast, hit hard, and climb walls. Bruce Lee has been reborn.
    Posted in: Discussion
  • 0

    posted a message on Minecraft Veteran, Requirements?
    Meh, since I purchased the game in Alpha, I'll just say I'm a Veteran just to make myself feel good. :tongue.gif:
    Posted in: Discussion
  • 0

    posted a message on Can you buy minecraft with a prepaid visa?
    Most likely...I mean...it's a credit card, isn't it? -.-
    Posted in: Discussion
  • 0

    posted a message on Redstone Burn-Outs
    They burn out now?
    Posted in: Discussion
  • 0

    posted a message on Minecraft Veteran, Requirements?
    Quote from itwasthatguy »
    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.
    Posted in: Discussion
  • 0

    posted a message on Minecraft Veteran, Requirements?
    Quote from Zancie »
    When did you join?


    Same as the date under my name. :biggrin.gif:
    Posted in: Discussion
  • 0

    posted a message on Minecraft Veteran, Requirements?
    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. ^.^
    Posted in: Discussion
  • 0

    posted a message on Imperial Grinder - Normal world, with big mob grinder
    Quote from ixcx »
    Oh so i see you have waypoint there.Now time to see where they go to.


    Not exactly sure what you mean. o.O - I don't really remember setting waypoints, hmm.

    Also, 107 downloads! Woo-hoo!
    Posted in: Maps
  • 0

    posted a message on Imperial Grinder - Normal world, with big mob grinder
    89 downloads!

    11 more 'till 100! Woo-hoo!
    Posted in: Maps
  • 0

    posted a message on MCSkins - New minecraft skin site!
    Updated site with new simple theme.
    Posted in: Discussion
  • 0

    posted a message on New Website: Minecraft-Seeds.net
    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.
    Posted in: Discussion
  • 0

    posted a message on MCSkins - New minecraft skin site!
    Fixed viewing & downloading system.

    Site is now fully functional!
    Posted in: Discussion
  • To post a comment, please .