OnMapUnload: Difference between revisions
Jump to navigation
Jump to search
OpenIDUser28 (talk | contribs) m (Needs Checking: Event does not exist) |
mNo edit summary |
||
(6 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
{{Historical|This event no longer exists since 2011}} | |||
{{ | {{Delete|This event no longer exists.}} | ||
This event is triggered when the map is changed or unloaded. | This event is triggered when the map is changed or unloaded. | ||
Line 14: | Line 15: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
==See also== | |||
{{Map functions}} | |||
[[Category:Archived]] |
Latest revision as of 16:21, 11 September 2024
Historical: This page is retained for historical reference. | |
This event no longer exists since 2011 |
This page is marked for deletion. | |
Reason: This event no longer exists. Actions: Delete (Administrators) - Discuss - What links here - Category
|
This event is triggered when the map is changed or unloaded.
Example
This example displays a message in the textbox when the map is changed / unloaded
addEventHandler ( "onMapUnload", root, "onMapUnload" ) function onMapUnload ( ) outputChatBox ( "Script Unloaded!", root, 255, 255, 255 ) end