• 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

    Compiling sprites client tibia

    Excuse me, could you tell me if there is any tutorial on how to modify or add new sprites to the Tibia client?
  2. nefinoo

    Lua Remove item with actionid on my backpack

    Using a example, i have a key with actionid = 1234 and the same key without actionid, how can remove the onlyone with actionid, both keys has the itemid = 2973 (Bone key)
  3. nefinoo

    Lua Add actionid and attribute set name on the same item on a corpse

    corpse:addItem(index.itemList[rand][1], math.random(index.itemList[rand][2], index.itemList[rand][3])):setActionId(1212):setAttribute(ITEM_ATTRIBUTE_NAME, "Death Key") corpse:addItem((index.itemList[rand][1], math.random(index.itemList[rand][2]...
  4. 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...
  5. 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.
  6. 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...
  7. 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.
  8. 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...
  9. 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...
  10. 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...
  11. 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...
  12. 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.
  13. nefinoo

    RevScripts Spawntime based on players online

    how increase a spawn time based on number of players online
  14. 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...
  15. 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)...
  16. 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...
  17. 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
  18. 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.
  19. 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.
  20. 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...
Back
Top Bottom