Auto Sprint

A simple AutoSprint module

/*
name: AutoSprint
author: surge
*/

import { breeze, mc } from '../breeze_defs';

breeze.registerModule('AutoSprint', 'Automatically sprints for you', {

    'tick': function(event) {
        if (!mc.getPlayer().isSprinting()) {
            mc.getPlayer().setSprinting(true);
        }
    }

});

Last updated