Engine
Engine API
IsInGame(): boolean
boolean
Returns true
if the game is in progress.
IsShopOpen(): boolean
boolean
Returns true
if the shop is open.
RunScript(script: string
, contextPanel [?]
: string
): boolean
string
, contextPanel [?]
: string
): boolean
script
string
The script to run.
contextPanel [?]
string
The name of the panel to run the script in. (default: "Dashboard")
Run a JS script in the panorama context. Return true
if the script was executed successfully. JS documentation
Example
ExecuteCommand(command: string
): void
string
): void
command
string
The command to execute.
Execute a console command.
Example
GetGameDirectory(): string
string
Returns the current game directory. (e.g. dota 2 beta
)
GetCheatDirectory(): string
string
Returns the current cheat directory.
GetLevelName(): string
string
Returns the current level name. (e.g. maps/hero_demo_main.vpk
)
GetLevelNameShort(): string
string
Returns the current level name without the extension and folder. (e.g. hero_demo_main
)
ConsoleColorPrintf(r: integer
, g: integer
, b: integer
, a [?]
: integer
, text: string
): void
integer
, g: integer
, b: integer
, a [?]
: integer
, text: string
): void
r
integer
Red value.
g
integer
Green value.
b
integer
Blue value.
a [?]
integer
Alpha value. (default: 255)
text
string
Text to print.
Print a message to the dota console.
GetMMR(): integer
integer
Returns the current MMR.
ReloadScriptSystem(): void
void
Executes script system reload.
ShowDotaWindow(): void
void
Brings the game window to the forefront if it is minimized. Use this function to make the game window the topmost window.
IsInLobby(): boolean
boolean
Returns true
if the player is in a lobby.
GetBuildVersion(): string
string
Returns the cheat version.
Last updated