🤠
cedoscript
  • Introduction
  • Documentation
    • Packets
    • Setting Command
    • Java Imports
    • Examples
      • Creating a Pack
      • Custom Block Animation
      • Bhop
      • Setting Creation
      • Post Notification
      • Gradient Round Rectangle
      • Applying a gradient
      • Simulate a command
  • api
    • Events
    • Settings
    • Objects
      • EntityLivingBase
      • ItemStack
      • Player Abilities
      • Color
      • TimerUtil
      • Continual Animation
      • ShaderUtil
      • FrameBuffer
      • Rainbow
      • Drag
      • Pair
      • Module
  • Bindings
    • Client
    • Player
    • Packet
    • Action
    • Facing
    • Potion
    • Notification
    • Render
    • Stats
    • Font
    • User
    • World
Powered by GitBook
On this page
  • getClientVersion
  • leftMouseButtonDown
  • rightMouseButtonDown
  • createTimer
  • getAuraTarget
  • getClientColors
  • printClientMsg
  • fps
  • getIRCUsernameMap
  • getModule

Was this helpful?

  1. Bindings

Client

Information about the client binding

PreviousModuleNextPlayer

Last updated 2 years ago

Was this helpful?

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 object.

getAuraTarget

var entity = client.getAuraTarget()

getClientColors

var color = client.getClientColors()
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 an object that is the current target of the killaura. (Will be null if there is no current target)

Returns a of the java.awt.Color Object. It is the current client color based off the Client mod color setting.

Returns a object

TimerUtil
EntityLivingBase
Pair
Module