• 0

    posted a message on Macro/Keybind Mod Scripts
    I've made a few simple, but very helpful (for me at least) scripts.

    This one I use for strip mining. As I'm mining, I just press 'R' and it turns my camera to the right, places a torch, and goes back to my pick, and returns my camera where it was. I only use Diamond Picks, so that's what I have it set to switch to, but you can change the item ID to any other type. This is such a fast torch placement though, that I don't even have to take my finger off the left mouse button.

    Quick Torch:

    look(+45,2);
    pick(50);
    wait(0.1ms);
    key(use);
    wait(1ms);
    pick(278);
    look(-45,2);

    -------------------

    Just look at an empty tilled farmland, with the seed, carrot or potato, and bonemeal in your inventory, and type in however many bonemeal you have. It uses a little less bonemeal than what you enter due to lag, but it uses most of it, and goes about as fast as the game will allow.

    Auto Plant-Bonemeal-Harvest:

    do($$?);
    key(attack);
    pick(295);
    pick(391);
    pick(392);
    wait(75ms);
    key(use);
    wait(10ms);
    pick(351:15);
    wait(10ms);
    key(use);
    wait(75ms);
    loop;

    -------------------

    This one I use on my Enderman xp farm, but it can be used for any sort of xp farm. Just type in the level you want to be, and it will auto attack until you reach that level.

    Auto Train:

    do;
    key(attack);
    wait(100ms);
    until(LEVEL>=$$?);

    -------------------
    I hope someone is able to benefit from these, or even help make them more efficient if possible.
    Posted in: Content Packs
  • To post a comment, please .