• 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

    [Spell] Player immunity

    Refresh, I'm still looking for it. I only need an idea how to add absorbtion to spell, don't need any advanced scripts with config and many options etc.
  2. Syryniss

    Windows 7 vs Windows 8 vs ??? (specs in post)

    I was using windows 7 for years and I needed to install windows 8 for Windows Phone SDK. I did it 5-6 months ago, but I left my windows 7 on another partition, becasue I wasn't sure that newest 8 will satisfy me. After 1 month of using windows 8 for SDK and 7 for rest of things, I decided to...
  3. Syryniss

    Solved Distance Effects limit.

    Solved, for anyone who wonders how, I edited const.h in sources.
  4. Syryniss

    [Spell] Player immunity

    Hi. I'm looking for help with some spell. I want it to make player immune for any damage for few seconds or give him for example 30% absorbtion, like this which is on items. Thanks in advance!
  5. Syryniss

    Soul system

    Okey, thanks for all. Could you tell me one more thing, is it worth to do this 4 more globalevents for that change? I mean, is 5 globalevents gonna stress the server far more that only 1, or it would be nearly impossible to notice?
  6. Syryniss

    Soul system

    Thanks for your time. I changed it a bit, becasue it wasn't working at all. function onThink(interval, lastExecution, thinkInterval) local players = {} for _, i in pairs(getPlayersOnline()) do table.insert(players, i) end --------------------------- for k, v in pairs(players) do if...
  7. Syryniss

    Solved Distance Effects limit.

    Hi. I wonder how to increase the 41 limit of distance effects in TFS 0.3.6pl1. Thanks in advance for your help!
  8. Syryniss

    Solved Problems with compiling TFS 0.3.6

    Solved. I deleted MinGW, Code-blocks and CMake and it's finally working.
  9. Syryniss

    Lua Storages MaxMana MaxHp

    Well, sorry but as I said, i'm bad at loops and this is requied to write script like that. Also without testing by myself it would be very long to make that. You can either use another transfrom system with revert, which I'm using (link down below), or write it by yourself. You can also hope for...
  10. Syryniss

    Soul system

    Could you give me a link? I found this, but it's for TFS 1.0 and it's spell. I'm looking for creaturescript, to take soul from players without any spell.
  11. Syryniss

    Soul system

    bump
  12. Syryniss

    Lua Storages MaxMana MaxHp

    Well, i guess it's not 300 vocations, it's 300 transforms. For example, he may have 30 vocations, that you can create at lvl 1 and each has 10 transforms. Every transform has own damage and/or spells, so he need 300 vocations. It's dragon ball server :p
  13. Syryniss

    Lua Storages MaxMana MaxHp

    I don't think it's possible, never did something similar to that. But this gaves the same result as mine method.
  14. Syryniss

    Solved Problems with compiling TFS 0.3.6

    bump On Stian's Repack Dev-Cpp 0.2, 64bit normal compile is working, but rebuild doesn't as said above. I tried Stian's Repack Dev-Cpp v2 and even with normal compile, im reciving this error: ld: BFD (GNU Binutils) 2.18.50.20080109 internal error, aborting at ../../binutils-2.18.50/bfd/reloc.c...
  15. Syryniss

    Lua Storages MaxMana MaxHp

    I don't know how your server even started with this, becasue in my opinion it lacks few "ends". I don't know how this could make 2% hp/mp decrease every relog, but here is corrected version: local lvl2 = getPlayerStorageValue(cid, 95657) if getPlayerVocation(cid) == 1 or getPlayerVocation(cid)...
  16. Syryniss

    Lua Storages MaxMana MaxHp

    I'm always learning by my mistakes, but now I can't test it. Can't you just set storage value in reborn function that tells at what lvl reborn was done and then check for that value in login.lua? Like this: function doReborn(cid, level, looktype, vocation)...
  17. Syryniss

    Solved Problems with compiling TFS 0.3.6

    Hi. Yesterday, I was trying to add something to tfs and then compile it, but it stopped working. I was compiling many times before and everything was ok. Now, when I just compile it (ctrl + F9) it doesn't work, crashes every time I try to open it. And when I try to rebuild all (F11) it gives me...
  18. Syryniss

    Lua Storages MaxMana MaxHp

    Well, i don't know how this reborn is scripted, im not using any. Maybe you should do something like that: reborn gives a storage value and in login.lua ask for that value, if it's true then set hp/mp to another values. if voc == 1 then if getPlayerStorageValue(cid, 10000) == 1 then...
  19. Syryniss

    Lua Storages MaxMana MaxHp

    The player will always login with first transform, so when you have for example 10 proffesions and every proffesion has 10 transforms, you need to add it only for 10 basic transforms. Only for "TapionR" (262), I hope you got what I mean.
  20. Syryniss

    Soul system

    bump
Back
Top