• 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

    Lua Storages MaxMana MaxHp

    I'm using a little diffrent system, but if yours sets first vocation after death or logout properly, you can probably do it as it is done in mine. I added some lines to login.lua to set hp and mp at every login, like that: local voc = getPlayerVocation(cid) local lvl = getPlayerLevel(cid)...
  2. Syryniss

    [Talkaction] Ban offline players

    bump
  3. Syryniss

    Soul system

    Bump
  4. Syryniss

    [Talkaction] Ban offline players

    @up You'r welcome :) bump I really want that script as long as I can't set up time in ctrl + Y window.
  5. Syryniss

    Soul system

    Hi. I'm looking for script that will cause player to lose 1 soul point every interval. And interval is based on how much soul he has. For example, when player has 0-20 soul he loses 1 every 5 seconds and when he have 80-100 soul, he loses 1 every second.
  6. Syryniss

    [Talkaction] Ban offline players

    Hi. I made a /ban talkaction with help of few similar scripts which I found on forum. I have a question, is it possible to edit it, so I can ban offline people, because now it works only with online players. I'm using TFS 0.3.6. Here is script: local default_comment = "" local default_lenght =...
  7. Syryniss

    Solved Vocation hp/mp on lvl 1

    Ok, got it, thank you!
  8. Syryniss

    Solved Vocation hp/mp on lvl 1

    Can you tell me where exactly in database? I'm not using any account manager (only this in tibia client), becasue it's only testing server.
  9. Syryniss

    Solved Vocation hp/mp on lvl 1

    Hi. I have a small question, where can I set the base amount of health and mana that players recive at first login in TFS 0.3.6 and could it be done to each vocation individually?
  10. Syryniss

    Compiling Error building TFS R3337

    Okey, I think it's fixed. I reinstalled stain's dev-cpp.
  11. Syryniss

    Compiling Error building TFS R3337

    Sorry for reviving the topic, but I have the same problem and don't know what to do. I compiled it millions of times and today I saw this error.
  12. Syryniss

    Party protection and shared exp.

    bump
  13. Syryniss

    Spell position spell

    local combat1 = createCombatObject() setCombatParam(combat1, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat1, COMBAT_PARAM_DISTANCEEFFECT, 1) setCombatParam(combat1, COMBAT_PARAM_EFFECT, 255) function getDmg_Brush_4(cid, level, maglevel) return (3000)*-1,(3500)*-1 end...
  14. Syryniss

    Spell position spell

    Tell me more details. Is it targeted spell? Where should the effect be, on player who use it or on target?
  15. Syryniss

    Buffs doesn't work

    Yeah, I should think about it before. It returns level of my character. Outside "getWeaponDamage" variable is nothing, which I assume is normal. #UPDATE I checked what returns "att" variable and it was my sword skill (YAY!). So I swapped "skill" with "att" and it's working! Damage is going up...
  16. Syryniss

    new food

    Something like that? (this script goes to actions): local exhausted_seconds = 3 --exhaust for item in seconds local exhausted_storagevalue = 50002 --any free storage function onUse(cid, item, frompos, item2, topos) if(os.time() > getPlayerStorageValue(cid, exhausted_storagevalue)) then...
  17. Syryniss

    Spell position spell

    local combat1 = createCombatObject() setCombatParam(combat1, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatParam(combat1, COMBAT_PARAM_DISTANCEEFFECT, 1) setCombatParam(combat1, COMBAT_PARAM_EFFECT, 255) function getDmg_Brush_4(cid, level, maglevel) return (3000)*-1,(3500)*-1 end...
  18. Syryniss

    Buffs doesn't work

    [14/03/2014 22:29:55] [Error - Weapon Interface] [14/03/2014 22:29:55] In a callback: data/weapons/scripts/sword.lua:getWeaponDamage [14/03/2014 22:29:55] (Unknown script file) [14/03/2014 22:29:55] Description: [14/03/2014 22:29:55] data/weapons/scripts/sword.lua:8: attempt to index local...
  19. Syryniss

    Buffs doesn't work

    I tested it even more, by checking damage, adding sword skill to my character and then checking again. The damage remained the same, so it surely doesn't have anything in common with sword skill. With skill[SKILL_SWORD] or skill[2] it doesn't work, it returns an error in console. Thanks for your...
  20. Syryniss

    Buffs doesn't work

    Yep, it is the issue. Console returns always 49, no matter if I'm buffed or not. I changed sword to skill and my damage jumped from ~2000 to ~19000, so I don't know which value it is connected to. Anyway it still doesn't work, damage is the same with or without buff.
Back
Top