• 0

    posted a message on Left For Mcpe Mod-Script!0
    Wow. Thanks ! :P
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on Left For Mcpe Mod-Script!0
    I know but I don't no how to put media fire links or drop box but ill work on it! :)
    Posted in: MCPE: Mods / Tools
  • 0

    posted a message on Left For Mcpe Mod-Script!0
    Hello guys ! This is my first mod pack I hope u like it also u will have to copy it
    So Here ya go :D !
    //Left 4 MC
    var EntityKILL = 0;
    var money=0;
    var n = " ";
    ModPE.setItem(431, 5000, 6000, n + "Medic Kit" + n);
    ModPE.setItem(269, 6, 0, n + "Flaming Baseball'Bat" + n);
    ModPE.setFoodItem(432, 14, 7, 2, n + "Zombie Beans" + n);
    function useItem(x,y,z,itemId,blockId,side)
    {
    if(itemId == 431&&blockId == 2)
    {
    Player.setHealth(15);
    }
    }
    function useItem(x,y,z,itemId,blockId)
    {
    if(itemId==269&&blockId)//If your item is a wooden axe!
    {
    explode(x,y,z,3.1);//Blow it up!
    Player.setHealth(20);

    }
    }
    function useItem(x,y,z,itemId,blockId,side){
    if(itemId==345){
    clientMessage(ChatColor.BLUE + "Your coordinates are " + "x;" + getPlayerX() + "Z;" + getPlayerZ());
    }
    }
    function newLevel()
    {
    clientMessage(ChatColor.RED + "Welcome to Left For - MCPE");
    clientMessage(ChatColor.GOLD + "Made By blingking © 2003");
    addItemInventory(432, 2);
    }
    function leaveGame()
    {
    print("Thanks For -Playing!");
    }

    function procCmd(cmd)
    {
    var Line = cmd.split(" ");
    if (Line[0]=="kills")
    {
    clientMessage(ChatColor.BLACK + "You have "+EntityKILL+" kills.");
    }
    }

    function deathHook(murderer, victim)
    {
    if(getCarriedItem(murderer) == 269 || getCarriedItem(murderer) == 0 || getCarriedItem(murderer) == 267 || getCarriedItem(murderer) == 276 || getCarriedItem(murderer) == 283)
    {
    EntityKILL = EntityKILL + 1;
    }
    }
    Posted in: MCPE: Mods / Tools
  • To post a comment, please .