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

    TFS 1.2 Bless icon

    This is what I did: Condition.cpp case CONDITION_PARALYZE: return new ConditionSpeed(id, type, ticks, buff, subId, param); case CONDITION_DAZZLED: return new ConditionDazzled(id, type, ticks, buff, subId); uint32_t ConditionSpeed::getIcons() const {...
  2. R

    TFS 1.2 Bless icon

    Alright. I Will take a look if its easy to convert 0.4 code to 1.2
  3. R

    TFS 1.2 Bless icon

    I havent yet added any source code since im on tfs 1.2, i would have to change the code as well then. 1024 is dazzled condition
  4. R

    TFS 1.2 Bless icon

    I tried this too: local condition = Condition(CONDITION_DAZZLED) condition:setParameter(CONDITION_PARAM_SUBID, 1) condition:setParameter(CONDITION_PARAM_TICKS, 33000) player:addCondition(condition) print(condition:getIcons()) Nothing happens, it works if I change...
  5. R

    condition bug?

    I'm using otx 2, (tfs 0.4) client 8.6 and I'm having the following issue: When I do in login.lua: local condd = createConditionObject(CONDITION_HASTE) setConditionParam(condd, CONDITION_PARAM_TICKS, -1) or any other condition, I'm getting condition poison. Anyone knows why it...
  6. R

    Lua converting spell to tfs 1.x

    This is too advanced for me, how would it work in a more simple way? local acombat1 = Combat() local acombat2 = Combat() local acombat3 = Combat() local acombat4 = Combat() local acombat5 = Combat() local acombat6 = Combat() local acombat7 = Combat() local combat1 = Combat()...
  7. R

    Lua converting spell to tfs 1.x

    I'm using tfs 1.2, version 8.6. Can someone tell me how I can convert this script to tfs 1.x? local acombat1 = createCombatObject() local acombat2 = createCombatObject() local acombat3 = createCombatObject() local acombat4 = createCombatObject() local acombat5 = createCombatObject() local...
  8. R

    Lua new spell message per level

    That's the original script but it doesn't answer my questions.
  9. R

    Lua new spell message per level

    I just tried this to completely rule out counting level as magic level but now nothing happens: local config = { repeatAfterDeath = true, detailedInfo = true, storage = 10000, channelClass = MESSAGE_EVENT_ORANGE } function onAdvance(player, skill, oldlevel, newlevel) if...
  10. R

    Lua new spell message per level

    This is what I have: <instant group="attack" name="Hell's Core" words="exevo gran mas flam" lvl="60" mana="1200" prem="1" exhaustion="2000" selftarget="1" needlearn="0" script="attack/hells_core.lua"> It is thinking my magic level is my level, when I advanced in magic levels. First it...
  11. R

    Lua new spell message per level

    Thanks though it doesn't show me that I learned 'exevo gran mas vis' at level 60, when I advanced from level 59 to level 61.
  12. R

    Lua new spell message per level

    Im using tfs 1.2 10.98 and I want to create a message that once you level up you can get to see a new spell. (example: You reached level 38 and can now cast 'exevo vis hur'.) But I'm getting an orange message with no text and no errors in console, can someone take a look please? local s = {...
  13. R

    Otx 7.7 or othire 7.7 informations Please

    otx 7.7 newer, more functions, othire 7.7 more like real tibia
  14. R

    [8.6] OTServ 0.6.4 STABLE

    Yes
  15. R

    Lua [TFS 1.2 - 8.60] Problem with swimming.lua & a teleport

    You need a special swim itemid to swim in the water.
  16. R

    Lua [TFS 1.2 - 8.60] Problem with swimming.lua & a teleport

    The second problem is when creating a teleport so that only players with level 250 can enter it does not work either. function onStepIn(cid, item, position, fromPosition) local player = Player(cid) local creature = Creature(cid) --if(item.actionid<2000 and item.actionid>1000) then...
  17. R

    Linux multiclient 8.6

    I saw this tutorial: Mc Multiclient (hex) 7.4 at 10.x But the numbers are different hex editing a Linux client. So does anyone know how I can enable multiclient in Tibia 8.6 in Linux? (I can't run Tibia 8.6 + ipchanger in wine.)
  18. R

    Linux I can't login on server with global ip

    @Znote I've done this: sh ./autogen.sh && ./configure --enable-debug --enable-server-diag --enable-mysql --enable-root-permission && make -j 2 But there is nothing different Should I try login with 127.0.0.1? When connecting with 127.0.0.1 I can't logout I can only click exit.
  19. R

    Linux I can't login on server with global ip

    bindOnlyGlobalAddress = true doesn't work either. I will try to compile with the flag. @Znote I've done this: # Config for 64Bits #DEBUG_FLAGS="-Ofast -march=core2 -fomit-frame-pointer -DNDEBUG" OPTIONAL_FLAGS="-D__DEBUG_NET_DETAIL__" Is that correct?
  20. R

    Linux I can't login on server with global ip

    @Znote Unfortunately it didn't work # interfaces(5) file used by ifup(8) and ifdown(8) auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 83.13.104.38 netmask 255.255.255.0 gateway 192.168.2.251 dns-nameservers 210.70.63.75 210.70.63.76...
Back
Top