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

  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...
Back
Top