TTmod
Pure server-side mod for LiF:YO Dedicated Servers
TTmod (Server Mod)
Latest Version: 1.5 (Mar 05, 2020)
TTmod is a pure server-side mod for LiF:YO Dedicated Servers.
The main purpose is taking live information from a gameserver and writing it to the database
so that web-apps like the
LiF:YO Livemap
can access it.
It also provides RCON command processing, statistic tracking, MOTD support,
GuildGUI client integration, and a powerful open API for other mods.
TTmod Configuration
TTmod API Documentation
Download TTmod v1.5
Installation
-
Unpack the zip file into the LiF:YO server directory
(where the main server executable is located).
Do not rename the TTmod folder.
- Edit
TTmod/config.cs if necessary.
-
Add the following line to the end of
main.cs:
exec("TTmod/init.cs");
- Restart your server.
Configuration
Configuration is done via the config.cs file inside the TTmod folder.
All options are commented and self-explanatory.
For detailed explanations, see the
Full TTmod Documentation.
Uninstallation
To fully remove TTmod, delete the TTmod folder and execute the following SQL:
DROP TABLE IF EXISTS
nyu_chars_info,
nyu_online_players,
nyu_rcon_queue,
nyu_tracker_chars,
nyu_tracker_stats,
nyu_ttmod_info,
nyu_ttmod_tokens;
Modding API
TTmod adds powerful TorqueScript functions and mechanics that can be used
to develop scripts or entire mods for LiF:YO.
» Full Documentation
Changelog
v1.5 – Mar 5, 2020
- Fixed: Animals table for Livemap not populating occasionally
- Fixed: RCON player kick not working
- Added character name support for MOTD
- Added alignment manipulation RCON command
- Added RCON callback bindings
- Added playtime-sensitive callbacks
v1.4 – Feb 14, 2020
- Added RCON schedule table
- Added animal spawn location table
- Added world type column to TTmod info table
- Added JH begin/end callbacks
- Minor bug fixes and improvements
v1.3 – Jul 18, 2018
- Added position trigger framework
- Added GM mode callbacks
- Removed road data caching
- Code efficiency improvements
v1.2 – May 31, 2018
- Added teleport and item RCON commands
- Added MOTD feature
- Added GuildGUI client mod support
v1.1 – Mar 4, 2018
- Added inventory insert RCON command
- Added TTmod info database table
v1.0 – Aug 16, 2017
- Initial RCON processing
- Character statistics tracker