• 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. aqubjukr

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

    function onStepIn(cid, item, position, fromPosition) if getPlayerStorageValue(cid, 8092) > 1 then doPlayerSendCancel(cid, "You need to wait " ..getPlayerStorageValue(cid, 8089) - os.time() .." seconds to access this boss again.") doTeleportThing(cid, fromPosition) else...
  2. aqubjukr

    TFS 1.X+ Monster attack damages other monsters

    I was wondering if can put in a spell, that a specific creature take damage with the players Ps: The boss doesn't need to "go attack the monster", I just want the magic given to the player to also remove the monster's health local combat = Combat() combat:setParameter(COMBAT_PARAM_TYPE...
  3. aqubjukr

    Compiling OTServerBR compile request

    Use this: sudo apt-get install git cmake build-essential libboost-date-time-dev libboost-system-dev libboost-filesystem-dev libboost-iostreams-dev libcrypto++-dev liblua5.2-dev libluajit-5.1-dev libmysqlclient-dev libpugixml-dev cd /home/server (your server directory) mkdir build && cd build...
  4. aqubjukr

    [BOSSES] Lever script

    No problem, if you want add other bosses, change this the function: local function removeBoss() local specs, spec = Game.getSpectators(Position(33919, 31646, 8), false, false, 18, 18, 18, 18) for j = 1, #specs do spec = specs[j] if spec:getName():lower() == 'urmahlullu the...
  5. aqubjukr

    [BOSSES] Lever script

    Try this: local config = { cooldown = 30, -- in seconds - (Make it 'seconds * minutes * hours' - its will be '60 * 60 * 20' for 20 hours) (player cooldown) cooldown_storage = 808855, duration = 1, -- time till reset, in minutes (lever cooldown) level_req = 8, -- minimum level to...
  6. aqubjukr

    [BOSSES] Lever script

    Any script? Do you not have any base scripts, which you are currently trying, with their respective "error"?
  7. aqubjukr

    Linux LINUX UBUNTU 16.04 [Error - LuaScriptInterface::loadFile] ¿Not finding the route files ?

    I think it's a error on ubuntu 16.04, bcos in my (ubuntu 18.04) it returns to server/data normaly when use ../../ Maybe if you try to update ubuntu apt it might work apt-get update && apt-get upgrade If that doesn't work, I have no idea how to solve
  8. aqubjukr

    Linux LINUX UBUNTU 16.04 [Error - LuaScriptInterface::loadFile] ¿Not finding the route files ?

    Wouldn't it be easier to just try to copy these scripts to the "default folder" /data/ spells/scripts ? Or have you tried to do this in that way?
  9. aqubjukr

    Linux LINUX UBUNTU 16.04 [Error - LuaScriptInterface::loadFile] ¿Not finding the route files ?

    Try only: <instant name="Evolve" words="*o1" enabled="0" script="../lib/ps/events/spells/Evolve.lua"/>
  10. aqubjukr

    C++ [TFS 1.3] Add a storagevalue in weapons.cpp

    You're the best man. I'll try study more about sources, bcos i didn't know the simple difference of uint32_t to int32_t. Btw, thx for helping.
  11. aqubjukr

    C++ [TFS 1.3] Add a storagevalue in weapons.cpp

    Another one.
  12. aqubjukr

    C++ [TFS 1.3] Add a storagevalue in weapons.cpp

    Error when compiling :/
  13. aqubjukr

    C++ [TFS 1.3] Add a storagevalue in weapons.cpp

    It's only for a the last man standing game. The player who enter in teleport got storage (555845,1) to do some functions and when he die, logout or leave from event he loose the storage. I just want to don't remove the ammo if player get this storage. After, i'll try do changes in potion waste too.
  14. aqubjukr

    C++ [TFS 1.3] Add a storagevalue in weapons.cpp

    I have this doubt when to getstoragevalue, because I managed to do it only using the target "training monk" and I want to use it for events too. Would it be correct to revive the topic?
  15. aqubjukr

    C++ [TFS 1.3] Add a storagevalue in weapons.cpp

    I'm trying to set a storagevalue to cancel the removecount for as long as the player has storage, but i didn't got. Interval to be modifie: case WEAPONACTION_REMOVECOUNT: if (g_config.getBoolean(ConfigManager::REMOVE_WEAPON_AMMO)) { Weapon::decrementItemCount(item)...
  16. aqubjukr

    [HELP] Action and Movements for Boss Room. TFS 1.X +

    Use this as base: local config = { newPos = Position(33363, 31342, 9), backPos = Position(33293, 31288, 9), storage = 91710 } function onStepIn(creature, item, position, fromPosition) local player = creature:getPlayer() if not player then return end if...
  17. aqubjukr

    [USA] [12.40] [Global Map] [Custom] Striker OT

    A tip: use a program like install creator to help download the client and create functional shortcuts, to avoid this problems.
  18. aqubjukr

    [HELP] Wear a new weapon

    </movevent> Closing movement tag? And put the same level in weapons and movements. Try to see if got some message in your character and if you char is druid.
  19. aqubjukr

    [HELP] Wear a new weapon

    Equip and DeEquip tags in movements.xml? Bcos you only put the equip tag in post.
  20. aqubjukr

    Existem BR's?

    Somos 2
Back
Top