Solved Binded key in ArrayList
-
Could please tell how make ArrayList show binded key. Like here:
-
If you went through your code you would see that modKey is only set to the keyboard assosiated value if a tag is present.
-
@wxdbie okay but why
-
@stfwissue ?
-
-
@stfwissue ty. How to remove "NONE"?:
-
@wxdbie I don't know
-
You code (this is what i assume you have):
renderString = module.getName() + " - " + module.getTag() +" > " + Keyboard.getKeyName(module.getBind())
You could remove the "NONE" by doing this instead
binded = Keyboard.getKeyName(module.getBind()) renderString = module.getName() + " - " + module.getTag() + (binded != "NONE" ? " > " + binded : "" )
-
@plumer-man Plumer Man pro gamer and coder 2022
-
@plumer-man ty < 3
-
wxdbie
-
wxdbie
-
@plumer-man, how to remove ">" from functions that are not binded key?
modKey = Keyboard.getKeyName(mod.keyBind) var displayName : String = mod.name + modTag + if (modKey != "NONE") " > " + modKey else ""
-
This post is deleted! -
@stfwissue It did not work : (
-
@wxdbie I got no idea then
-
Can you send more code samples i cant see anything wronge with the code you sent
-
fun getModName(mod: Module): String { var modTag : String = "" var modKey : String = "" if (tags.get() && mod.tag != null) { modTag += " " modKey += " > " if (!tagsArrayColor.get()) modTag += "§f" if (!tagsStyleValue.get().equals("default", true)) modTag += tagsStyleValue.get().get(0).toString() + if (tagsStyleValue.get().equals("-", true) || tagsStyleValue.get().equals("|", true)) " " else "" modTag += mod.tag if (!tagsStyleValue.get().equals("default", true) && !tagsStyleValue.get().equals("-", true) && !tagsStyleValue.get().equals("|", true)) modTag += tagsStyleValue.get().get(1).toString() modKey = Keyboard.getKeyName(mod.keyBind) } var displayName : String = mod.name + modTag + if (modKey != "NONE") " > " + modKey else "" if (lowerCaseValue.get()) displayName = displayName.toLowerCase() return displayName }
-
@wxdbie I have a feeling that this isn't the ideal way of implementing such things. Not only it looks more complicated than it is, it is actually much harder to edit, fix, ...
-
@czechhek, well how do you make it easy?
-
If you went through your code you would see that modKey is only set to the keyboard assosiated value if a tag is present.
-
@plumer-man, uh, how right way do it?
-
@wxdbie bruh learn kotlin