Client
Information about the client binding
getClientVersion
var version = client.getClientVersion()
Returns a String with something like "5.0" or "5.0 (Beta)"
leftMouseButtonDown
var leftMouse = client.leftMouseButtonDown()
Returns true if the left mouse button is down
rightMouseButtonDown
var rightMouse = client.rightMouseButtonDown()
Returns true if the right mouse button is down
createTimer
var timer = client.createTimer()
Returns a TimerUtil object.
getAuraTarget
var entity = client.getAuraTarget()
Returns an EntityLivingBase object that is the current target of the killaura. (Will be null if there is no current target)
getClientColors
var color = client.getClientColors()
Returns a Pair of the java.awt.Color
Object. It is the current client color based off the Client mod color setting.
var colors = client.getClientColors()
var color1 = colors.getFirst()
var color2 = colors.getSecond()
printClientMsg
client.printClientMsg("This is a message")
This will print a message in the chat with the Tenacity text.
Parameter
Type
Description
text
String
The text to be displayed
fps
client.fps()
Returns the current fps as a Number.
getIRCUsernameMap
var ircMap = client.getIRCUsernameMap()
Returns a java.util.HashMap
map. The key value pairs are Minecraft IGN to IRC username.
getModule
var killaura = client.getModule("kiLlAuRa")
var keystrokes = client.getModule("Keystrokes")
Returns a Module object
Last updated
Was this helpful?