NCScriptsDynamicSpawners

From Legends of Aria Admin and Modding Wiki
Jump to: navigation, search

[Main] [Lua Examples]

DynamicWindow Object

DynamicWindow(...)

This is the main dynamic window object creator, you can use many of its child functions to create your dynamic window.

Example of creating a DynamicWindow object

 function DisplayDynamicWindow(player)
     -- create the dynamic window object
     local dynamicWindow = DynamicWindow("UniqueWindowHandler","Custom Window Title",200,500,-100,-250,"Default","Center")
 
     -- REMINDER: A dynamic window wont display unless you have at least one child element such as AddLabel
 
     -- display the dynamic window to the player
     player:OpenDynamicWindow(dynamicWindow)
 end

DynamicWindow Child Functions