Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

LiquidBounce Forum

R

RealFX

@RealFX
About
Posts
1
Topics
1
Groups
0
Followers
1
Following
0

Posts

Recent Best Controversial

  • Scripting not working
    R RealFX

    Hello, i decided to try and make a script, and it does not work.
    Any idea why?

    script.registerModule({
        name: "CurrentCoords",
        category: "Misc",
        description: "Displays Current Coords.",
        tag: "Test",
        settings: {
            myBooleanSetting: Setting.boolean({
                name: "Print Coords In Chat.",
                default: true
            })
        }
    }, function(module) {
        module.on("enable", function() {
    		Chat.print("Coords will now be printed.");
    		var xcoor = eventData.getX();
    		var ycoor = eventData.gety();
    		var zcoor = eventData.getz();
    		var formattedmsg = xcoor + "§7 /§f " + ycoor + "§7 /§f " + zcoor;
    		Chat.print("§f[XYZ]: ");
    			
        }
    });
    };
    
  • Login

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups