
TekkenScript 1.1.9.0 – Update Release Notes - Tekkenscript
TekkenScript 1.1.9.0 is a minor but important update focused on stability and scripting improvements. This version resolves a crash caused by OBS filtering and introduces a powerful new Lua function: GetKeyPressed(keycode), allowing for real-time keyboard input detection. With this update, developers and scripters gain more control over hotkey-based actions and advanced automation within Tekken. As always, this version installs automatically and does not require manual download.
Release Date: 2025-05-20
Version: 1.1.9.0
TekkenScript 1.1.9.0 is now live, delivering key fixes and expanding scripting capabilities for advanced users and developers.
✅ Key Updates:
- OBS Filter Crash Fix
- Resolved a critical crash issue caused by attempts to filter or hook into OBS (Open Broadcaster Software).
- ⚠️ Note: OBS filtering is currently not supported in this version. Future updates may restore compatibility.
- New Lua Function –
GetKeyPressed(keycode)
- This new function allows users to detect real-time keyboard input using virtual keycodes. Ideal for building advanced scripting conditions, hotkeys, or interactive features.
-- This function returns whether a specific keyboard key is currently being pressed. -- It takes a virtual keycode (integer) as input. -- Returns true if pressed, false otherwise. function GetKeyPressed(keycode) end -- Example usage: if GetKeyPressed(0x41) then -- 0x41 is the keycode for 'A' print("Key A is being pressed.") end
This version is an automatic update. No manual installation or download is required.