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

Recent content by specail

  1. S

    Svarground Arena script bug

    I got the quest working 100% (players can do each arena only once, starting with greenhorn, then scrapper, then warlord... so no way to duplicate items...) But I keep getting these errors and would like to know if I can remove them: When I say hi to Halvar: [15/7/2023 18:29:17] [Error -...
  2. S

    Mod to disable chat after sending a message

    So I was able to create a hotkey to disable chat and it looks like this: function toggleChat() if consoleToggleChat:isChecked() then disableChat() else enableChat() end g_keyboard.bindKeyDown('Ctrl+F', disableChat) end However I found 2 issues: 1) when I press the hotkey, chat...
  3. S

    Mod to disable chat after sending a message

    I suppose it's in 'function disableChat()' but what exactly do I have to change? Sorry I'm really new to this. Here's how mine looks like: function disableChat() local gameInterface = modules.game_interface consoleTextEdit:setVisible(false) consoleTextEdit:setText("") local quickFunc...
  4. S

    Mod to disable chat after sending a message

    So I looked everywhere on google and here on the forums and couldn't find any topic like this. I want to know if it's possible to create a mod that will disable chat after a message is sent (after pressing enter), or just by pressing enter without any text at all. It just feels weird to be able...
Back
Top