Dr_Steve's Avatar
Member
Level 43 Master Creeper
38

Forum Posts

81 - 100 of 549

    Dr_Steve
    07/07/2015 9:08 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    Spigot is awesome! You shall use it
    1
    Dr_Steve
    07/06/2015 9:01 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    I tried it too. I diamonded and refreshed. And it went back to zero. It is probably a bug or something
    1
    Dr_Steve
    07/06/2015 8:58 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    I saw it on MCPE!
    1
    Dr_Steve
    07/05/2015 9:15 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    More specifically, in books and quills use the § symbol. For /say in Vanilla MC, for example, use /say PLAYER {"color":"gray","text":"TEST"}

    If { and } dont work use [ and ] . Replace gray with a list at http://minecraft.gamepedia.com/Color_Codes#Color_codes.

    Look for "Technical Name" in the chart
    1
    Dr_Steve
    07/05/2015 9:11 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    You could advertise it in PMC chat in server hall every 15 minutes (NOT lobby!).

    Try looking for free advertising when available and other stuff too
    1
    Dr_Steve
    07/05/2015 9:09 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    You give your public IP to people outside your local area network. (example: Someone using a different Internet/network connection than yours)

    YOu use your IPv4 for people in your same local area network. (example: Your brother is playing MC on his PC is connectec to your network.)
    1
    Dr_Steve
    07/05/2015 8:34 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    I don't think it is entirely, one part said

    "SCHWERWIEGEND: Unable to launch java.lang.ClassNotFoundException: net.minecraft.client.main.Main at net.minecraft.launchwrapper.LaunchClassLoader.findClass(LaunchClassLoader.java:179)"
    and
    "Caused by: java.lang.NullPointerException"

    One part probably was unable to launch the ClassNotFoundException, at the (launchwrapper) and was caused by a null pointer exception.

    This showed a question about what NullPointerException, and one answer showed what it is. I would usually think those are caused by bugs
    1
    Dr_Steve
    07/05/2015 8:29 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    You probably should; it could be a bug or something
    1
    Dr_Steve
    07/05/2015 8:17 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    Looks like one of the mods installed caused the crash. Particularly there was a ticking entity that caused a null pointer exception.

    Looks like its from some MorePlanets mod


    A question from stack overflow

    Answer:

    http://stackoverflow.com/questions/2183 ... o-i-fix-it

    When you declare a reference variable (i.e. an object) you are really creating a pointer to an object. Consider the following code where you declare a variable of primitive type int:

    int x;
    x = 10;
    In this example the variable x is an int and Java will initialize it to 0 for you. When you assign it to 10 in the second line your value 10 is written into the memory location pointed to by x.

    But, when you try to declare a reference type something different happens. Take the following code:

    Integer num;
    num = new Integer(10);

    The first line declares a variable named num, but, it does not contain a primitive value. Instead it contains a pointer (because the type is Integer which is a reference type). Since you did not say as yet what to point to Java sets it to null, meaning "I am pointing at nothing".

    In the second line, the new keyword is used to instantiate (or create) an object of type Integer and the pointer variable num is assigned this object. You can now reference the object using the dereferencing operator . (a dot).

    The Exception that you asked about occurs when you declare a variable but did not create an object. If you attempt to dereference num BEFORE creating the object you get a NullPointerException. In the most trivial cases the compiler will catch the problem and let you know that "num may not have been initialized" but sometime you write code that does not directly create the object.

    For instance you may have a method as follows:

    public void doSomething(Integer num){
    //do something to num
    }

    in which case you are not creating the object num, rather assuming that is was created before the doSomething method was called. Unfortunately it is possible to call the method like this:

    doSomething(null);

    In which case num is null. The best way to avoid this type of exception is to always check for null when you did not create the object yourself. So doSomething should be re-written as:

    public void doSomething(Integer num){
    if(num != null){
    //do something to num
    }
    }

    1
    Dr_Steve
    07/05/2015 6:57 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    It runs out of memory because you only set the max memory args. to 1060. One of the mods needs enough memory to run
    1
    Dr_Steve
    07/04/2015 1:53 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    1. http://www.planetminecraft.com/blog/how ... -win-7-os/

    2. IDK exactly, but I can set it up and see it real time (when it is right there on the PC)
    1
    Dr_Steve
    07/04/2015 1:28 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    1) Username:
    Dr__Steve
    2) Are you already in the Illuminati?:
    No
    3) If not, do you solemnly swear to resist the forces of the Illuminati, vast though they are?:
    Yes
    4) What can you do to aid humanity in its war with the Illuminati?:
    I will un-corrupt corrupt stuff. I will serve and protect all
    1
    Dr_Steve
    07/04/2015 1:24 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    It is the same for generally ALL Windows versions.
    1
    Dr_Steve
    07/04/2015 1:03 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    I doubt any of it constitutes a hardware problem. It worked many years ago, I haven't used it in a while, and physicilally looks good, so I assume there is probably nothing.
    1
    Dr_Steve
    07/04/2015 8:17 am
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    A way th register for updates! It no longer automatically downloads updates. You are emailed updates
    1
    Dr_Steve
    07/03/2015 8:55 pm
    Level 43 : Master Creeper
    Dr_Steve's Avatar
    Or what about MCBancer or Mancer or Necromancer or something?
      1
      Dr_Steve
      07/03/2015 8:49 pm
      Level 43 : Master Creeper
      Dr_Steve's Avatar
      I can help and I'll try to do so.
      1
      Dr_Steve
      07/03/2015 8:22 pm
      Level 43 : Master Creeper
      Dr_Steve's Avatar
      I got that error and it ANNOYS me sometimes
      1
      Dr_Steve
      07/02/2015 8:49 am
      Level 43 : Master Creeper
      Dr_Steve's Avatar
      I played Minecraft on with 64 MB on an old potato (computer) and an Intel Celeron processor, it really worked!
      1

    81 - 100 of 549

    Planet Minecraft

    Website

    © 2010 - 2024
    www.planetminecraft.com

    Welcome