• 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!

modal window w modal window

hemrenus321

Advanced OT User
Joined
Jun 1, 2010
Messages
396
Solutions
2
Reaction score
161
Location
Poland
mam taki problem,
Code:
function onModalWindow(cid, modalWindowId, buttonId, choiceId)

    if modalWindowId == 1 then
        if buttonId == 1 then
       
            local confirm = ModalWindow(2, "test", "lorem ipsum")
            confirm:addButton(7, "YES")
            confirm:addButton(8, "CANCEL")
            confirm:sendToPlayer(cid)
   
        if buttonId == 7 then
            //nic sie nie dzieje
        end
    else if buttonId == 3 then
            //tutaj jest dobrze
    end
end
end
end
 
Back
Top