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

    Solved Monster console error

    Yep, that's why I asked becasue I'm getting this error too on TFS 1.0. It's caused by <inside> tags. I know there is way to do this, but it won't work like that. Remove <inside> and </inside> and it will be fine.
  2. Syryniss

    Solved Monster console error

    What TFS version are you using? <?xml version="1.0" encoding="UTF-8"?> <monster name="Demon Rocket" nameDescription="a demon rocket" race="fire" experience="6000000" speed="310" manacost="0"> <health now="482000" max="482000"/> <look type="35" corpse="5995"/> <targetchange interval="5000"...
  3. Syryniss

    Making items

    If you want to add items with your custom look, then you need to edit .spr and .dat files first, using for example ObjectBuilder. There are many tutorials about it.
  4. Syryniss

    Npc;s

    Place them in map editor and customize by editing their scripts in npc folder.
  5. Syryniss

    Lua How Edit Spell

    Instead of setAttackFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 5, 5, 5, 12) You need to paste onGetFormulaValues and add callback as it is done in Ultimate Healing Rune script.
  6. Syryniss

    Solved Ghost Mode

    Damn. I will think about it later, going sleep now. Thanks both of You for helping me out, I wouldn't do this without You :D
  7. Syryniss

    Solved Ghost Mode

    @zbizu Seems easy, but could you give me an example? Outfit_t is a struct, so I tried client->sendCreatureOutfit(creature, {1,0,0,0,0,0,0,0}); or static Outfit_t outfit = {1,0,0,0,0,0,0,0}; client->sendCreatureOutfit(creature, outfit); but it seems like I can't initialize anything in player.h...
  8. Syryniss

    Solved Ghost Mode

    The water where I was recording is not using swimming.lua. Also the same thing happens on any other tile. And I already told you that position:sendMagicEffect(CONST_ME_SMOKE) is for the single animation at the end, which you can see on video. @zbizu As I expected, after the change I keep my...
  9. Syryniss

    Solved Ghost Mode

    Here you have video - sprites are not from original Tibia, but whatever. You can see, after I use ghost there is continious animation = this is what I want to remove. And when I turn it off there is CONST_ME_SMOKE which o_O o_O was asking for. Sorry for double post, but I wanted to make it...
  10. Syryniss

    Solved Ghost Mode

    This line adds single effect when I exit ghost mode. Doesn't matter at all. Edit Hold on guys. The rescue is coming (I mean video, to help you understand xD)
  11. Syryniss

    Solved Ghost Mode

    @ This is mine ghost.lua: function onSay(cid, words, param) local player = Player(cid) if player:getGroup():getId() < GROUP_BANNER then return false end local position = player:getPosition() local isGhost = not player:isInGhostMode()...
  12. Syryniss

    Windows Creating a 1.0 TFS server

    I belive they are all 1.1, but 1.1 is working with 10.41.
  13. Syryniss

    Questions about TFS 1.0 - vocations, restarter and few more

    Nice. Personally I don't see diffrence between getPlayerLevel and player:getLevel(). Actually I'm getting used to new system, it's seems... cleaner? lol I'm missing these attributes tho, so looking forward to your release ;) Topic Still looking for someone, who knows where can I disable healing...
  14. Syryniss

    Solved Ghost Mode

    Oh well, fck my english >.< Ok then, do you remember ghostModeInvisibleEffect = false from TFS 0.3.6 config? I want to disable this effect, but there is no such option in TFS 1.0 so i guess it must be somewhere in sources (I don't know where exactly - that's why I'm asking). It's...
  15. Syryniss

    Solved Ghost Mode

    Bump
  16. Syryniss

    Lua Problem with my script :(

    Try this: function onUse(cid, item, frompos, item2, topos) if item.uid == 10223 and item.itemid == 6227 then if getPlayerStorageValue(cid, 51511, 1) then doSummonCreature("Bat", {x = 1037, y = 979, z = 7}) doSummonCreature("Bat", {x = 1033, y = 980, z = 7})...
  17. Syryniss

    Tfs 1.0 account

    Try with this version of RME.
  18. Syryniss

    Putting my own graphic into tibia

    From what I know... not really. Of course there are some methods, but if someone really wants your graphics, he will get them sooner or later.
  19. Syryniss

    Putting my own graphic into tibia

    Nah, info in post is outdated, but when you look at github... Also there you have download links in description below.
Back
Top