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

  1. DevRuby

    [USA] [8.60] Marlboro Wars - December 1st 15:00 GMT-6

    make a better website xd I mean the layout because everyone has one but server is okay ;)
  2. DevRuby

    TFS 1.X+ Push Target Player Exausted

    Checking Config.lua pushCreatureDelay = 1 * 1000 change this what you want ;p
  3. DevRuby

    TFS 1.X+ ban script error tfs 1.2

    Testing for TFS 1.4.2 Work Testing for TFS 1.5 Work you need to check the engine
  4. DevRuby

    TFS 1.X+ ban script error tfs 1.2

    Banned Players not GM, GOD . Checking Look now local banDays = 7 function onSay(player, words, param) if not player:getGroup():getAccess() then return true end local name = param local reason = '' local separatorPos = param:find(',') if separatorPos then...
  5. DevRuby

    TFS 1.X+ ban script error tfs 1.2

    Now check local banDays = 7 function onSay(player, words, param) if not player:getGroup():getAccess() then return true end local name = param local reason = '' local separatorPos = param:find(',') if separatorPos then name = param:sub(0, separatorPos -...
  6. DevRuby

    TFS 1.X+ ban script error tfs 1.2

    no problem Try this local banDays = 7 function onSay(player, words, param) if not player:getGroup():getAccess() then return true end local name = param local reason = '' local separatorPos = param:find(',') if separatorPos then name = param:sub(0...
  7. DevRuby

    TFS 1.X+ ban script error tfs 1.2

    Now check local banDays = 7 function onSay(player, words, param) if not player:getGroup():getAccess() then return true end local name = param local reason = '' local separatorPos = param:find(',') if separatorPos then name = param:sub(0, separatorPos...
  8. DevRuby

    TFS 1.X+ ban script error tfs 1.2

    open ban.cpp change this bool Ban::acceptConnection(uint32_t clientIP) { std::lock_guard<std::recursive_mutex> lockClass(lock); uint64_t currentTime = OTSYS_TIME(); auto it = ipConnectMap.find(clientIP); if (it == ipConnectMap.end()) { ipConnectMap.emplace(clientIP...
  9. DevRuby

    TFS 1.X+ ban script error tfs 1.2

    Add now this local banDays = 7 function onSay(player, words, param) if not player:getGroup():getAccess() then return true end local name = param local reason = '' local separatorPos = param:find(',') if separatorPos then name = param:sub(0...
  10. DevRuby

    TFS 1.X+ ban script error tfs 1.2

    open database add this let me know CREATE TABLE IF NOT EXISTS `account_bans` ( `account_id` int NOT NULL, `reason` varchar(255) NOT NULL, `banned_at` bigint NOT NULL, `expires_at` bigint NOT NULL, `banned_by` int NOT NULL, PRIMARY KEY (`account_id`), FOREIGN KEY (`account_id`)...
  11. DevRuby

    TFS 1.X+ ban script error tfs 1.2

    Check this telling my what have error show my your iologindata.cpp local banDays = 7 function onSay(player, words, param) if not player:getGroup():getAccess() then return true end local name = param local reason = '' local separatorPos = param:find(',') if...
  12. DevRuby

    TFS 1.X+ ban script error tfs 1.2

    Look now local banDays = 7 function onSay(player, words, param) if not player:getGroup():getAccess() then return true end local name = param local reason = '' local separatorPos = param:find(',') if separatorPos then name = param:sub(0, separatorPos -...
  13. DevRuby

    TFS 1.X+ ban script error tfs 1.2

    Try this show my error if have local banDays = 7 function onSay(player, words, param) if not player:getGroup():getAccess() then return true end local name = param local reason = '' local separatorPos = param:find(',') if separatorPos then name =...
  14. DevRuby

    TFS 1.X+ ban script error tfs 1.2

    Try this let me know local banDays = 7 function onSay(player, words, param) if not player or not player:isPlayer() then print("Invalid player object.") return false end if not player:isGod() then print("You do not have the required privileges.")...
  15. DevRuby

    TFS 1.X+ ban script error tfs 1.2

    Try this not testing local banDays = 7 function onSay(player, words, param) if not player or not player:isPlayer() then return false end local name, reason = param:match("^(%S+)%s*(.*)$") if not name or name:len() == 0 then return false end local...
Back
Top