Streaming::removeIpl: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
No edit summary
 
Line 11: Line 11:
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==
{{Streaming_s_function_c}}
{{Streaming_functions_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

Latest revision as of 03:32, 27 May 2024

Removes an IPL from the map.
IPL List: pastebin.com/pwkh0uRP

Example:
C#:
Function.Call(Hash.REMOVE_IPL, 'trevorstrailertidy');

C++:
STREAMING::REMOVE_IPL('trevorstrailertidy');

iplName = Name of IPL you want to remove.

Syntax

mp.game.streaming.removeIpl(iplName);

Required Arguments

  • iplName: String

Return value

  • Undefined

Example

// todo

See also