World::removeIpl: Difference between revisions

From RAGE Multiplayer Wiki
(Created page with "'''Function''': Remove an IPL and sync it to every client. ==Example== {{ServerSide}} <syntaxhighlight lang="javascript"> mp.world.requestIpl("gr_case10_bunkerclosed"); </syn...")
 
No edit summary
Line 1: Line 1:
'''Function''': Remove an IPL and sync it to every client.
__NOTOC__
This function remove an IPL and sync it to every client


==Example==
==Example==
{{ServerSide}}
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
mp.world.requestIpl("gr_case10_bunkerclosed");
mp.world.removeIpl("gr_case10_bunkerclosed"); // THIS REMOVES THE BUNKER ENTRANCE NEAR ZANCUDO. POSITION: (-3058.714, 3329.19, 12.5844)
</syntaxhighlight>
</syntaxhighlight>
This removes the bunker entrance near Zancudo. Position: (-3058.714, 3329.19, 12.5844)
 
==See Also==
{{World_definition}}

Revision as of 15:55, 29 January 2018

This function remove an IPL and sync it to every client

Example

mp.world.removeIpl("gr_case10_bunkerclosed"); // THIS REMOVES THE BUNKER ENTRANCE NEAR ZANCUDO. POSITION: (-3058.714, 3329.19, 12.5844)

See Also