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

    A way to disable or change the names of items in market.

    You can change in object builder
  2. C

    Tibia Extended Client Library

    I was messing with the dll (Tibia-Extended-Client-Library), and I found a problem with the mana bar when you hide it (CTRL + N) causing the client to crash. I found the problem in the code and it's in creaturepointer, so when you use it in an if, it causes the client to crash. As I have no...
  3. C

    Spell TFS 1.2 Invisibility, Ghost Spell, Hide.

    try local combat = Combat() combat:setParameter(COMBAT_PARAM_EFFECT, 63) combat:setParameter(COMBAT_PARAM_AGGRESSIVE, false) local condition = Condition(CONDITION_INVISIBLE) condition:setParameter(CONDITION_PARAM_TICKS, 5000) combat:setCondition(condition) function onCastSpell(creature...
  4. C

    Need help with talkaction !bless

    try function onSay(cid, words, param) if getPlayerBlessing(cid, 8) then doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "You have already been blessed") doSendMagicEffect(getPlayerPosition(cid), CONST_ME_MORTAREA) else if doPlayerRemoveMoney(cid, 50000) then...
  5. C

    bonus for mc

    change maxMC to 4
  6. C

    bonus for mc

    removed
  7. C

    LOYALTY SYSTEM

    does 'LOYALTY_STORAGE' variable exist?
  8. C

    attempt to call global getMana

    try function onUse(player, item, fromPosition, target, toPosition, isHotkey) if type(target) ~= "userdata" or not target:isPlayer() then player:sendCancelMessage("You can only use on players.") return false end player:sendTextMessage(MESSAGE_INFO_DESCR, "Nick: " ...
  9. C

    LOYALTY SYSTEM

    likely that loyalty is nill if thing:isPlayer() then local loyalty = LOYALTY_STORAGE[thing:getId()] if loyalty == nil then print(thing:getName() .. " has nil loyalty.") end for key = 1, #LOYALTY_TITLES do if loyalty >= LOYALTY_TITLES[key][1] then...
  10. C

    TFS 1.X+ Help new inventory slot TFS 1.3 and OTClient

    Ring2Slot < InventoryItem id: slot12 image-source: /images/game/slots/ring2 &position: {x=65535, y=12, z=0} $on: image-source: /images/game/slots/ring2-blessed WingSlot < InventoryItem id: slot13 image-source: /images/game/slots/wing &position: {x=65535, y=13, z=0} $on...
  11. C

    tp spell

    function onCastSpell(cid, var) local target = var.number if isPlayer(target) then doTeleportThing(target, {x=620, y=936, z=7}, false) return true end return false end add needtarget="1" on spell xml
  12. C

    tp spell

    Editted do not forget the target from xml of monster <attacks> <attack name="kickers" interval="1000" chance="100" range="7" radius="3" target="1"/> </attacks>
  13. C

    tp spell

    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_HITAREA) setCombatParam(combat, COMBAT_PARAM_USECHARGES, true) local area = createCombatArea(AREA_SQUARE1X1) setCombatArea(combat, area)...
Back
Top