• 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

    Buffs doesn't work

    It's on the beginning of this thread. Weapon formula in weapons/scripts: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) function getWeaponDamage(cid, skill, att, attackStrength) local lvl = getPlayerLevel(cid) local sword =...
  2. Syryniss

    Party protection and shared exp.

    Long time not updating, becasue I was busy. Still need help with finding a way to increase party shared expierience, BUMP :)
  3. Syryniss

    Buffs doesn't work

    Firstly, sorry for very long break, but I couldn't test or even think about it, I had many things to do, no time for it and so on... From what I understood, I can't put "default" in weapons.xml, because then the damage will not be based on my things (skill, weapon attack). The other thing is, I...
  4. Syryniss

    Buffs doesn't work

    The buff worked earlier and works now with any weapon that uses "default" weapon formula declared in weapons.xml. The problem is I wanted it to work with my formula, because I wanted the damage to be based on one skill and weapon attack. Also in my forumla the minium damage is only a little less...
  5. Syryniss

    Buffs doesn't work

    Thanks for reply and trying to help. Unfortunatlely it still doesn't work. I tested like that: changed my formula ratios to the same "min" and "max" for better accuracy. When I added 1 sword skill to character, damage went up. But when I casted buff, it says correctly on skill bar, that my sword...
  6. Syryniss

    Some noob questions about effects/graphics

    I mean attack speed is working, but in normal client it also looks good. The hits are showing very fast, but they all can be seen. In OTClient not all hits are shown, they are cumulating into few bigger hits. For example if im hitting for around ~100 in OTClient it will be shown as 600 damage...
  7. Syryniss

    Some noob questions about effects/graphics

    Thanks, it worked. Anyone can help me with attack speed in client?
  8. Syryniss

    Buffs doesn't work

    Weapons use this skills for sure, if I lvl up them normal way by "training" the damage is going up, only buff doesnt work (number is going up with buff, but no effect on damage).
  9. Syryniss

    Buffs doesn't work

    bump
  10. Syryniss

    Buffs doesn't work

    bump
  11. Syryniss

    Some noob questions about effects/graphics

    Hi. First of all, I wanted to say I'm completly new to OTClient. I downloaded sources today, compiled it and... what can I say - I'm amazed. So, that's about my first impressions, but now I have some question, which may sound strange - sorry for that, I'm noob :) It seems like all effects in...
  12. Syryniss

    Party protection and shared exp.

    bump
  13. Syryniss

    (SOLVED) doCreatureSetNoMove Help

    I'm using similar thing in my spell, so here it is, use it like an example: local function onCastSpell1(cid, target) doCreatureSetNoMove(target, true) end local function onCastSpell2(cid, target) doCreatureSetNoMove(target, false) end function onCastSpell(cid, var) local target =...
  14. Syryniss

    Buffs doesn't work

    I changed it to local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, 123) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) local condition = createConditionObject(CONDITION_ATTRIBUTES) setConditionParam(condition, CONDITION_PARAM_TICKS, 100000)...
  15. Syryniss

    Buffs doesn't work

    Hi. I'm using custom damage formula for weapons, so hits are based on weapon damage and specific skill. The problem is, that when I cast some spell, that gives bonus attributes like 20 melee percent or for example 20 club and 20 attack speed (which is axe), the damage doesn't change (attack...
  16. Syryniss

    Help with Challenge Spell (exeta res)

    Well, in monster file you can set <targetchange interval="10000" chance="80"/> then the mob will change target every 10 seconds with 80% chance, so after using exeta res it should stay on this target for 10 seconds.
  17. Syryniss

    onKill storage value question!

    In spell script I think it should be (getPlayerStorageValue(cid, 6868) < 0) Check it, and tell what's exactly not working now.
  18. Syryniss

    Party protection and shared exp.

    !Bring Up My Post! Still need help with shared exp, I mean I want to increase gained exp by party members like 60% for 2 members, 40% for 3 etc. (bonus +10% exp when in party, something like that).
  19. Syryniss

    Summon system

    Thank you very much, I did pretty much the same, dunno what was wrong, but now its finally working. Thanks to all of you !
  20. Syryniss

    Summon system

    Thanks and where should I put event.lua because console says unknown event name It's located in creaturescripts/scripts now...
Back
Top