Intro
As a modder, I restart game a lot of times and packing lua files back takes away my free time. That's why I had to make a loader, which reads lua scripts situated outside *.dat archives. It also is capable of binding functions used in external lua files to key combinations. Keys can be defined in a separate config file, stored outside of archives as well. The only thing you'll ever need to pack is the loader itself (and assets if you use them in your mod).
Installation
Manual
Step 1
Place script_loader.lua into <game_dir>/master/0/00.dat,/Assets/tpp/script/lib/
.
GzsTool:
Add to your 00.dat.xml:
<Entry FilePath="/Assets/tpp/script/lib/script_loader.lua" Compressed="false" />
MGSV_QAR_Tool:
Add to your 00.inf:
18e34bb1306b261b|00\Assets\tpp\script\lib\script_loader.lua key=0 version=0 compressed=0
Step 2
Open00\Assets\tpp\script\lib\Tpp.lua
.Find
"/Assets/tpp/script/lib/TppMbFreeDemo.lua"
. Add after it:
, "/Assets/tpp/script/lib/script_loader.lua"
Step 3
Open00\Assets\tpp\script\lib\TppMain.lua
.Find
"TppMission.UpdateForMissionLoad"
. Add after it:
,script_loader.Update
Step 4
Pack your 00.dat with tool of your choice. Tip: MGSV_QAR_Tool command is ".exe <.inf> -r"Step 5
Create folder 'lua' in your game directory (SteamApps\common\MGS_TPP\lua
) and put there these
files:
Snakebite (outdated?)
- Install script_loader.mgsv using Snakebite (script_loader_IH.mgsv - Infinite Heaven compatible version)
- Create folder 'lua' in your game directory (
SteamApps\common\MGS_TPP\lua
) and put script_loader.json there.
Usage
Hold ZOOM+ACTION
(V+E) to bind functions to keys, then hold ZOOM+_your_key
to call
your function.
Every time you bind functions to keys, script loader reloads all modules listed in config file, so it is perfect for debugging your awesome mod. No game restart, no packing, no loading.
It also announces typical errors in your code (ie division by zero, wrong syntax or stuff like that) - just like regular interpreter does. It won't catch errors from MGSV functions though, so don't expect much.
Everyting you call can be logged in MGS_TPP\log.txt
file.
Add local helpers =
require("helpers")
,
then
use helpers.log(str, announce, level)
in your code to put log messages into the log, no more waiting for slow terminal output.You will need to
create that file by yourself.
Config file
Structure:
keys
- array of bindable keys-
_key_
- key as represented in the game, see link for all key names. Example:PlayerPad.UP
module
- name of your imported lua module. Example:example_script
function
- function which will be called after holdingZOOM+_key_
. Example:test
config
- loader's configplay_sound
- true/false, if set to true, plays a clacking terminal sound when you execute your function
Hold ZOOM+ACTION
(V+E) to bind functions to keys listed in config file.
Binding more keys
Just add a new entry into keys
section based on example above then hold
ZOOM+ACTION
to apply changes.
Important note: functions with arguments have to be wrapped into a wrapper function without arguments.
Example: your function do_awesome_stuff(1,2,3)
has to be wrapped in another function do_something()
,
which will be referenced in config.