2024-12-05 13:19:00 +08:00

351 B

/spawnxp command

This tutorial will cover spawning in entities using the ModAPI.promisify() API.

As usual, we'll start with the boilerplate:

(function SpawnXPMod() {
    ModAPI.meta.title("Spawn XP");
    ModAPI.meta.description("Adds a /spawnxp command.");
    ModAPI.meta.credits("By <author_name>");

    //future code
})();