• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

TFS 1.3 Close force ModalWindow

pvpfleczu

New Member
Joined
Nov 10, 2012
Messages
27
Reaction score
3
Hi,
how to close ModalWindow?
I want close Window after x time, but I dont know how close for the player.
 
there's no methods to close modalwindows
Code:
ModalWindow
    ModalWindow(id, title, message)
    modalWindow:addButton(id, text)
    modalWindow:addChoice(id, text)
    modalWindow:getButtonCount()
    modalWindow:getChoiceCount()
    modalWindow:getDefaultEnterButton()
    modalWindow:getDefaultEscapeButton()
    modalWindow:getId()
    modalWindow:getMessage()
    modalWindow:getTitle()
    modalWindow:hasPriority()
    modalWindow:sendToPlayer(player)
    modalWindow:setDefaultEnterButton(buttonId)
    modalWindow:setDefaultEscapeButton(buttonId)
    modalWindow:setMessage(text)
    modalWindow:setPriority(priority)
    modalWindow:setTitle(text)
 
Back
Top