Streaming::removeIpl: Difference between revisions
(yay) |
(yay) |
||
| Line 1: | Line 1: | ||
Removes an IPL from the map.<br>IPL List: pastebin.com/pwkh0uRP <br><br>Example:<br>C#:<br>Function.Call(Hash.REMOVE_IPL, 'trevorstrailertidy');<br><br>C++:<br>STREAMING::REMOVE_IPL('trevorstrailertidy');<br><br>iplName = Name of IPL you want to remove. | Removes an IPL from the map.<br>IPL List: pastebin.com/pwkh0uRP <br><br>Example:<br>C#:<br>Function.Call(Hash.REMOVE_IPL, 'trevorstrailertidy');<br><br>C++:<br>STREAMING::REMOVE_IPL('trevorstrailertidy');<br><br>iplName = Name of IPL you want to remove. | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="javascript">streaming.removeIpl(iplName);</syntaxhighlight> | <syntaxhighlight lang="javascript">mp.game.streaming.removeIpl(iplName);</syntaxhighlight> | ||
=== Required Arguments === | === Required Arguments === | ||
*'''iplName:''' String | *'''iplName:''' String | ||
| Line 8: | Line 8: | ||
==Example== | ==Example== | ||
<syntaxhighlight lang="javascript"> | <syntaxhighlight lang="javascript"> | ||
todo | // todo | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==See also== | ==See also== | ||
{{ | {{Streaming_s_function_c}} | ||
[[Category:Clientside API]] | [[Category:Clientside API]] | ||
[[Category:TODO: Example]] | [[Category:TODO: Example]] | ||
Revision as of 21:32, 6 May 2017
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