Solved How to delete categories?
-
how do i delete categories from liquid bounce ?
-
@plumer-man
With Core you can simply do
_categories.remove("name");
It is using Core's editable enum util. To edit other enums you can do
editable = new EditableEnum(target); editable.add("name"); editable.remove("name"); editable.get() editable.values()
-
@czechhek Do i just put that into a js file and put it in the scripts folder?
Im not really good at programming or how liquid bounce works. -
@plumer-man Why would you want to delete a category? If you simply want to hide it from the clickgui, you can open
clickgui.json
(inside the LiquidBounce directory) in a text editor and setvisible
tofalse
for any category you want to hide. -
@senk-ju Thanks it worked!
-
@senk-ju thanks