REO-EE/_module/nss/nwnx_tmi.nss
Jaysyn904 f82740bbbd Initial commit
Initial commit
2024-02-22 13:22:03 -05:00

19 lines
458 B
Plaintext

// Returns the TMI limit.
// nwserver default is 131071
int GetTMILimit();
// Sets the TMI limit to the given value.
// Min is 16k, max is about 8M.
void SetTMILimit(int nLimit);
int GetTMILimit () {
SetLocalString(GetModule(), "NWNX!TMI!GETLIMIT", " ");
return StringToInt(GetLocalString(GetModule(), "NWNX!TMI!GETLIMIT"));
}
void SetTMILimit (int nLimit) {
SetLocalString(GetModule(), "NWNX!TMI!SETLIMIT", IntToString(nLimit));
}