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

    [Tutorial] Workbench MOD (OTClient + TFS 1.4.2)

    I created a GitBook to make edits and updates easier. Feel free to access it and enjoy the tutorial! Hope it helps anyone who wants to use it. https://muntootserver.gitbook.io/docs/otclient-tutoriais-mods/tutorial-workbench-mod-otclient-+-tfs-1.4.2
  2. darcioantonio

    [Tutorial] Pop-Up MOD (OTClient + TFS 1.4)

    I created a GitBook to make edits and updates easier. Feel free to access it and enjoy the tutorial! Hope it helps anyone who wants to use it. GitBook https://muntootserver.gitbook.io/docs/otclient-tutoriais-mods/tutorial-pop-up-mod-otclient-+-tfs-1.4
  3. darcioantonio

    [Tutorial] How to Display a Custom Image and Sounds on Screen Using a Client Mod (OTClient + TFS 1.4.2)

    🔉: In this tutorial, I’ll show you how to create a client mod that allows the server to display custom images and play sounds on the player's screen using ExtendedOpcode. This is perfect for showing quest hints, warnings, or even fun animations and sound effects! ✅ Client-Side Setup Create a...
  4. darcioantonio

    TFS 1.2 add Cap on item

    You're right, it's actually TFS 1.4.2. I must have hit the wrong key when typing the title. Thanks for pointing it out!
  5. darcioantonio

    TFS 1.2 add Cap on item

    Use is.. Script is Revscript for tfs 1.2 10.98 add in data/scripts/movements/Name_Script.lua local config = { itemId = 26538, -- ID do item que concede capacidade capacityBonus = 500, -- Quantidade de capacidade a ser concedida storageKey = 102300 -- Storage key para controlar o...
  6. darcioantonio

    Create random item on the map

    I managed to do it this way, and the code is there for anyone who wants to use it! -- Configurações do script local config = { topoEsquerdo = {x = 1471, y = 376, z = 7}, sulDireito = {x = 1488, y = 387, z = 7}, itensCreate = {13785, 13786}, itensQuant = 1000, } -- Função para...
  7. darcioantonio

    Create random item on the map

    I've created this script to generate random items on the map, but it's currently placing them inside walls, on top of rivers, etc. Is there a possibility to limit the placement to areas where the player can walk?" OTX 0.4 (OTX Server Version: (2.15)) local config = { topoEsquerdo = {x =...
  8. darcioantonio

    Add earth, fire, ice in set.

    Sure, however, I would like to add things like this: <attribute key="absorbpercentphysical" value="8"/> <attribute key="absorbpercentdeath" value="8"/> <attribute key="absorbpercentearth" value="8"/> <attribute key="absorbpercentenergy" value="8"/> <attribute key="absorbpercentfire" value="8"/>...
  9. darcioantonio

    Add earth, fire, ice in set.

    TFS 0.4 TheOTX 2.5 Is there a way to add elemental protection to an existing item? I'm creating a rarity system where items should come randomly with a kind of defense. For example, a common item could come with one random option with 3% defense against fire, ice, earth, etc. I know I can...
  10. darcioantonio

    Stop Event Help

    One of the possibilities worked on without results.
  11. darcioantonio

    Stop Event Help

    Neither of the 2 ways worked
  12. darcioantonio

    Stop Event Help

    I have tis script tfs 0.4otx function onUse(cid, item, frompos, item2, topos) timeBoss(cid) end function timeBoss(cid) addEvent(function() teleportPlayersToSaida(getPlayersInArea(config.nortEsquerdaSalaBoss, config.sulDireitaSalaBoss)) end, 10 * 1000) end How can I...
  13. darcioantonio

    A simple question!

    What is the purpose of the file located in the server root called: Core He's been there for some time and I left him alone there, but now the doubt has arisen Edit: TFS 0.4 8.60 OTX
  14. darcioantonio

    How can I make a creature walk in a specific location as well as summon as a regular creature?

    right and is there any example of how to make the monstrous walk at the coordinates and attack, sorry for my ignorance, I'm a layman on the subject!
  15. darcioantonio

    Storage tfs 1.5 error

    look this
  16. darcioantonio

    Storage tfs 1.5 error

    the error was removed, but the character does not connect, remembering that this version is 12.87 so I went to the definitions file and set it to 10.98 Archive Definitions.h // Copyright 2023 The Forgotten Server Authors. All rights reserved. // Use of this source code is governed by the...
  17. darcioantonio

    Storage tfs 1.5 error

    I did everything and it's still like this
  18. darcioantonio

    Storage tfs 1.5 error

    right but I don't know where to change where to add there is no specific path I'm having trouble understanding
  19. darcioantonio

    Storage tfs 1.5 error

    Edited! function onLogin(player) local serverName = configManager.getString(configKeys.SERVER_NAME) local loginStr = "Welcome to " .. serverName .. "!" if player:getLastLoginSaved() <= 0 then loginStr = loginStr .. " Please choose your outfit."...
  20. darcioantonio

    Storage tfs 1.5 error

    Sorry Edit function onLogin(player) local serverName = configManager.getString(configKeys.SERVER_NAME) local loginStr = "Welcome to " .. serverName .. "!" if player:getLastLoginSaved() <= 0 then loginStr = loginStr .. " Please choose your outfit."...
Back
Top