Dlc2::nullify
Внешний вид
Sets the value of the specified variable to 0.
Always returns true.
bool _NULLIFY(void* variable, int unused)
{
*variable = NULL;
return true;
}
Syntax
<syntaxhighlight lang="javascript">mp.game.dlc2.nullify(variable, unused);</syntaxhighlight>
Required Arguments
- variable: unknown (to be checked)
- unused: unknown (to be checked)
Return value
- Boolean
Example
<syntaxhighlight lang="javascript"> // todo </syntaxhighlight>