• 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

    Storage tfs 1.5 error

    [Warning - data/creaturescripts/scripts/login.lua] Invoking Creature:getStorageValue will return nil to indicate absence in the future. Please update your scripts accordingly. [Warning - data/creaturescripts/scripts/login.lua] Invoking Creature:getStorageValue will return nil to indicate absence...
  2. nefinoo

    RevScripts Spells with warning and delay

    Could you help me with an example spell revscript, where the area is a small circle and it grows, but before that you will see tutorialsquares where the spells will hit.
  3. nefinoo

    RevScripts exchanger lever

    Could you help me to make a revscript where a player can change up to a maximum of 100 items, clicking on a "machine" and it displays a modal, where the player can choose which items they want to receive, this with a cost of 100gp per item changed , with conditions such as that you can only put...
  4. nefinoo

    RevScripts Points system by killing monster

    Im trying to find a monster point system when you kill 1 monster get 1 point. i am using storage value = 100 to save the points count.
  5. nefinoo

    RevScripts Automatic mining with delay between each action

    I wanted to make the player use the pickaxe only once on a rock, and this script would be running by itself for 1 hour, with a 2 second delay between each action. i am using otservbr local Minar = Action() local monsters = { [1] = { mons = "White Pale", chance = 3, expmin= 500000, expemax...
  6. nefinoo

    Lua Crit Amount Max 100

    Why does the amount of damage per crit only go up to 100? local combat = Combat() combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_GREEN) combat:setParameter(COMBAT_PARAM_AGGRESSIVE, false) local condition = Condition(CONDITION_ATTRIBUTES) condition:setParameter(CONDITION_PARAM_TICKS...
  7. nefinoo

    AAC Error to creat a new character with a new vocations.

    this is my config.php <?php /** * This is MyAAC's Main Configuration file * * All the default values are kept here, you should not modify it but use * a config.local.php file instead to override the settings from here. * * This is a piece of PHP code so PHP syntax applies! * For boolean...
  8. nefinoo

    RevScripts Craft system cant craft

    I am trying to make a revscript crafting system, and everything goes well when I open my modalwindow to show me the equip to craft, it opens, when I click the craft button nothing happens, could you help me? I know I'm doing something wrong but I don't understand the modalwindow. I am using tfs...
  9. nefinoo

    Lua Spells require storage to be cast

    Can someone help me to make a example of spell with a storage require to use it? i am using tfs 1.4.2 if is a rev its ok.
  10. nefinoo

    RevScripts Spawntime based on players online

    how increase a spawn time based on number of players online
  11. nefinoo

    RevScripts Modal to open a list of items within another list of items.

    Hi!, I want to create my own crafting system, but I don't understand the modalwindow, for example, that when clicking on any item, in this case an anvil, a modal window opens, with a list of options like "leather equipment", "steel equipment", "gold equipment", etc... and when you choose one, it...
  12. nefinoo

    Lua Npc "hi" by storage restriction.

    How can I make the player need the storage X > X number, to be able to trade with it local keywordHandler = KeywordHandler:new() local npcHandler = NpcHandler:new(keywordHandler) NpcSystem.parseParameters(npcHandler) local talkState = {} function onCreatureAppear(cid)...
  13. nefinoo

    Error on GlobalEvents::think

    it was the best thing i did to add some random animations to my temple, and everything runs normally but it annoys me that my console throws this error every time the globalevent runs local items1 = 8641 local items2 = 8672 local items3 = 8649 local items4 = 8645 local items5 = 8643 local...
  14. nefinoo

    RevScripts Throw item or backpack full of items to specified tile and sell it.

    As the title says, if you could help me with this script that works to sell items by throwing them on a tile, or if the player throws some bp full of items, he will sell all of them and receive his bp back. Tfs 1.4
  15. nefinoo

    RevScripts Protection by % based on a storage value.

    Could you help me with a revscript to protect those who have a 30% "score" lower than other players? I am using storage 757557, for example if the attacking player has a score of 300, and the attacked player has a score less than 200, he does not suffer damage or activate pk on the attacker.
  16. nefinoo

    RevScripts Automatic weapon change

    tfs 1.4.2 forgotten master, a script that automatically upgrades or changes your weapon upon reaching a certain level. Restrictions: Weapon can only be upgraded once and needs to be equipped.
  17. nefinoo

    Lua Help Point system

    Lua Script Error: [Scripts Interface] C:\Users\Nefi\OneDrive\Escritorio\forgottenserver-master\data\scripts\CUSTOMS NEFI\MonstersPoints.lua:callback ...rver-master\data\scripts\CUSTOMS NEFI\MonstersPoints.lua:16: attempt to compare number with nil stack traceback...
  18. nefinoo

    RevScripts Addon Bonuses Conditions

    I have had this script for a long time and before I used it in tfs 1.3, but now I want to use it in canary repos and I got error, could you help me? [error] Lua script error: scriptInterface: [Scripts Interface] scriptId: [C:\Users\Nefi\OneDrive\Escritorio\canary-main\data\scripts\CUSTOMS...
  19. 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 =...
  20. 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)...
Back
Top