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

    custom condition param values?

    any hints? i dont think player will use exana pox in middle of PvP btw..
  2. Paulix

    custom condition param values?

    problem solved after a couple hours working on it... now it dispells on exana pox, and you can make your own formula for damage ^^ add this funcion to your function.lua or global.lua function doPoison(var, rounds, delay, dmg, iter) if var == 0 or dmg >= 0 then return 0 end iter = iter...
  3. Paulix

    custom condition param values?

    using your function, if player dies does it return error on console?
  4. Paulix

    RME'S Map editor missing alot of monster!

    File > Import > Monsters/NPC's select the monster.xml you want to import and then look for him at Creature > Others tab
  5. Paulix

    custom condition param values?

    the same way this work with damage, without having to set it first doTargetCombatHealth(cid, target, type, min, max, effect) i have this function doTargetCombatCondition(cid, target, condition, effect) but i have no idea how it work... looks like condition must be set before btw
  6. Paulix

    custom condition param values?

    thats not what i really wanted, i want to make some sort of formula to calculate the damage. can i declare a functions that calls a condition? this way i could call the function inside the script and add values by param to it here is a example i had on my old 8.1 server function doPoison(cid...
  7. Paulix

    custom condition param values?

    here is an example of a soul fire rune local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, true) setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_FIREDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_HITBYFIRE) setCombatParam(combat...
  8. Paulix

    isInArray bug?

    worked like a charm, thats exactly what i was looking for thank you very much ^^
  9. Paulix

    isInArray bug?

    i dont want to access the table, i want to check if it exist based on what item player is using, cause if they arent using any of the orbs, i need to set a default element for this table
  10. Paulix

    isInArray bug?

    local orbs = { [11429] = {id = 11429, element = 2}, [2096] = {id = 2096, element = 4}, [2681] = {id = 2681, element = 8}, [2683] = {id = 2683, element = 512}, [2682] = {id = 2682, element = 1024}, [12418] = {id = 12418, element = 2048} } local orb =...
  11. Paulix

    addDamageCondition with formula damaga

    Hello, im actually working on a weapon for my server, but i'm facing the following problem... local combat = createCombatObject() local condition = createConditionObject(CONDITION_POISON) addDamageCondition(condition, ticks, times, damage) setCombatCondition(combat, condition) as the...
Back
Top