• 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. Marko999x

    Solved Door access when items are turned in issue

    vote up then report it as solution
  2. Marko999x

    OTCV8 how to disable Skull_Green on party

    yeah
  3. Marko999x

    OTCV8 how to disable Skull_Green on party

    Nah there's a line which return SKULL_GREEN you just need to remove that
  4. Marko999x

    OTCV8 how to disable Skull_Green on party

    You can remove that from player.cpp from server side somewhere in this function Player::getSkullClient(const Creature* creature) const
  5. Marko999x

    Item give Wings

    What is this script supposed to do I can't even see a function which add the player a mount or a wing
  6. Marko999x

    Item give Wings

    attempt to call method 'hasWing' (a nil value) You don't have that function. Do you even have the addWing function?
  7. Marko999x

    Berciq Rookgaard

    Looks really nice and prob never seen so many pictures in 1 post xD
  8. Marko999x

    TFS [1.4.2] MAP CLEAN

    You must enable it in config.lua cleanProtectionZones = false change to true
  9. Marko999x

    Multi In-game store configuration

    Nice! Btw you don't need to check if player has money because removeMoney function will do that alredy :D Here you can see how you could make it even easier with a simple config :D -- Version 1.0 -- Simple all-in-one configuration store local thaisdiamond = Action() local config = {...
  10. Marko999x

    Lua would this work? expbonus revscritp as eventcallback

    Did it work or not?..
  11. Marko999x

    [OTCv8] Auras and wings

    Downfall for most projects**
  12. Marko999x

    Solved Stack of items in container

    Post the solution
  13. Marko999x

    [France] [8.60] | Gamelaots |Evolution Map| PvP-E | War & RPG & Fun |StartTo Day 28.2.2024

    Ignore them abdala people nowdays are confused :D
  14. Marko999x

    [USA][CUSTOM][Starborn]

    Don't say that!!!!
  15. Marko999x

    Lua would this work? expbonus revscritp as eventcallback

    local ec = EventCallback function ec.onGainExperience(player, source, exp, rawExp) if not source or source:isPlayer() then return exp end if player:getPremiumDays() > 0 then -- I think player:isPremium() works too exp = exp * 1.1 -- Means 10% extra exp end...
  16. Marko999x

    Lua would this work? expbonus revscritp as eventcallback

    just in data/scripts yeah
  17. Marko999x

    Lua would this work? expbonus revscritp as eventcallback

    So you want give player exp bonus and give player the info about it? local ec = EventCallback function ec.onGainExperience(player, source, exp, rawExp) if not source or source:isPlayer() then return exp end if player:getPremiumDays() > 0 then exp = exp * 1.1 --...
  18. Marko999x

    Ranger's Arcani OTClient showoff

    Are there even 10 mobile player
  19. Marko999x

    Which AAC should we use in 2023 and why?

    Gesior, MyAcc, Znote
  20. Marko999x

    Why

    New resources must be posted under Resources tab. A discussion thread will be created automatically, you can't open threads manually anymore. What's the reason behind it? Its confusing in my opinion Why would u change something that has always worked without problems over the years :D
Back
Top