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

Search results

  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...
  16. DevRuby

    TFS 1.X+ bug with `exura sio "`, `exiva "`, etc.

    Try this exura sio not testing
  17. DevRuby

    about skills doubts tfs 1.4.3

    Try This, not testing ;p local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) local function getWeaponSkill(player) local weapon = player:getSlotItem(CONST_SLOT_LEFT) if not weapon then return SKILL_FIST end local weaponType =...
  18. DevRuby

    TFS 1.5 compilation

    try this sudo apt update apt search sol2 next methods git clone https://github.com/ThePhD/sol2.git cd sol2 installing mkdir build cd build cmake .. sudo make install checking have this sudo apt install liblua5.4-dev because sol2 like this
  19. DevRuby

    Extraloot tfs1.5 problem

    Try This ;) boosted = {} boosted.creatures = {} -- possible monsters boosted.possible = { { --{"Demon", "Hellhound", "Grim Reaper", "Juggernaut", "Amazon", "Valkyrie", "Carrion Worm", "Drillworm", "Rift Worm", "Rotworm", "Kongra", "Merlkin", "Sibang", "Yeti", }, -- exp list...
  20. DevRuby

    TFS 1.X+ Converting monsters from xml to tfs 1.2

    XML syntax and structure<loot> Try this <?xml version="1.0" encoding="UTF-8"?> <monster name="Frost Dragon" nameDescription="a frost dragon" race="undead" experience="2300" speed="260" manacost="0"> <health now="1800" max="1800"/> <look type="248" head="20" body="30" legs="40" feet="50"...
Back
Top