π
π
π
π
cedoscript
Searchβ¦
Introduction
Documentation
Packets
Examples
api
Events
Settings
Objects
Bindings
Client
Module Manager
Player
Packet
Notification
Render
Font
User
World
Powered By
GitBook
Client
Information about the client binding
leftMouseButtonDown
1
var
leftMouse
=
client
.
leftMouseButtonDown
()
Copied!
Returns true if the left mouse button is down
rightMouseButtonDown
1
var
rightMouse
=
client
.
rightMouseButtonDown
()
Copied!
Returns true if the right mouse button is down
createTimer
1
var
timer
=
client
.
createTimer
()
Copied!
Returns a
TimerUtil
object.
getAuraTarget
1
var entity = client.getAuraTarget()
Copied!
Returns an
EntityLivingBase
object that is the current target of the killaura. (Will be null if there is no current target)
getClientColors
1
var color = client.getClientColors()
Copied!
Returns an array of the
java.awt.Color
Object. It is the current client color based off the Client mod color setting.
1
var
colors
=
client
.
getClientColors
()
2
var
color1
=
colors
[
0
]
3
var
color2
=
colors
[
1
]
Copied!
printClientMsg
1
client
.
printClientMsg
(
"This is a message"
)
Copied!
This will print a message in the chat with the Tenacity text.
Parameter
Type
Description
text
String
The text to be displayed
fps
1
client
.
fps
()
Copied!
Returns the current fps as a
Number
.
systemTime
1
client.systemTime()
Copied!
Returns the current system time in milliseconds.
i.e. in java code
System.currentTimeMillis()
Previous
Drag
Next - Bindings
Module Manager
Last modified
3mo ago
Copy link
Contents
leftMouseButtonDown
rightMouseButtonDown
createTimer
getAuraTarget
getClientColors
printClientMsg
fps
systemTime