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

    [TFS 1.3] Mini Shop with command or modalWindow

    How can I use it and that the cost is charged for the value of a storage? in my case storage 43000, for example I want storage 43000 to have a value of 1000 and that x amount of value be deducted from that storage.
  2. nefinoo

    RevScripts Simple Task Points

    Is a revscript, need register the event? 1660771462 It Works, thanks
  3. nefinoo

    RevScripts Simple Task Points

    I forgot to mention that the missionstorage is already set to 1
  4. nefinoo

    RevScripts Simple Task Points

    local CusMons = CreatureEvent("CusMons") function CusMons.onKill(player, target) local config = { -- Use missionStorage to link the monsters to each mission. It is set up this way so multiple missions can have the same monsters. [1] = {name = "Rat",, missionStorage = 43000, storage =...
  5. nefinoo

    Error Compiling Canary

    i reinstall and update vcpkg, and then install protobuf and now get this error CMake Error at C:/vcpkg/scripts/buildsystems/vcpkg.cmake:285 (_find_package): 1> [CMake] By not providing "Findspdlog.cmake" in CMAKE_MODULE_PATH this project has 1> [CMake] asked CMake to find a package...
  6. nefinoo

    Error Compiling Canary

    1> [CMake] CMake Error at C:/Program Files/Microsoft Visual Studio/2022/Community/Common7/IDE/CommonExtensions/Microsoft/CMake/CMake/share/cmake-3.23/Modules/FindPackageHandleStandardArgs.cmake:230 (message): 1> [CMake] Could NOT find Protobuf (missing: Protobuf_LIBRARIES Protobuf_INCLUDE_DIR)...
  7. nefinoo

    RevScripts Monsters Loot

    Bunp?
  8. nefinoo

    RevScripts Monsters Loot

    Bump
  9. nefinoo

    [10.98] Fuzzy ~mapping showoff~

    Nice job
  10. nefinoo

    RevScripts Monsters Loot

    Is there a way to cancel all the loot of all the monsters, and through a script do a custom loot for all or some specific monsters? I am using Canary Repository
  11. nefinoo

    C++ RME stuck on loading metadata

    x2
  12. nefinoo

    [Canada] [8.60] DeathZot | 99% Custom Map | 22 Vocations | Over 200 New Items | Prestige | Dungeons

    Can somebody help me with equip? t14? i am to reborn third time 1642468102 Since no one plays, I would like to play these days since I am locked up by covid
  13. nefinoo

    Revscripts(1.3) Custom Equipment {SYC}

    Any update?
  14. nefinoo

    Lua Spell does no damage

    Gif -- Minimum amount of magic missiles local minMissiles = 8 local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE, COMBAT_HOLYDAMAGE) local function arcaneDamage(player, var, target, missileEffectpos, animationroll) local player = Player(player) local creature =...
  15. nefinoo

    C++ Error with bless

    How can I update my tfs leaving my own files already modified? for example I have set the monster level system
  16. nefinoo

    C++ Error with bless

    local buybless = TalkAction("/bless") function buybless.onSay(player, words, param) if player:hasBlessing(1) then player:sendTextMessage(MESSAGE_INFO_DESCR, "You are already blessed.") player:getPosition():sendMagicEffect(CONST_ME_POFF) else local...
  17. nefinoo

    Lua Npc Sell more items after finish a quest.

    No, I put it like this to add them later
  18. nefinoo

    Lua Npc Sell more items after finish a quest.

    local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function...
  19. nefinoo

    Lua Npc sell exercise weapons

    function onUse(player, item, fromPosition, itemEx, toPosition) storei = player:addItem(31208, 1) if storei then storei:setStoreItem(true) end return true end I use this to use in a lever to see if works and not works, send the sword on my backpack
Back
Top