• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Cykotitan

    Crash HELP Please!

    the first and second script basically do the same thing, remove one of them you can move to linux & limit connections per ip to gameport?:p but i don't see what's wrong with return false in login.lua
  2. Cykotitan

    Account names won't work on Gesior, only account numbers!?

    incompatible AAC and TFS/TFS database schema? provide info
  3. Cykotitan

    Lua Spell Problem

    this happens when you cast it? or at startup
  4. Cykotitan

    Windows My Server Crash Every 16 hours whay help?

    it's not 16 hours after starting up every single time, is it?
  5. Cykotitan

    Compiling Fixed!

    remove any other copies of devcpp, and then move devcpp to a simple path such as C:\devcpp
  6. Cykotitan

    Inactive house command! Need Help Rep++

    if getHouseByPlayerGUID(getPlayerGUID(cid)) then doSendMagicEffect(s, CONST_ME_POFF) doPlayerSendCancel(cid, 'You already own a house.') return true end
  7. Cykotitan

    NPC NPCs and Stackable Items

    try modules.lua callbackOnSell, remove the subType check if(item.id == itemid and item.subType == subType)
  8. Cykotitan

    NPC Island Of Destiny NPCs and Oracle

    i don't think he says that o_o
  9. Cykotitan

    Npc Ultimate NPCS

    don't you have a limit of 255 shop items
  10. Cykotitan

    Linux Help with IPTables

    there's no general rules that are good for every workload, you'd have to tune them still
  11. Cykotitan

    Linux Help with IPTables

    they're stian's not mine be aware that the limit module doesn't perform rate limiting based on source IP addr, resulting in global limiting being applied (makes it very easy to deny your services) consider using hashlimit instead
  12. Cykotitan

    Lua Food Regenerate

    figure how the attribute keys work before changing them, btw you did a good job with manamultiplier ticks shouldn't be 100 ms, amount should be much greater
  13. Cykotitan

    Gesior AAC Themeboxes too far to the right

    maybe add a news ticker
  14. Cykotitan

    Forgotten map editor 0.1-rc3 (Developer Preview)!

    better! interesting how side interface panels only appear if Example theme is used unable to scroll anymore, if i hold RMB i can see it returning me to the original position
  15. Cykotitan

    Forgotten map editor 0.1-rc3 (Developer Preview)!

    better explain you may commence pushing out hotfix at this time
  16. Cykotitan

    Forgotten map editor 0.1-rc3 (Developer Preview)!

    why does it use 99% gpu gibe money please i repot u
  17. Cykotitan

    Forgotten map editor 0.1-rc3 (Developer Preview)!

    very nice just kidding, you fail This file does not exist, the access to the following file is limited or it has been removed due to infringement of copyright. nice depositfiles
  18. Cykotitan

    Debug

    the buffer was too large, meaning too much data was sent to client too fast i'm not sure if your server is erasing items in reverse order (bottom to top, but irrelevant with decent tileLimit) or if there's simply too many tiles filled with items ahmed30 did something in outputmessage.cpp...
  19. Cykotitan

    Solved DeathBroadcast

    why is getCreatureStorage returning nil? local targetKills = (getCreatureStorage(cid, config.killStorageValue) or 0) + 1 local targetDeaths = (getCreatureStorage(cid, config.deathStorageValue) or 0) + 1 local killerKills = (getCreatureStorage(killer, config.killStorageValue) or 0) + 1...
  20. Cykotitan

    How to Remove PZ Tiles in RME?

    google is sometimes a better option
Back
Top