• 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. Moj mistrz

    Solved Instead of death message.

    This thread deserves a bump :)
  2. Moj mistrz

    Lua How to block player heal monster? TFS 1.0

    Take a look at the code for mass healing, where you can't heal monsters, but players only. It's for 1.2 TFS, dunno if it works for 1.0. Try it. local combat = Combat() combat:setParameter(COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) combat:setParameter(COMBAT_PARAM_DISPEL, CONDITION_PARALYZE)...
  3. Moj mistrz

    Place monster

    Game.createMonster(monsterName, position[, extended = false[, force = false]]) example: Game.createMonster("Demon", Position(100, 100, 7), false, true)
  4. Moj mistrz

    Solved function onCastSpell(cid, var) - is it possible to get target?

    You didn't say the server version. #edit: I'm not much into TFS lower than 1.0(don't know much functions :P), but try this. local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)...
  5. Moj mistrz

    Monster Monsterpack, spellpack and creaturescriptspack for Tibia 10.7(TFS 1.1) based on Real Tibia

    I know about those errors, they are fixed in my pack, but I will not upload it yet. :P
  6. Moj mistrz

    Lua Help with adding percent chance function to the script.

    function onUse(cid, item, fromPosition, itemEx, toPosition) if(itemEx.itemid == 7385) and math.random(10) <= 3 then doTransformItem(itemEx.uid, 8209) doSendMagicEffect(toPosition, 28) else doRemoveItem(item.uid) end return true end Try this
  7. Moj mistrz

    Need Command Script

    /addskill name, level, 100
  8. Moj mistrz

    Lua Function Change Existing Monster Name In-Game

    Does it work for TFS[1.2]? If not (can't confirm myself, because I never compiled anything) then can someone update it?
  9. Moj mistrz

    Monsters can't walk in itemid tfs 1.2

    function onStepIn(creature, item, position, fromPosition) local player = creature:getPlayer() if not player then creature:teleportTo(fromPosition, true) end end Try this, it should push it back
  10. Moj mistrz

    Monsters can't walk in itemid tfs 1.2

    A movement script which will return false and push it back when a monster step on it?
  11. Moj mistrz

    Ping this IP please

    Legend: Wysłane - Sent Odebrane - Received Utracone - Lost Czas średni - Average
  12. Moj mistrz

    Monster Monsterpack, spellpack and creaturescriptspack for Tibia 10.7(TFS 1.1) based on Real Tibia

    Actually, the Gaz'haragoth works this way in global tibia, he summons minions on certain hp, that's why he spams the message. :D About the tags, yeah I know the issue, but I don't have time to fix it and when I do then I don't remember about it.
  13. Moj mistrz

    World of Therran BETA

  14. Moj mistrz

    [TFS 1.2] Refil three hours of stamina

    It's in minutes, so: player:setStamina(player:getStamina() + 180) Dunno if it will set player's stamina to higher number than 42:00, but this should work. :)
  15. Moj mistrz

    NEED PRISON BOSS !

    You can find them in my monsterpack, read my signature. No prison keys scripts, but hey, do it by yourself and not only take from the community, give some in return too. :)
  16. Moj mistrz

    [SWEDEN] Therran BETA 2 Custom Client - OPENING SOON!

    Nope, it's still developed.
  17. Moj mistrz

    Monster [UPDATED] Monster Looktypes 10.9

    862 looktype is Plagirath I guess, if not then 842.
  18. Moj mistrz

    Lua Condition is not randomizing outfits TFS[1.2]

    What if it all has to be outside the function? Is it possible? You don't need to do the script, simple yes would be enough.
  19. Moj mistrz

    Lua Condition is not randomizing outfits TFS[1.2]

    Yeah, but still, it's an action script so when I use X item the random outfit appears :D. Can it be reproduced into script onUse?
Back
Top