Streaming::requestIpl: Difference between revisions

From RAGE Multiplayer Wiki
m (Replaced HTML with template)
(silly example fixed)
Line 19: Line 19:
{{ClientsideCode|
{{ClientsideCode|
<pre>
<pre>
mp.game.streaming.removeIpl("FIBlobbyfake");
mp.game.streaming.requestIpl("FIBlobbyfake");
</pre>
</pre>
}}
}}

Revision as of 11:39, 1 February 2019

Requests for the IPL to be loaded into the map

List of IPLs: http://pastebin.com/FyV5mMma

Syntax

mp.game.streaming.requestIpl(iplName);

Required Arguments

  • iplName: String

Return value

  • Undefined

Example

Loads the FIB interior so it can be accessed.

Client-Side
mp.game.streaming.requestIpl("FIBlobbyfake");

See also

Template:Streaming s function c