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!
Why do you think they (and we) are obliged to help leechers who does not contributes with the community? Nobody here is your teacher or anything to fix all the bugs you have in your server.
Half of your questions are already answered in the forum and you can't even google it or try to solve it...
Maybe. Try to use the default store.xml
forgottenserver/store.xml at 03aa39a0cc22049bb72d1cc052af3eb84c601f83 · brunominervino/forgottenserver · GitHub
Everything is working fine here with TFS master.
Ok, just in case if you don't know, every place you have 15 letters, if you want to change, you also need to change it for 15 letters, like:
can be
or
Every X means SPACE or you'll get an error.
WRONG
RIGHT
You should allow external plugins/extensions too. Do as Wordpress, you can download plugins from the server or upload it yourself on folder. If the folder exists, you just need to enable/disable.
Can you try run this on your MySQL and print the values (if not empty, of course)?
SELECT * FROM player_storage WHERE key = 32143;
If you have some value < 0, maybe this is the problem.
It should be working, don't know what can be happening tbh. Try to reload talkactions/restart the server.
You can try change this on talkaction:
function onSay(player, words, param)
local storageatual = player:getStorageValue(storage)
local plural = "s"
local qtd = ""
For:
function onSay(player, words, param)
local storageatual = player:getStorageValue(storage)
local plural = "s"...