• 0

    posted a message on Complete undertale map

    Can I join? Already sent u a friend request if I can :)

    Posted in: Minecraft: Editions Show Your Creation
  • 0

    posted a message on Server looking for staff members!

    Hello! I recently made a little server and I'm now looking for staff members. These include:

    [Admin]

    [Mod]

    [Co-Owner]

    [Builder]

    etc.

    The server IP is 158.69.127.185:41736

    Right now it is whitelisted since I don't have much stuff on it right now.

    If you want to apply to any of the above ranks, contact me on my skype: gguytyler or just PM me here. (You could also comment but anyone could see it so :/ )

    If you want some info on the server I'm making right now, It's mostly a minigame server with alot of planned minigames going to be added. These include: Hunger Games, Hide N Seek, The Walls (And maybe mega walls too), SkyWars, and CTF to name a few.

    but yeah..please apply =(

    Posted in: Server Recruitment
  • 0

    posted a message on Can I join anyone's realm?
    Quote from Loginphp»

    Join my realm then. Very active already. Added you already.


    Sorry, it's a damn free for all in there...
    Posted in: MCPE: Realms
  • 0

    posted a message on Can I join anyone's realm?

    I can't make one because I'm poor, so can I pls just join someone's? My ign is CandV Tyler

    (Not candy :P)

    Posted in: MCPE: Realms
  • 0

    posted a message on LiteLoader
    Quote from Killjoy1221»

    You'll need to provide more info than that. Can you post a log?

    They didn't give any log, I tried searching for it on the .minecraft folder but there isn't anything about it.
    Posted in: Minecraft Mods
  • 0

    posted a message on LiteLoader

    Help! The 1.8 version doesn't load up, I'm trying to use the MLP mod (the unofficial 1.8 version).

    Posted in: Minecraft Mods
  • 1

    posted a message on [0.13.x][Android] -xX Test Subject Xx- Modded Adventure Map - How long will you survive at being a test subject?

    Great map! Just one thing, the map is very laggy. At the last tests, I had to cheat just to finish it.

    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on Hiring a mope map builder

    I can help. I made maps for 3 years, and have experience on all 3 main versions (PC, PE & Console). I can also make pretty good houses.

    Posted in: MCPE: Map Help & Requests
  • 0

    posted a message on [Help] My mod keeps crashing
    Quote from Clagdriff»

    There are some mistakes:


    var needToSwitchBack = false;

    var currentWorkBenchX = 0;

    var currentWorkBenchY = 0;

    var currentWorkBenchZ = 0;


    Block.defineBlock(250,"Smooth Slab",53);

    Item.addShapedRecipe(250,1,0,[

    " s ",

    " s ",

    " s "], [

    "s",44,0]);


    function useItem(x,y,z,itemId,blockId,side) {

    if (blockId == 250) {

    currentWorkBenchX = x;

    currentWorkBenchY = y;

    currentWorkBenchZ = z;

    Level.setTile(x, y, z, 58);

    needToSwitchBack = true;

    }

    }


    function proCmd (cmd) {

    if (cmd == "smoothslab") {

    addItemInventory(250, 1);

    }

    }


    function modTick ( ) {

    if (needToSwitchBack) {

    needToSwitchBack = false;

    Level.setTile(currentWorkBenchX, currentWorkBenchY, currentWorkBenchZ, 250);

    }

    }


    Still crashes, thanks anyways!
    Posted in: MCPE: Mod / Tool Help & Requests
  • 0

    posted a message on Music in Minecraft: Pocket Edition (0.16 and below)
    Quote from SuperCatGaming»

    Sorry, there is no way I can update until after Christmas (Automatic), as my device has no storage left. But, I will immediately update afterwards. (Or if someone could post a link here, that would be appreciated.)


    Ok, where do I post the link?
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on I need help with a ModPE

    The function is like this:

    Item.addShapedRecipe(ItemId,Amount,Damage,[

    "abc",

    "abc", //basically draw the recipe in code

    "abc"], [

    "a",ItemId,Damage,"b",ItemId,Damage,"c",ItemId, Damage]; //your telling what the letters mean in blocks/items

    Hope this helped :)

    Posted in: MCPE: Mod / Tool Help & Requests
  • 0

    posted a message on [Help] My mod keeps crashing

    I'm trying to make a smooth slabs mod, but for some reason it keeps crashing. I don't know why, so I'm asking how to fix it. Here's my code so far:


    var needToSwitchBack = false;

    var currentWorkBenchX = 0;

    var currentWorkBenchY = 0;

    var currentWorkBenchZ = 0;


    Block.defineBlock(250,"Smooth Slab",53);

    Item.addShapedRecipe(250,1,0,[

    " s ",

    " s ",

    " s "], [

    "s",44,0]);


    function useItem(x,y,z,itemId,blockId,side) {

    if (blockId == 250) {

    currentWorkBenchX = x;

    currentWorkBenchY = y;

    currentWorkBenchZ = z;

    Level.setTile(x, y, z, 58);

    needToSwitchBack = true;

    }

    }


    function proCmd (cmd) {

    if (cmd == "smoothslab") {

    addItemInventory(250, 1);

    }

    }


    function modTick ( ) {

    if (needToSwitchBack) {

    needToSwitchBack = false;

    Level.setTile(currentWorkBenchX, currentWorkBenchY, currentWorkBenchZ, 250);

    }

    }

    If you need it, here's the crash log I got:

    org.mozilla.javascript.WrappedException: Wrapped java.lang.ClassCastException: java.lang.Double cannot be cast to org.mozilla.javascript.Scriptable (Smoothslabs.js#5)

    at org.mozilla.javascript.Context.throwAsScriptRuntimeEx(Unknown Source)
    at org.mozilla.javascript.MemberBox.invoke(Unknown Source)
    at org.mozilla.javascript.FunctionObject.call(Unknown Source)
    at org.mozilla.javascript.Interpreter.interpretLoop(Unknown Source)
    at script(Smoothslabs.js:5)
    at org.mozilla.javascript.Interpreter.interpret(Unknown Source)
    at org.mozilla.javascript.InterpretedFunction.call(Unknown Source)
    at org.mozilla.javascript.ContextFactory.doTopCall(Unknown Source)
    at org.mozilla.javascript.ScriptRuntime.doTopCall(Unknown Source)
    at org.mozilla.javascript.InterpretedFunction.exec(Unknown Source)
    at net.zhuoweizhang.mcpelauncher.ScriptManager.initJustLoadedScript(ScriptManager.java:253)
    at net.zhuoweizhang.mcpelauncher.ScriptManager$ParseThread.run(ScriptManager.java:179)
    at java.lang.Thread.run(Thread.java:818)
    Caused by: java.lang.ClassCastException: java.lang.Double cannot be cast to org.mozilla.javascript.Scriptable
    at net.zhuoweizhang.mcpelauncher.ScriptManager.expandTexturesArray(ScriptManager.java:996)
    at net.zhuoweizhang.mcpelauncher.ScriptManager$NativeBlockApi.defineBlock(ScriptManager.java:3189)
    at java.lang.reflect.Method.invoke(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:372)
    ... 11 more
    Please help!

    also yes I'm using zhuowei's enchantment table mod as an example, here's his mod: https://raw.githubusercontent.com/zhuowei/ModPEScripts/master/500ise_enchantingbench.js

    Posted in: MCPE: Mod / Tool Help & Requests
  • 0

    posted a message on ESCAPE a mcpe horror adventure map [250 Demo Downloads!]

    ESCAPE

    Escape Title


    Hello! As you might know, I haven't been in this forum for a loooooonnnngggg time. That being that one: I don't have access to a PC right now. And two: Every map I make I end up stopping and ending the map. But finally, I decided to make an actual map! This is ESCAPE, your a guy who recently has amnesia (I know this has been used so many times in games but I never actually used it before) has finally woke up. He doesn't know everything, of course, and for some reason, nobody's there. You have to go through many floors (I haven't decided how many yet, might just make a poll) to find an exit. At first, it might look like the floors are the same, but don't jump into conclusions just yet. Sooner or later, you will have to be jumping, from it....

    Hallway 1Hallway 2

    Your room

    Bathroom

    PLEASE READ!!!-

    Mediafire is now limiting the allowance of sharing the rar file I made for the game. It has been said that it is beacuse it "shares encrypted passwords". I have no idea why. I have seen through the files, and It's just the map and the README .txt that I put in. Maybe its because of the files in the map? I don't know right now. So please, if you have a problem downloading the map, it's because Mediafire is being a female dog.

    UPDATE-

    Since only 2 people voted on the poll (nearly 250 people downloaded the demo, srsly guys?), I've been thinking about how to have both sides work. So I've decided. There will be 20 levels in the full map and a DLC which includes 5 extra levels (I'm not sure what the levels will be, maybe using 0.15 features). Also for who will ask, the full map will have 0.14 levels. This means the map will release at or after the 0.14 update release. So the time this will release is around the end of February and the DLC at the end of March. I might make a video about this later.

    DOWNLOAD:

    DLC: End of March

    Full Map: End of Feburary

    Demo: http://www.mediafire.com/?r8t9uoqrllxl3fr

    Posted in: MCPE: Maps
  • 0

    posted a message on FNAF4 "The Final Chapter" Song: LOOKING FOR PEOPLE WEARING SKINS!

    "Uh, hello? Hello hello? Um, if you're hearing this then you will realize this is from fnaf2"


    Hello! I'm doing a music video on the song "Fnaf 4:The Final Chapter". Actually it's more like a minecraft version of the song. Since I don't want to lose cash and also because some parts needs more the one skin, I'm looking for people to wear a skin. I'll post all names in the Credits section :). Also, no I'm not a cracked minecrafter, I HAVE A USER YA KNOW?! Proof:

    Proof i

    Cracked skins died out at 1.7, how do explain that? Anyways, here are the skins that I'm looking for:


    Crying Child or the Bite of '87 kid: http://www.planetminecraft.com/skin/bite-of-87-victim-fnaf-4/

    Normal Freddy: http://www.planetminecraft.com/skin/freddy-fazbear-3118751/

    Normal Bonnie: http://www.planetminecraft.com/skin/bonnie-fnaf-3144419/ (In the link it has fnaf-3 in it *gasp*)

    Normal Fredbear (Yes it's called Toy Fredbear but it's the closest I found to 8 bit fredbear): http://www.planetminecraft.com/skin/toy-fredbear/

    Normal Springtrap: http://www.planetminecraft.com/skin/springtrap-3360701/

    Nightmare Foxy: http://www.planetminecraft.com/skin/fnaf-4-nightmare-foxy-3447430/

    Nightmare Freddy: http://www.planetminecraft.com/skin/fnaf-4-3304324/

    Nightmare Bonnie: http://www.planetminecraft.com/skin/nightmare-bonnie-fnaf-4-3405589/

    Plushtrap: http://www.planetminecraft.com/skin/plushtrap-fnaf-4-better-in-3-d/


    Format for commenting (if you want to participate):

    Username

    What skin you chose

    Youtube Name (if you want to)


    Also! If you didn't watch the music video, YOU HAVE TO SEE IT!!!:


    ~don't wake the baby

    Posted in: Skins
  • To post a comment, please .