• 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!

Search results

  1. Snavy

    RevScripts [1.3]Make this script deley to use 1s

    set storage to player. example: local setting = { [25377] = {count = 2}, [25172] = {count = 1} } local config = { usageStorage = 898321, nextUseDelay = 1 -- seconds } local tibiaCoin = Action() function tibiaCoin.onUse(player, item, fromPosition, target, toPosition, isHotkey)...
  2. Snavy

    [RME] [1.3] Trash/Item - block

    you could make use of onMoveItem https://github.com/opentibiabr/otservbr-global/blob/f5049e40c09ce051ea4e1109f2c5c70afefee84e/data/events/scripts/player.lua#L316 EDIT: Have you tried placing void tile under the preview items.
  3. Snavy

    Action [1.3] BattleCity 🔥

    You were supposed to add them in RME manually xD they won't be created on server start. yes, they should be repaired after the game.
  4. Snavy

    Action [1.3] BattleCity 🔥

    try replacing :isMovementBlocked and :setMovementBlocked with :isMoveLocked and :setMoveLocked
  5. Snavy

    Action [1.3] BattleCity 🔥

    They won't re-appear after the game is finished? That's odd 🤔 I suppose they renamed it? https://github.com/opentibiabr/otservbr-global/blob/develop/src/lua/scripts/luascript.cpp#L2525-L2526
  6. Snavy

    Action [1.3] BattleCity 🔥

    It will probably work. Doesn't use eventcallback.
  7. Snavy

    RevScripts Boss Raid everyday at X time

    definitely possible print(os.date('%a')) Reference: https://www.lua.org/pil/22.1.html
  8. Snavy

    RevScripts Boss Raid everyday at X time

    local config = { bossPosition = Position(0, 0, 0), bossName = 'Zugurosh', spawnTime = '00:00:00' } local spawnBoss = GlobalEvent('spawnBoss') function spawnBoss.onTime(interval) Game.createMonster(config.bossName, config.bossPosition, false, true)...
  9. Snavy

    That special spark inside all of us.

    more of this xD
  10. Snavy

    MoveEvent [1.3] Zombski 🧠🧟‍♂️

    🤔 Change or (not creature:getName():lower() == zombie.config.zombieName) to or (creature:getName():lower() ~= zombie.config.zombieName:lower())
  11. Snavy

    RevScripts Make it use one time each 60min, but for EACH Player not ALL.

    try this local config = { actionId = 800, delay = 60 * 10, -- 1 hour delayPersistent = false, bosses = { { name = "Grim Reaper", pos = Position(1138, 1101, 4) } }, storageId = 58312 } local movIn = MoveEvent() function movIn.onStepIn(creature, item, position...
  12. Snavy

    Lua AddTime Storage

    🤔 try this -- remove -1 from storage after 20seconds: addEvent(function(cid, storage) local mob = Creature(cid) if not mob then return end mob:setStorageValue(Storage.Quest.FeasterOfSouls.Bosses.TheDreadMaiden.Souls, storage - 1) end, 10 * 1000, maiden:getId(), oldStorage + 1)
  13. Snavy

    Lua AddTime Storage

    -- remove -1 from storage after 20seconds: addEvent(function(mob, storage) mob:setStorageValue(Storage.Quest.FeasterOfSouls.Bosses.TheDreadMaiden.Souls, storage - 1) end, 10 * 1000, maiden, oldStorage + 1)
  14. Snavy

    Lua AddTime Storage

    Aren't we all :< maiden:setStorageValue(Storage.Quest.FeasterOfSouls.Bosses.TheDreadMaiden.Souls, oldStorage + 1) -- remove -1 from storage after 20seconds: addEvent(function(mob, storage) mob:setStorageValue(Storage.Quest.FeasterOfSouls.Bosses.TheDreadMaiden.Souls, storage - 1) end, 20 *...
  15. Snavy

    RevScripts [OTBR] Reset all info/item/skill, leave only character name.

    Something like this DELETE FROM `player_storage`; DELETE FROM `player_items`; DELETE FROM `player_depotitems`; DELETE FROM `player_deaths`; DELETE FROM `player_spells`; DELETE FROM `house_lists`; DELETE FROM `tile_store`; UPDATE `houses` SET `owner` = 0, `paid` = 0, `warnings` = 0...
  16. Snavy

    MoveEvent [1.3] Zombski 🧠🧟‍♂️

    OTBR doesn't have eventcallback as far as I know
  17. Snavy

    Vip Teleport

    is onGainExperience enabled? https://github.com/opentibiabr/otservbr-global/blob/develop/data/events/events.xml#L29 are there any errors? is this supposed to give +20% or is the formula correct 🤔 exp = exp * 20 - 20 % exp if you need it to be +20% then use exp = exp * 1.2 EDIT @Xikini He...
  18. Snavy

    MoveEvent [1.3] Zombski 🧠🧟‍♂️

    Preview https://streamable.com/omlu69 https://streamable.com/t94vmq map setup code Create new folder in data/scripts, call it zombie Inside data/scripts/zombie/ add the following files: zombski.lua zombie.lua
  19. Snavy

    Vip Teleport

    What's wrong with that one
  20. Snavy

    Vip Teleport

    replace player:sendMagicEffect(CONST_ME_POFF) with player:getPosition():sendMagicEffect(CONST_ME_POFF)
Back
Top