MTA:Eir/FileSystem/translator/getOutbreakEnabled: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
 
Line 4: Line 4:
==Syntax==
==Syntax==
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
bool translator.setOutbreakEnabled ()
bool translator:setOutbreakEnabled ()
</syntaxhighlight>
</syntaxhighlight>



Latest revision as of 23:30, 16 January 2022

This function gets the outbreak-policy of a file translator. If outbreak is enabled then file path requests outside of the translator root are allowed. Otherwise the user can only access files that are accessible from inside the translator root directory.

Syntax

bool translator:setOutbreakEnabled ()

Returns

This function returns true if the outbreak-policy is enabled for this translator, false otherwise.

Example

-- TODO

FileSystem Translator Functions