• 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

    Fastattack configurable per item

    edit Player::getAttackSpeed in player.cpp you can check if player has the item on every attack, or store it in a boolean:p
  2. Cykotitan

    Lua Globalevents

    when i said post globalevents, i meant search the mods folder aswell
  3. Cykotitan

    Crash

    provide a backtrace
  4. Cykotitan

    Lua Potions Bug

    i would try print(getPlayerVocation(cid)) to make sure :p
  5. Cykotitan

    Lua Potions Bug

    this should be good, you may have to add == TRUE depending on your distro :p
  6. Cykotitan

    Help with debug!

    in newer client versions this suggests an inconsistency in items.otb and tibia.dat attributes
  7. Cykotitan

    Crash HELP Please!

    are you sure? it should prevent logging in more than 1 account manager per ip
  8. Cykotitan

    Lua Globalevents

    maybe use notepad++ to search them for doItemSetAttribute or just do it manually
  9. Cykotitan

    NPC Marriage system 8.6+ [Fixed]

    replace $player->marriage with $player->getMarriage() or not, this isn't compatible with this custom system
  10. Cykotitan

    Lua Globalevents

    post globalevents that contain these functions
  11. Cykotitan

    No attack mates

    if the name contains spaces/quotes, bad things would happen :p:p after all a primary key lookup should be faster
  12. Cykotitan

    Crash HELP Please!

    function onLogin(cid) if getPlayerAccountManager(cid) ~= MANAGER_NONE and #getPlayersByIp(getPlayerIp(cid)) > 1 then return false end doShowTextDialog(cid, 2597, "Welcome") return true end you can replace the last script with that :p
  13. Cykotitan

    No attack mates

    fixed
  14. Cykotitan

    Monster and broadcast

    registered it in monster file?
  15. Cykotitan

    RME can't place creatures on mountain ground

    it's not walkable, use mountain top ground (the lighter version)
  16. Cykotitan

    Lua Custom wand does no damage

    function onGetFormulaValues(cid, level, maglevel) local min = level * 0.2 + maglevel * 0.9 local max = level * 0.4 + maglevel * 1.2 return -min, -max end
  17. Cykotitan

    Lua globalevents

    he never specified if there's several vocations, so it's up to him to copypaste @OP try adding a print call in the function such as print("test") to see if the globalevent runs at all :p post your globalevents.xml line and make sure you're not using milliseconds and your server treats them as...
  18. Cykotitan

    Web Free Premium Account??

    just change the Premium Account Grátis text to Free Account and maybe the color to red? :p
  19. Cykotitan

    Lua Spell Problem

    you're making a mistake
  20. Cykotitan

    Windows RME Map Editor not working on WINXP

    install visual c++ redist as stated here
Back
Top