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

    Solved ManaShield emblem

    Yeah you're right about the condition part. I was tired when writing this and thought about it before going to bed. Either way, I tagged you because you mentioned that there was a addevent required which in my opinion wasnt needed and i wanted your pov on that. 180000 milliseconds is 5 hours...
  2. DestinationSer

    Solved ManaShield emblem

    Use the script i provided. I posted //doCreatureSetGuildEmblem~ to show you that it exists.
  3. DestinationSer

    Solved ManaShield emblem

    //doCreatureSetGuildEmblem(cid, emblem) lua_register(m_luaState, "doCreatureSetGuildEmblem", LuaInterface::luaDoCreatureSetGuildEmblem); There is no need for a addevent or a source edit. The emblem should dissapear once the player relogs and has no need for an addevent to remove it or to...
  4. DestinationSer

    Solved ManaShield emblem

    You just want the person to have a emblem while using his manashield? Post the script for your manashield @jestem pro
  5. DestinationSer

    Loosing promotion tfs 0.4

    Try this. @OldSchoolPlayer If this works, stop using account manager and use website instead <?xml version="1.0" encoding="UTF-8"?> <vocations> <vocation id="0" clientId="0" name="None" description="none" needpremium="0" gaincap="10" gainhp="5" gainmana="5" gainhpticks="6" gainhpamount="1"...
  6. DestinationSer

    Loosing promotion tfs 0.4

    Post your vocations.xml
  7. DestinationSer

    Lua TFS 1.2 Spells , Storage , Vocation

    It is, but better tabbed and idk why you would use "or not" but it might be different in tfs 1.2
  8. DestinationSer

    Lua TFS 1.2 Spells , Storage , Vocation

    Im not 100% experienced with tfs 1.2, but try this. function onCastSpell(creature, variant) local voc = player:getVocation():getId() if player:getStorageValue(1234) >= 1 or (isInArray({4,8}, voc)) then return combat:execute(creature, variant) else...
  9. DestinationSer

    InsanityOT | New Version | COMING SOON

    I think you are referring to the old insanity, this is not the same ot.
  10. DestinationSer

    InsanityOT | New Version | COMING SOON

    Heres a small showoff, as stated in the feature list above you can now trade prestige medals (given for prestiging) in for perks or keep them for later use. When trading them in for perks you can only trade in the prestige medal obtained by your character. I understand that people may want to be...
  11. DestinationSer

    clean script only for a particular item

    If you want go about doing this by source editing you need to edit this part of game.cpp void Game::cleanMapEx(uint32_t& count)
  12. DestinationSer

    New Game 64x64

    Obviously, its twice as big as what 32x32 is hehe xD I also felt like sharing this showing the difference graphic wise ---------------------32x32------------------------------------------------------------------------64x64-------------------------------------
  13. DestinationSer

    House Tiles bug HELP

    Re-download the sources and try again. You must have deleted something you shouldn't have touched unknowingly. Trust me, it happens
  14. DestinationSer

    0.3.6 Promotion to give coloured emblem?

    Place this in your login.lua under function onLogin local voc = getPlayerVocation(cid) if (isInArray({1, 2, 3, 4}, voc)) then -- place your vocationids doCreatureSetGuildEmblem(cid, 2) return true end
  15. DestinationSer

    InsanityOT | New Version | COMING SOON

    Spells are being added. Pvp is on its way of being balanced and once thats done I'll look into more features for pvp
  16. DestinationSer

    InsanityOT | New Version | COMING SOON

    It does work well haha, its something you have to try out for yourself which you will be able to very soon xD
  17. DestinationSer

    InsanityOT | New Version | COMING SOON

    1. The soul imprinting key now can capture experience/health/mana boosters which boosts your health for a certain amount of time upon using it. - The soul imprinting key can catch currently: 1. All bosses ingame, and world bosses (world bosses require you to get it really low on health and upon...
  18. DestinationSer

    InsanityOT | New Version | COMING SOON

    A update on whats going on. Theres been added a lot of new features to the server and quests and we are heading closer and closer to a release date :-)
  19. DestinationSer

    Searching anti house trash system :P

    Are you throwing things into the house on your staff character by any chance? Afaik, 0.3.7 and 0.4 should have built in house trash protection
Back
Top