Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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!
Hello otland community, I am configuring a store module in otclient for TFS 0.x and OTX2, which opens the shop through a button and buys the item, when you press "Purchase" you give OK and it buys the item through a talkactions command.
Up to this point everything works perfectly.
There are two...
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...
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...
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)...
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
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...
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] =...
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...
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...
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...
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 =...
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"...
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: \""...
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...
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...
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...