Thrashkal's Avatar
Member
Level 39 Artisan Soldier
50

Forum Posts

1 - 20 of 40

    1
    11/15/2013 8:03 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    Yes these new musics are awesome, thanks C418
    1
    11/10/2013 12:11 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    Also comment everything you want to see in this map or something bugging after playing the map!

    Thanks to @PureBlueDragon for filming the demo!
    1
    11/10/2013 6:42 am
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    This is a bug. Find people with the same bug happening here: https://mojang.atlassian.net/browse/MC
    1
    11/09/2013 9:07 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    A forum signature please
    1
    11/09/2013 7:56 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    Both are working with the new launcher, so both difficult (or not, depending on your minecraft experience)
    1
    11/09/2013 7:50 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    Just do what you want - I'll say what I want to be changed after
    1
    11/09/2013 7:48 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    Could you make a banner for me? No skin necessary, just a forum signature like you?
    Color: Dark blue
    Text: Thrashkal - RPG/Adventure maps
    Second line (in small): Thrashkal.com
    Thanks
    1
    11/08/2013 4:29 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    Nope, I advertised like 5 times in 20 minutes yesterday.
    Your adverisement shouldn't look like this: "WOO LOOK DIS AWESOME SKINZ C'MON CHECK IT OUT !!" But like this: "Nice skins - <skins_theme> - Check it out here <member_url> "
    1
    11/08/2013 12:03 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    You can advertise in the chat
    1
    11/07/2013 4:36 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    I think Dinnerbone will add something he really wants to. He talk a lot about seasons this year.
    1
    11/07/2013 4:32 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    You should play this to see how I tried to create Warcraft-like quests http://www.planetminecraft.com/project/the-wrath-of-redge
    1
    11/07/2013 4:30 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    A replica of a game you really liked? (Maybe not something too much used like Zelda/Pokemon/Mario/...)
    1
    11/07/2013 10:49 am
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    After generating a village/mineshaft/stronghold, a .dat file appears in the "data" folder of your map. Since it's coded the same as the "level.dat", you could try to modify the village.dat with a NBT editor (NBTExplorer, NBTEdit,...) Though I've never tested it
    1
    11/07/2013 8:03 am
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    1
    11/07/2013 7:58 am
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    1
    11/07/2013 7:56 am
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    I don't know if your message is going to help him on PMC, ads and bad grammar aren't really appreciated
    1
    11/06/2013 6:55 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    Create a new project and add this to MAIN.JAVA

    public class Main {

    public static void main(String[] args) {
    Window win = new Window();

    }

    }


    Then create a class WINDOW.JAVA with this:

    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import java.awt.Color;

    public class Window extends JFrame{

    public Window()
    {
    this.setTitle("Thrashkal.com App - Java test");
    this.setSize(400,400);
    this.setLocationRelativeTo(null);
    this.setResizable(true);
    this.setUndecorated(false);
    this.setAlwaysOnTop(true);
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JPanel pan = new JPanel();
    pan.setBackground(Color.DARK_GRAY);
    this.setContentPane(new Panel());
    this.setVisible(true);

    }

    }


    Create a other class PANEL.JAVA with this:

    import java.awt.Graphics;
    import java.awt.Color;
    import java.awt.Font;
    import java.awt.Image;
    import javax.swing.JPanel;

    public class Panel extends JPanel{
    public void paintComponent(Graphics g){

    System.out.println("EXECUTED WELL!");

    //font variations settings
    Font fontBig = new Font("Verdana", Font.PLAIN, 18);
    Font fontSmall = new Font("*", Font.PLAIN, 16);
    //Title
    g.setFont(fontBig);
    g.setColor(Color.white);
    g.drawString("Thrashkal.com java test", 10,30);
    //menu
    g.setFont(fontSmall);
    g.setColor(Color.blue);
    g.drawString("Facebook page", 30,115);
    g.setColor(Color.cyan);
    g.drawString("Twitter", 30,140);

    }
    }


    But don't forget to understand what I've written, and then you'll see by yourself if there's a error and how resolve it. Try to learn with online schools.
    1
    11/06/2013 5:43 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    The real question is: Do you already have a game dev company?
    1
    11/06/2013 5:41 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    Something like this I tried to code a while ago:

    MAIN.JAVA

    public class Main {

    public static void main(String[] args) {
    Window win = new Window();

    }

    }

    WINDOW.JAVA
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import java.awt.Color;

    public class Window extends JFrame{

    public Window()
    {
    this.setTitle("Thrashkal.com App - Java test");
    this.setSize(400,400);
    this.setLocationRelativeTo(null);
    this.setResizable(true);
    this.setUndecorated(false);
    this.setAlwaysOnTop(true);
    this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JPanel pan = new JPanel();
    pan.setBackground(Color.DARK_GRAY);
    this.setContentPane(new Panel());
    this.setVisible(true);

    }

    }

    PANEL.JAVA

    import java.awt.Graphics;
    import java.awt.Color;
    import java.awt.Font;
    import java.awt.Image;
    import javax.swing.JPanel;

    public class Panel extends JPanel{
    public void paintComponent(Graphics g){

    System.out.println("EXECUTED WELL!");

    //font variations settings
    Font fontBig = new Font("Verdana", Font.PLAIN, 18);
    Font fontSmall = new Font("*", Font.PLAIN, 16);
    //Title
    g.setFont(fontBig);
    g.setColor(Color.white);
    g.drawString("Thrashkal.com java test", 10,30);
    //menu
    g.setFont(fontSmall);
    g.setColor(Color.blue);
    g.drawString("Facebook page", 30,115);
    g.setColor(Color.cyan);
    g.drawString("Twitter", 30,140);

    }
    }

    It works and you've also some other tests I've made with graphics classes
    1
    11/06/2013 5:15 pm
    Level 39 : Artisan Soldier
    Thrashkal
    Thrashkal's Avatar
    Are you an Elder Scrolls fan or just a Skyrim fan, not arguing, just filtering people who discovered the saga with Skyrim and the others who played Daggerfall or Morrowind before episode V.

1 - 20 of 40

Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome