Перейти к содержанию

Dlc2::nullify

Материал из RAGE MP Wiki Archive

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>

See also

Шаблон:Dlc2 s function c