• 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 El Man

  1. El Man

    OTClient Issue on Encrypt OTClientV8

    When I exceeded 651MB (SPR) to 751MB, a crash dump happened while using --encrypt Is there solution for that? issue from my data client .. --DeleteThread!
  2. El Man

    I NEED LIMITE 50X THIS ACTION

    local max = 50 local count = 1 local storageKey = 12345 function onUse(cid, item, fromPosition, itemEx, toPosition) local usageCount = getPlayerStorageValue(cid, storageKey) or 0 if usageCount < 0 then usageCount = 0 end if usageCount >= max then...
  3. El Man

    Feature Auto Loot Sytem for TFS 1.3

    change query.str(std::string()); to std::ostringstream query;
  4. El Man

    Lua [TFS 0x+] Send Player Items to Depot

    Is possible to make script transfer all items from equipment to depot?
  5. El Man

    [USA] [8.1] Madness-Online Server

    Nice work .. good luck with your project
  6. El Man

    Count to 10!

    Restart !
  7. El Man

    OTClient OTClient after compile by vc2022 cant compatible in windows 7

    after compile otclient -> GitHub - OTCv8/otcv8-dev: OTCv8 Development repository (source code) (https://github.com/OTCv8/otcv8-dev) client work fine in win8/10 etc.. when i open client in win7 i got this problem the procedure entry point could not be located in the dynamic link library...
  8. El Man

    RevScripts BossEvent/globalevents

    local config = { pos = {x=1001, y=1010, z=7}, -- Position teleport tpid = 1387, -- id teleport } function onKill(cid, target) local position = getCreaturePosition(target) if getCreatureName(target) == "The BOSS STRIKER" and isMonster(target) then doCreatureSay(cid, "Congratulations the The BOSS...
  9. El Man

    RevScripts BossEvent/globalevents

    creaturescripts <event type="kill" name="removetpboss" event="script" value="removetpboss.lua"/> dont forget this .. registerCreatureEvent(cid, "removetpboss") globalevents function onTime(interval) local config = { pos = {x=1001, y=1010, z=7}, -- Posiçمo aonde sera criado o teleport topos...
  10. El Man

    Lua HELP WITH SCRIPT

    add in globalevents function onThink(interval) for _, name in ipairs(getOnlinePlayers()) do local cid = getPlayerByName(name) if getPlayerLevel(cid) < 45 then doPlayerAddExperience(cid,120000) end return true end end
  11. El Man

    Server offline

    change it to statusTimeout = 10 work fine for tfs 0.x+
Back
Top