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

    Solved OTClient unable to load tibia.dat

    same here....Does someone know how to fix?
  2. Iblop

    Lua How to a lua code execute another lua code?

    I have a simple lua code (a talkaction) and I need to make this code execute another code Sample1.lua: ... local test = Hello if math.random(1,100) <= 33 then --here the function that execute Sample2.lua end ... Sample2.lua doCreatureSay(cid, test, 2) How can I make it?
  3. Iblop

    Change target.

    it must be called "attackchange" function onAttack(cid, target) if #getCreatureSummons(target) >= 1 then doMonsterSetTarget(cid, getCreatureSummons(target)[1]) else doMonsterSetTarget(cid, target) end now to call the script when the monster attack you will need do this...
  4. Iblop

    Lua Stun spell problem

    there is other way to do that, in c++ source... try looking the poison effect but there is a easyer way, just by .lua... Try something like this: local paral= createConditionObject(CONDITION_PARALYZE) setConditionParam(paral, CONDITION_PARAM_TICKS, 5000) setConditionFormula(paral, -0.6, -56...
  5. Iblop

    Compiling White skull only if deal damage (0.3.6pl1)

    I had the same problem as u have, but I can`t remember how did I fix... Try looking in the creaturescript (I think that the problem wasn`t in the source)
  6. Iblop

    Need Attribute System for TFS 0.3.6 Tibia 8.54

    great idea!! I`m too busy for now but I will try making this code as simple as possible next week to my server So if I really make and it get cool, I share the code
  7. Iblop

    [Request] Show big effect

    up (it`s allowed don`t it?)
  8. Iblop

    [Request] Show big effect

    Hi everybody! I was wondering if there is any way for someone help me with this little problem I found in my server: -When I send a big magic effect, I do need to send it in player.x + 10 to center the effect in the player. -But the position (player.x+10) is out of the screen, so that player...
  9. Iblop

    Naruto story sprites

    can u share the .dat too?
  10. Iblop

    MoveEvent Map marks

    is there any way to clean those marks from the map? maybe any new function on c++...
  11. Iblop

    Removing Map mark

    How to create a function to remove a marp mark? Can it be made in c++?
  12. Iblop

    Spell Swap Positions

    hey, that's very cool! thx for sharing =]
  13. Iblop

    Spell [MOD/LUA] Ninpou: Kawarimi no Jutsu (Body Substitute Skill)

    Some one updated the script to use in 8.54?
  14. Iblop

    Tibia UnBinder

    That`s very cool! But.. If the version is changed (I get in a binded .exe the version 1.0) what do I have to do? I tryed all the possible ones (that have a dll), but I had no lucky..
Back
Top