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!
go to phpmyadmin and open SQL..
added this query:
UPDATE `players` SET `town_id`=5;
(remember 5 is thais in rl maps) ,error here are samples have town_id 1 ,you need say with your good or look in RME.. what number town wanna your players start so enter god and say!
/town 1
/town 2
/town 3 --...
try:
local MUD_HOLE = 482
local duration = 1 * 60000 -- 3 minutes
local exhaustionStorage = 06660
local time = 15
function doTransformSandHole(parameters)
local thing = getTileItemById(parameters.pos, MUD_HOLE)
local newItem = doTransformItem(thing.uid, parameters.oldType)
end...
I don't understand why in raids.xml
just need this line:
<raid name="NameEvent" file="nameevent.xml" interval2="30000" margin="1800" enabled="yes"/>
and in your nameevent.xml <- edit announce ,etc.
<announce delay="0" type="event" message="Grrrr" />
so changed type="22" to type="event"
config.lua ,changed..
experience_stages = true
and you only need edit in data/XML/
stages.xml
looking for: <config enabled="1"/>
and edit
<stage minlevel="1" maxlevel="50" multiplier="110"/> --- edit your lines
No need guide or anything is very easy
TFS 1.0 not exist function doteleporthing..
changed:
doTeleportThing(cid,{x=x,y=y,z=z})
with
player:teleportTo({x=x,y=y,z=z})
local map = {
Xmax=33760;
Ymax=33023;
Xstart=36;
Ystart=36;
Zstart=7;
--
Delay=1500;
Skip_tiles=4;
Floors_skip=1; --Can be 1 or -1...
TFS 0.1 (LIMOS LINK)
-- ### CONFIG ###
-- time (in seconds) between connections to SQL database by shop script
SQL_interval = 30
-- ### END OF CONFIG ###
function onThink(interval, lastExecution)
local result_plr = db.storeQuery ('SELECT * FROM z_ots_comunication')
if result_plr...
TFS 0.3.6 - 0.4
local SHOP_MSG_TYPE = MESSAGE_EVENT_ORANGE
local SQL_interval = 30
function onThink(interval, lastExecution)
local result_plr = db.getResult("SELECT * FROM z_ots_comunication WHERE `type` = 'login';")
if(result_plr:getID() ~= -1) then
while(true)...
In index.php edit:
define('DEBUG_DATABASE', false);
Make it true and it will show more informations about problem.
I think problem are herE:
)->fetch();
so remove )->fetch();
made by:
// last join
$query2 = $SQL->query('SELECT `id`, `name` FROM `players` ORDER BY `id` DESC LIMIT 1...
Nobody can say me in TFS 0.1
I try converted query to 1.0 look original:
db.executeQuery("UPDATE `killers` SET `unjustified` = 0 WHERE `id` IN (SELECT `kill_id` FROM `player_killers` WHERE `player_id` = " .. getPlayerGUID(cid) .. ")")
looking this db.query 1.0 (well i think is in...