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!
i need to remove boss everytime i pull the lever to kill only one.
i tried everything, i tried another parameter that i have, and nothing works.. this is lloydlever.lua
local config = {
centerRoom = Position(32799, 32832, 14),
BossPosition = Position(32799, 32827, 14),
newPosition =...
im trying to find this archive, but the only part i have my server path is in config/config.php
# Account Maker Config
$config['site']['serverPath'] = "/home/linux/otserv/";
$config['site']['encryptionType'] = 'sha1';
$config['site']['useServerConfigCache'] = false;
can someone tell me how to turn the boss position to the side or down?
see that they are facing upwards, I have already seen them on some servers, facing normally.
because when I turn on the server, and I'm going to play, they are the same on the rme
How to set a specific storage "8091" in this script, and a cooldown of 3 hours for this storage:
if item:getActionId() == 5500 then -- Essence of Malice
if player:getPosition() == Position(33095, 31943, 15) and item:getId() == 9826 then
local teleport = 0...
i have modified, and now it works:
local function removeBoss()
local spectators = Game.getSpectators(Position(33273, 32408, 15), false, false, 18, 18, 18, 18)
for j = 1, #spectators do
local spectator = spectators[j]
if spectator:isMonster() then...
in fact, I went to test it right now and the result was:
with the same player, the monster disappears and another is born.
but when I leave a monster with a character and go with another character, there are 2 monsters.
i really didn't understand this part:
Room's width and height [SQM] (18, 18, 18, 18)
does it means i have 18 SQM to north, 18 SQM to south, 18 SQM to west and 18 SQM to east ?????
when a new player try to step in it says:
this is script check if they have the storage and says how much time left to access a boss.
function onStepIn(cid, item, position, fromPosition)
if getPlayerStorageValue(cid, 8092) ~= 1 then
doPlayerSendCancel(cid, "You need to wait "...
i have this movements scripts that shows me how much time i have to access a boss again when StepIn.. but it shows me in seconds, i want to show me in hours and minutes together!!!
function onStepIn(cid, item, position, fromPosition)
if getPlayerStorageValue(cid, 8087) ~= 1 then...