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

revscripts

  1. shakal1994

    Slot stone - ADD critical, manaleach, hp leach TFS 1.5 Nekiro 8.0

    Hi.... I would like to make this system work on the TFS 1.5 Nekiro downgrade. 8.0 It even works, but the description and core dump don't appear :( Or can anyone make this script in revscript
  2. aqubjukr

    TFS 1.X+ Get a value by showTextDialog

    Does anyone know how to tell me the correct way to get the text value typed by the player inside the showTextDialog? I know that the function is structured in the following way: showTextDialog(id, text, canWrite, length), but I couldn't do it at all. local function processValue(cid) local...
  3. 44 Hunter

    RevScripts add some functions

    Could someone add some functions to my script? Are they: I want to be able to add an actionID to the item. I also need the items to be delivered inside a bag. It is also necessary to set an actionID on the item if it is inside a bag. local configs = { uniqueIds = { [2001] =...
  4. Galatea

    Lua [Talkaction] Auto-Bless command TFS 1.4.2

    Hello everyone, I heartily need some help, namely I need an auto-bless script which will enable the player to turn on / turn off function. If a player falls and has to turn on the command, it automatically after death, when he logs in, buys him blessings - cash from the bank. I found something...
  5. F

    help modify script

    Hey guys, I have a script that gives the player a bonus when he has a complete addon, but this script only works when the player is using this addon, I wanted your help in modifying it. I wanted the script to give the bonus to the player even if he is not using that addon that is complete...
  6. Alberto Cabrera

    [TFS 1.4] Boosted Creatures

    Hello, good evening! I don't know if there is one here in the forum that works, anyway, here it is. data/scripts/BoostedCreature.lua boosted = {} boosted.creatures = {} -- possible monsters boosted.possible = { { {"Demon", "Hellhound", "Grim Reaper", "Juggernaut"}, -- exp list...
  7. Yan18

    TFS 1.X+ [TFS 1.3] How to Create An Instant Spell in Spell Folder (RevScripts)?

    Hello guys! As the title says, I would like to know how to create an instant spell. I'm learning how to use RevScripts and I would like to know if there is someone that can explain me how to do that. If is possible, to create a easy spell, as Fireball for example.
  8. beenii

    [TFS 1.4] Advanced tile requeriment for exclusive zones

    Hello, I took the liberty of making a system to give access to exclusive areas. It is very easy to configure, if you have any idea to improve it, comment it Features minimum level to enter maximum level to enter you can combine minimun and max level to tile Storage (if you want give access...
  9. Codinablack

    Revscripts(1.3) Custom Equipment {SYC}

    Ok everyone, I have been working on something for a few weeks in my spare time, and I'm here to share with you, a "Custom Equipment" system, that loads all your custom equipment properties thru a single xml file. Credits to : @azzkaban for original release this is based off of here Special...
  10. L

    RevScripts modal promotion in revscript

    Hello I would like to know if it is possible to create a modal system for promotions such as Royal paladin Elder deuid and... If yes how would you do it? I tried watching several tutorials but I was only able to open the window
  11. M

    RevScripts how to add level requirement to buyhouse script

    local buyHouse = TalkAction("!buyhouse") function buyHouse.onSay(player, words, param) local housePrice = configManager.getNumber(configKeys.HOUSE_PRICE) if housePrice == -1 then return true end if not player:isPremium() then player:sendCancelMessage("You need a...
  12. miguelshta

    RevScripts Tfs 1.3 random addon to new players

    Hello I need a script that gives a 1 random addon to new players
  13. Sarah Wesker

    MoveEvent Snake Event TFS 1.3 ~ Revscript ~ EventCallback

    Hello everyone, I hope you are well Today I want to share with you an event that I had planned to do for a long time, I know that @Snavy released his version but for a change I will also launch mine First of all I will show you a simple example of what it looks like: Installation...
  14. Q

    revscript aura system

    Good night people I was using a tfs 1.3 pack more, I decided to migrate to otservbr (revscript) I have an aura system, on tfs 1.3 it works perfectly, on otservbr when equipped, it has a multiplied effect, you can equip more than 1x, I tried several modes ... Maybe you could have expressed me...
  15. Sarah Wesker

    MoveEvent Infinity Rooms - TFS 1.3

    This was inspired by this thread. data/scripts/infinityrooms.lua -- Infinity Room Config local IRConfig = { startPos = Position(2887, 1756, 7), -- upper left corner tpInAid = 65000, -- actionid for enter teleport tpOutAid = 65001, -- actionid for exit teleport foodAid = 65002...
  16. Sarah Wesker

    💰 DreamOfGold 💰 Event | TFS 1.3 Revscript ~ EventCallback

    Hello again, here I bring you the 💰 Dream Of Gold 💰 event, it is about walking on the gold to accumulate points, you can also find chests full of gold, you must click on these chests to win a very considerable amount of extra gold, according to the configuration. Players who gain extra...
  17. Sarah Wesker

    [TFS 1.3] EventCallback: Firestorm Event

    Here is the Firestorm Event, the steps to follow below: Create a new lua file on directory data/scripts/ and name it firestorm.lua then paste the code into the file and that's it! In the first lines of the script you can find the event settings. If you don't want to shut down the server and...
  18. miguelshta

    RevScripts help converting this movements: to revscripts

    Script 1.- actionid: 45000 local conditionRed = Condition(CONDITION_OUTFIT) conditionRed:setTicks(120 * 60 * 1000) conditionRed:setOutfit({lookType = 465, lookHead = 94, lookBody = 94, lookLegs = 94, lookFeet = 94}) local conditionBlack = Condition(CONDITION_OUTFIT) conditionBlack:setTicks(120...
Back
Top