Skip to content

BlockLauncher addon (only pro version) which improves ModPE.

Notifications You must be signed in to change notification settings

ManDongI/NewModPE

 
 

Repository files navigation

NewModPE

Adds new hooks and methods for ModPE.
It can break the ModPE's limit.

Current API:

event listeners:
    function onNewModPELoaded() - You can use NewModPE APIs after this event is fired
global classes:
    N_Player - provides some player related utilities
    methods:
        static void setRoundAttack(boolean enable, boolean hitMob, int distance); - Enable kill aura
            parameters:
                enable - Enable kill aura?
                hitMob - Hit mob?
                distance - Target mob filtering with distance
        static void setCanFly(boolean enable); - Enable flying
            parameters:
                enable - Enable flying?
        static void sendSimpleChat(String msg); - Send chat message
            parameters:
                msg - Message to send
        static void sendRawChat(String msg, boolean hasSender); - Send chat message raw
            parameters:
                msg - Message to send
                hasSender - Omit sender data?
        static void sendChat(String msg, boolean hasSender, boolean safe); - Send chat message with full option
            parameters:
                msg - Message to send
                hasSender - Omit sender data?
                safe - Protect from null textpacket weakness
    N_Proxy - provides some java & android exploits
    methods:
        static void setFixedScripting(boolean enable); - Let scriptingEnabled always be true
            parameters:
                enable - Enabled fixed scripting?
        static java.lang.Thread startThread(Function run); - Start a thread and return it; because instant threading at onNewModPELoaded has a bug
            parameters:
                run - Function to run

About

BlockLauncher addon (only pro version) which improves ModPE.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Objective-C 50.4%
  • C++ 37.6%
  • Java 8.7%
  • C 2.1%
  • Makefile 1.2%