mirror of
https://github.com/JezuzLizard/t6-fastfile-mods.git
synced 2025-04-22 14:35:44 +00:00
14 lines
535 B
Plaintext
14 lines
535 B
Plaintext
// T6 Script Builtins
|
|
/@
|
|
Adds <fx_name> as a configstring to the fx configstring pool.
|
|
Returns an index that can be used in many different functions and methods to play an fx.
|
|
The fx configstring pool is limited to 195 entries before fx configstring overflow occurs.
|
|
On Plutonium addonfx pool was added to bypass this limit so functions add to this configstring pool
|
|
have another 256 entries.
|
|
USAGE: level._effect[ effect_alias ] = loadfx( <fx_name> );
|
|
PARAMS: <string>
|
|
@/
|
|
loadfx( fx_name )
|
|
{
|
|
loadfx( fx_name );
|
|
} |