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

  1. B

    cant log in

    I played around with it and i got it to work like this. Does it do the job its supposed to do? local config = { -- <------------the suggested part loginProtection = true, loginProtectionTime = 10 -- Login Protection Time / seconds } function onLogin (player) local loginStr = "Welcome to "...
  2. B

    cant log in

    I dont really know how to code but trying to figure this out by observation. So I was able to make it work and let me log in like this function onLogin (player) local loginStr = "Welcome to " .. configManager.getString(configKeys.SERVER_NAME) .. "!" local player = Player (player)...
  3. B

    cant log in

    Using TFS 1.0 function onLogin (player) local loginStr = "Welcome to " .. configManager.getString(configKeys.SERVER_NAME) .. "!" if player:getLastLoginSaved() <= 0 then loginStr = loginStr .. " Please choose your outfit." player:sendOutfitWindow() else if...
Back
Top