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

talkactions

  1. VitoxMaster

    TalkAction [TFS 1.3+] Player statistics in text dialog

    Hi guys! I've been here for quite some time and I decided to share my last small talkaction implemented for my server. Since my server is based on 8.6 (Nekiro downgrade TFS 1.5) and I use official tibia client I have no possibility to simply implement new window on user interface. That's how an...
  2. Kuantikum

    Lua Report globalevent interval time remaining by talkaction command

    Hello, There is a possibility to know how much time left for the next interval of a specific globalevent script, using an talkaction command?
  3. Hyagosrs

    [ERROR - TALKACTION !BLESS]

    i get an error while i say !bless, look: 2020-08-05 04:11:52 - Lua Script Error: [Scripts Interface] 2020-08-05 04:11:52 - /home/hyago/otserv/data/scripts/talkactions/player/bless.lua:callback 2020-08-05 04:11:52 - ...e/hyago/otserv/data/scripts/talkactions/player/bless.lua:4: attempt to...
  4. potinho

    Talkaction - Spells

    Im using this code, but he returns a empty spellbook talkactions\scripts\spellbook.lua function onSay(cid, words, param, channel) local t, k = {}, getPlayerLevel(cid) for i = 0, getPlayerInstantSpellCount(cid) - 1 do local spell = getPlayerInstantSpellInfo(cid, i)...
  5. M

    [SZUKAM] Komend na uzycie mr i uh

    Witajcie, poszukuje skryptu do uzycia run manarune i uh na siebie pod 7.6 Przykład : Grasz pisze !uh i uzywa na niego runy uh z plecaka, po czym usuwa jedno uzycie Silnik to avesta 0.6.4
  6. A

    TalkAction Very fun Script for GODs

    Hello dear friends: In my experience, being a player is more funny than being a GOD, but sometimes you need the GOD to put some things in order. So you have to login as player, then as god and viceversa, making it very boring. I have the solution for this problem. With this talkaction you can...
  7. F

    TFS 1.X+ saga converter script for tfs 1.2

    Hello, I am using this sfs script from tfs 0.4 and I tried to convert it to tfs 1.2 from ninjalulz but without success. help-me!!! when I use this script below this error https://github.com/ninjalulz/forgottenserver/tree/8.6 local saga = { -- Naruto --- [1] =...
  8. P

    I'm having trouble script someone can help me to solve the error

    [24/09/2017 17:19:02] [Interface Error - TalkAction] [24/09/2017 17:19:02] dados / talkactions / scripts / tpp.lua : eek:nSay [24/09/2017 17:19:02] Descrição: [24/09/2017 17:19:02] tenta indexar um valor nulo [24/09/2017 17:19:02] rastreamento de pilha: [24/09/2017 17:19:02] [C]: na função...
  9. S

    NPC swich item [7.6]

    Hi, I need help with script. Player should lose one selected item and get other (not cash). I have DeadTouch 1.9 Engine - I know is old and TalkAction with command like AddPlayerItem/RemoveItem are not working. Any one have idea how can I resolved this problem. Here I attach some codes that I...
  10. L

    Problem with the /reload command TFS 1.2

    I can't use the /reload if i just type /reload i get "Reload type not found." if i put a reload type like "/reload all" nothing happens just this error. Lua Script Error: [TalkAction Interface] data/talkactions/scripts/reload.lua:onSay data/talkactions/scripts/reload.lua:76: attempt to call...
  11. D

    a noob problem with talkactions 10.9

    hello otland community, i think i have a noob problem with talk actions on my OT, the problem is that: at the moment i use "/ i 2160" with my god character it does not work.. Same with, "/ m, / clean, / ghost, /s" etc... and "/a 1, /up,/down" they work normally.. thanks in advance...
  12. Nekiro

    TalkAction [TFS 1.x] Ban command supporting ban days

    I made this talkaction, probably can be done better, but yeah gonna share it if someone need. /ban name, reason, bandays function onSay(player, words, param) if not player:getGroup():getAccess() then return true end local split = param:split(",") local name =...
  13. eduardocosta

    Lua Talkaction !notice help me TFS 1.2

    Hello guys, I need help with 1 command. First look my talkactions code. talkactions/notice.lua function onSay(cid, words, param) file = io.open('noticetime.txt','r') notice = file:read(-1) doShowTextDialog(cid,1950,notice) file:close() end talkactions.xml <talkaction words="!notice"...
  14. 115820

    Talkaction !online

    Hi everyone. I use this script to command !online local ranks = { [1] = {"Tutor"}, [2] = {"S-Tutor"}, [3] = {"GM"}, [4] = {"CM"}, [5] = {"GOD"}, [9] = {"Admin"}, [10] = {"Owner"} } local config = { showGamemasters = getBooleanFromString(getConfigValue('displayGamemastersWithOnlineCommand')) }...
  15. B

    Lua Addskill Logs

    Hello guys! I'm running an OTX 3.7 server (codename: SAILOR) -which is based on TFS 1.3- and I was trying to add command logs for the server; however, I failed. Instead I started adding the function function onSay(player, words, param) print("> " .. player:getName() .. " added skill: \""...
  16. G

    Solved How to insert db.query on function in talkactions?

    Hi guys, I need to run a talkaction is made an update on the table players, set cast = 1. I tried as follow, but not work. function onSay(player, words, param) if param == "on" then param = nil end if player:startLiveCast(param) then db.query("UPDATE `players` SET `cast` = 0...
  17. hodleo

    TalkAction [TFS 1.0] Temporial waypoints

    The old, useful and simple waypoint command from tfs 0.3, which saves positions for GMs that get erased on server restart. <talkaction words="/wp" separator=" " script="waypoints.lua" /> if getGlobalStorageValue('waypoints') == -1 then setGlobalStorageValue('waypoints', {}) end function...
  18. hodleo

    TalkAction [TFS 1.0] Local highscores

    I made this talkaction since I didn't see any ingame highscore scripts for tfs 1.0 yet. It loads the top 30 ranked players on experience, magic and skill levels into global storages when server starts up and it gets updated each 3 hours by default. This script takes advantage of the new global...
Back
Top