• 2

    posted a message on Virus Removers: TRUST NOBODY!
    This made me chuckle. (y)
    Posted in: Hardware & Software Support
  • 1

    posted a message on Making a Minecraft like game to practice Java.
    Quote from NeHatchick_Verma

    Hello guys! I've been always wanting to make a computer game, a playable finished one too. At the moment I don't have much experience or knowlege with java, wich is my perferred language of choice since I do know some of it. I have successfully made a few plugins using the Bukkit API, and working on a mod to practice more.

    As of now I was wanting to make a minecraft-like game just to practice and test what I and java can do. I never plan to sell this or even finish it, unless it really turns into something completely different from Minecraft.

    I already have Eclipse and Java SDK, but I don't have any good 3D Engine or any good tutorials. I have seached some on youtube, but I find it difficult to follow videos. I like text and pictures, which seems to be a hard to find (especially one I can actually understand). Any tutorials and/or engines you can recomend? I know there's LWJGL, but it's a bit too low end for me, but I can still try!

    Thank you!

    Don't jump straight to making a game to learn a language. Learns the ins and outs of the language first then apply it practically. It's like saying 'I'm going to build a complete house without any knowledge of how I do it'. I mean sure, you might finish a 'house' but chances are it is poorly constructed and broken.
    Posted in: Computer Science and Technology
  • 5

    posted a message on Things to do while your computer is turing on
    Sit looking at the screen and use hand actions to make it look like you have magic powers and are controlling the boot sequence.
    Posted in: Computer Science and Technology
  • 1

    posted a message on [SERVER/WEB TOOL]Player List
    So I was bored and whipped this up. It is a basic website playerlist that you could use for your server. The list updates every 3 seconds and is easy to use.

    NOTE: Make sure you have enable-query set to true in your server properties or it will not work

    A live version of the playerlist can be seen here:

    http://60.234.250.8/....net&port=25565


    To implement it in your website, simply add this to your website:

    <iframe style="border: 0px;padding: 0px;margin: 0px" src="[url="http://60.234.250.8/?ip=skyblock.net&port=25565"]http://60.234.250.8/....net&port=25565[/url]" width="217px" height="300px"></iframe>


    All you need to do to configure your server is replace skyblock.net with your ip and 25565 with your minecraft port. Then

    Enjoy :)
    Posted in: Minecraft Tools
  • 1

    posted a message on Premium Account Validation Script
    Just thought I'd make the code a little easier for some people. Create a file called 'Minecraft.class.php' and add the php code:

    class Minecraft {
    // Code written by DanielRHarris (DanielRH)
    // Code written for VectronCraft (IP: MC.VectronCraft.com -- Website: www.VectronCraft.com)
    // PHP Function to check whether the minecraft username ($mcUser) is a premium minecraft account holder
    function check_user($mcUser)
    {
    // $check_mcUser gets the contents of the file from minecraft.net that does the checking for premium user
    $check_mcUser = file_get_contents('http://www.minecraft.net/haspaid.jsp?user='.$mcUser.'');
    // If $check_mcUser is true (premium user), it executes the code within
    if ($check_mcUser == 'true') {
    return true;
    }
    // If $check_mcUser is not true, it executes the code within the else statement
    else {
    return false;
    }
    }
    
    }


    Then all you have to do is the follwing:

    include('Minecraft.class.php');
    
    $verify = new Minecraft();
    $mc_user = $_GET['mc_user'];
    $valid = $verify::check_user($mc_user);
    
    if($valid) {
    //user is premium
    } else {
    //user is not premium
    }
    Posted in: Minecraft Tools
  • 2

    posted a message on Preliminary programming advice
    I like the ideas you have so far. So far I haven't actually seen a game that allows a user to cut through (In anyway they like) an object like you have stated. I feel the hard thing in following this idea would be to not make it like Minecraft. Although there are many ways you could go with this idea you will always have idiots saying 'Oh you copied Minecraft' which is a idiotic statement. Minecraft probably wouldn't have been around if it wasn't for Infiniminer or other games with similar mechanics.

    I've also wanted to get into using Unity, but the UI inside it scares me. I suppose I'd have to spend some time getting used to it.


    I would be very interested in hearing more about this game as it progresses further (If it does).
    Posted in: Computer Science and Technology
  • 1

    posted a message on Font help
    It looks like something you made in paint.. ._.
    Posted in: Computer Science and Technology
  • 1

    posted a message on Java Help
    You can use this:

    URL url = new URL(MainClass.class.getClass().getResource("filename.png"));
    yourimage = ImageIO.Read(url);


    Using
    MainClass.class.getClass().getResource("filename.extension")


    It will load resources from the directory of the main class (works as class files or jar file)

    Hope this helps.
    Posted in: Computer Science and Technology
  • 1

    posted a message on Could This be a virus?
    No it's not a virus. Windows automatic updater is a feature on most, if not all windows computers.
    Posted in: Computer Science and Technology
  • 2

    posted a message on Minecraft logo generator (newest font)
    So someone requested this so i thought i'd whip it up. The design of the site itself isn't pretty, but it is functional.. Enjoy :)

    Link Removed
    Posted in: Minecraft Tools
  • To post a comment, please .