• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Search results

  1. Hyagosrs

    TFS 1.X+ [ACTION][HELP] boss remover

    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 =...
  2. Hyagosrs

    [GESIOR] Image does not appear

    1) i only see martel.tff in /images folder 2) i already have this lib should i change martel.ttf folder?
  3. Hyagosrs

    [GESIOR] Image does not appear

    no does not work. :( i really doen't think the problem is with headline.php.. i believe is about permissions or serverpath, i don't know
  4. Hyagosrs

    [GESIOR] Image does not appear

    no :( it didn't work, maybe a problem with libs?
  5. Hyagosrs

    [GESIOR] Image does not appear

    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;
  6. Hyagosrs

    [REMERES] [HELP] turn down monster position

    lol, it's so simple.. Thanks !!
  7. Hyagosrs

    [GESIOR] Image does not appear

    up
  8. Hyagosrs

    [REMERES] [HELP] turn down monster position

    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
  9. Hyagosrs

    [ACTION][HELP] How to set a specific storage and time

    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...
  10. Hyagosrs

    [BOSSES] Lever script

    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...
  11. Hyagosrs

    [BOSSES] Lever script

    as it is a single boss on the entire map, wouldn't it have a script without needing a position? to remove it, since it is unique.
  12. Hyagosrs

    [BOSSES] Lever script

    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.
  13. Hyagosrs

    TFS 1.X+ [MOVEMENTS] New Players can't access

    good it worked, is it possible to have a limit for this?
  14. Hyagosrs

    [BOSSES] Lever script

    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 ?????
  15. Hyagosrs

    TFS 1.X+ [MOVEMENTS] New Players can't access

    it didn't work, players access everytime.
  16. Hyagosrs

    TFS 1.X+ [MOVEMENTS] New Players can't access

    it seems it works perfectly, do you know how to change second to minutos in this message?
  17. Hyagosrs

    TFS 1.X+ [MOVEMENTS] New Players can't access

    it didn't work, now i can access everytime, with or not the storage :( 1597266586
  18. Hyagosrs

    TFS 1.X+ [MOVEMENTS] New Players can't access

    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 "...
  19. Hyagosrs

    TFS 1.X+ [MOVEMENTS] How to change Seconds to Hours and Minutes together!

    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...
Back
Top