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

    How change new Player Spawn Positions

    over 10 years late but here is a solution. for gesior 2012 class => accountmanagement.php replace the position at line 764 - 766 l Now you can Have the player start somewhere else than a temple. :)
  2. G

    AAC Gesior Not Add samples to DB:

    just INSERT the field "premium_ends_at" in the accounts table in the sql. this may cause the server/website to read/write in different fields. be aware.
  3. G

    OpenTibia Item Editor (10.98)

    thanks for uploading! however i'm still trying to figure out howto change the current item sprites. Please someone let me know :)
  4. G

    Change the MagicDamage?

    here is what I found in vocation. H float meleeDamageMultiplier = 1.0f; float distDamageMultiplier = 1.0f; float defenseMultiplier = 1.0f; float armorMultiplier = 1.0f; pretty sure i could add my magic modifier here. i just dont know where those floats are...
  5. G

    Change the MagicDamage?

    that no easy solution. everything worked fine with my older version. i can't see why they only left the melee multiplicator in there and not the magic one.. i bet its somewhere in the build still. any idea where to look ?
  6. G

    Change the MagicDamage?

    sample from 1.3 vocation.xml i can't see the magicDamage multiplier. ima have to set up a whole 1.3 server and see for myself i guess... <vocation id="1" clientid="3" name="Sorcerer" description="a sorcerer" gaincap="10" gainhp="5" gainmana="30" gainhpticks="6" gainhpamount="5"...
  7. G

    Change the MagicDamage?

    did not work for me.. I upgraded to 1.2 and its something i really needed. if someone have any clue on how to fix that that be great ! =D
  8. G

    Lua pvp tile dont work tfs 1.2

    for anyone looking to check position tile i got this for tfs 1.2 this code make sure your tale is basically normal( except for no pvp = TILESTATE_NOPVPZONE) info was in tile.h in the source code local pos = player:getPosition() if getTileHouseInfo(pos) or (...
  9. G

    Lua Item charges On use does not take charge!

    Thx delusion for the lead. i've been looking for this exact feature. I rebuild the line for tfs 1.2 functions only thing is that the item does not automaticaly decay to something else. so i made this. for anyone looking for that feature. if item:setAttribute(...
  10. G

    Disable update message Tibia 10.98

    Very curious on how you figured that hex edit solution ! worked like a charm! thanks you cucurbito!
  11. G

    Teleport summons TFS 1.2

    i made a quick fix for that matter :) no need to edit source. all you have to do is add that custom spell to your pet. in apprentice.xml ( your pet or w/e) <defense name="teleporttomaster" interval="5000" chance="200000" /> in spells.lua <instant name="teleporttomaster"...
  12. G

    Solved Avoid damage from own summons

    function Creature:onTargetCombat(target) if not self then return RETURNVALUE_NOERROR end local master = self:getMaster() local targetmaster =target:getMaster() if master and master == target then -- attacking master return...
  13. G

    Solved Avoid damage from own summons

    THIS IS THE SOLUTION FOR TFS 1.2 I CONFIRM. THANK YOU PAL !!
  14. G

    [OTClient][10.98] TFS 1.3 and OTC Latest Compiling l OTC with more titles and transparent panels.

    not working with tfs 1.2 :'( kinda opening but unplayable.
  15. G

    phpMyAdmin error #1142

    stuck with that problem lol nothing what you guys suggested workd. if someone hear of a fix let me know :)
  16. G

    Tutorial Linux OT Server

    BUMP! I Can't find Any tutorial for TFS 1.2 if you guys have any lead of how to set this server up on a linux dedicated server. that be awesome!
  17. G

    TFS 1.X+ tfs 1.3 not support dotted exp stages.

    THIS NEED TO BE ON TOP ANSWER!!!!!!!!!!!!!! i did exactly what you said and it worked perfectly! i've been looking for an answer for at least an hour ! :) <stage minlevel="1" maxlevel="4" multiplier="10" /> <stage minlevel="5" maxlevel="9" multiplier="12" /> <stage minlevel="10" maxlevel="14"...
  18. G

    OTClient don't save maps and settings

    how the hell can we fix this ? i have the same issue :(
  19. G

    ObjectBuilder [10.32]

    Looking for up to date Object editor. mine can't edit 1090 sprites.. Need this soo bad, Rep up on any help!! thanks!
  20. G

    Code generation failed

    i've been trying to compile otc lately and i am getting the same kind of errors.. it says i have to rebuild my librairies. if someone know about that error please let me know ! thanks!
Back
Top