How to add Tags in Script API v2
-
Question: How to add tags like If you're using a module that is using modes like "Fly, Fly2, Fly3" How to make it show a Tag of the current mode you're on.
Example:
When you switch to Killaura Switch / Multi It will show multi on the tag.
How to do it in scripts.[Sorry I didn't know how else to put it]
-
https://liquidbounce.net/docs/ScriptAPI/Creating Modules/Overview
script.registerModule({ name: "TestModule", category: "Misc", description: "This module is using LiquidBounce's ScriptAPI.", tag: "hello floof", settings: { myBooleanSetting: Setting.boolean({ name: "MyBooleanSetting", default: false }) } }, function(module) { });
Overwrite the module tag
It is possible to overwrite the module tag even after registration. This is especially useful if it should indicate the mode of the module. This is done as follows.module.tag = "NewTag";
-
https://liquidbounce.net/docs/ScriptAPI/Creating Modules/Overview
script.registerModule({ name: "TestModule", category: "Misc", description: "This module is using LiquidBounce's ScriptAPI.", tag: "hello floof", settings: { myBooleanSetting: Setting.boolean({ name: "MyBooleanSetting", default: false }) } }, function(module) { });
Overwrite the module tag
It is possible to overwrite the module tag even after registration. This is especially useful if it should indicate the mode of the module. This is done as follows.module.tag = "NewTag";
@kawaiinekololis ADMIN WOW
-
https://liquidbounce.net/docs/ScriptAPI/Creating Modules/Overview
script.registerModule({ name: "TestModule", category: "Misc", description: "This module is using LiquidBounce's ScriptAPI.", tag: "hello floof", settings: { myBooleanSetting: Setting.boolean({ name: "MyBooleanSetting", default: false }) } }, function(module) { });
Overwrite the module tag
It is possible to overwrite the module tag even after registration. This is especially useful if it should indicate the mode of the module. This is done as follows.module.tag = "NewTag";
@kawaiinekololis how to change aim (foot, head, center) to killaura liquid bounce (IntelliJ idea)
-
@kawaiinekololis how to change aim (foot, head, center) to killaura liquid bounce (IntelliJ idea)
-
@kawaiinekololis ADMIN WOW
-
This post is deleted!