• 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. Carlitos Flow

    War System TFS 0.3.6

    Bump!
  2. Carlitos Flow

    War System TFS 0.3.6

    Guild war bro
  3. Carlitos Flow

    Help with spell formula

    Here you are. local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HOLYDAMAGE) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_HOLYAREA) local area = createCombatArea(AREA_CIRCLE3X3) setCombatArea(combat, area) function getCombatFormulas(cid, level...
  4. Carlitos Flow

    War System TFS 0.3.6

    Good day guys! I have a question. -Is there any source where I can get it? Thank you, and kind regards!
  5. Carlitos Flow

    Rune heal mana and hp not working tfs 0.3

    Oh right a little mistake when i was copying your formula sorry haha, no problem ;p Post edited!
  6. Carlitos Flow

    Rune heal mana and hp not working tfs 0.3

    Its your max of mana than the player will heal. (Your formula) Btw its working?
  7. Carlitos Flow

    Rune heal mana and hp not working tfs 0.3

    scripts/rune.lua [Also u will need add the rune on Spells.xml for choose the vocations than can use) local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_TARGETCASTERORTOPMOST, 1) setCombatParam(combat...
  8. Carlitos Flow

    Lua Blue Arrow when drop item rare

    Solved! Thank you guys! specially Xeraphus ^^
  9. Carlitos Flow

    Lua Blue Arrow when drop item rare

    Guys a little video of the bug. The first respawn drops somes wolf paws, i need kill other respawn on the same tile from who drops (x1 respawn) to got the effect. :/ Script: function countdown(pos, timer, effect) if timer < 0 then return true end doSendMagicEffect(pos...
  10. Carlitos Flow

    Lua Blue Arrow when drop item rare

    Yes, another monster need dies on the same tile for the script be executed. Bump
  11. Carlitos Flow

    Lua Blue Arrow when drop item rare

    If i kill a wolf than drops a wolf paw, don't show any effect, but i kill other wolf on the same position of the wolf than drops a Wolf paw, it will show the effect, its a bug. :/
  12. Carlitos Flow

    Lua Blue Arrow when drop item rare

    The same problem of the corpse, need other inside of who drops the item
  13. Carlitos Flow

    Lua Blue Arrow when drop item rare

    Little bug. Look bro, the item 5897 is the wolf paw, when a wolf drops 1 wolf paw, don't show the effect, only if have other corpse inside of which drops the wolf paw. (you need kill other wolf on the same position of the corpse who drop the item to show the effect)
  14. Carlitos Flow

    Lua Blue Arrow when drop item rare

    Doesn't works :/ also: Guys this is my script now, it print 1,2,3,5,6... it doesn't prints the number 4 function countdown(pos, timer, effect) if timer < 0 then return true end doSendMagicEffect(pos, effect) addEvent(countdown, 1000, pos, timer - 1, effect) end local...
  15. Carlitos Flow

    Lua Blue Arrow when drop item rare

    I don't understand, so how i can fix?
  16. Carlitos Flow

    3 scripts

    [1] i don't understand what do you need ;/ [2] Try movements/scripts/xxx.lua (also you need add at entrance of that area an storage than only who have storage (35010) == 1 can access) if you need help i can do for you. local storage = 35010 local config: { areaFrompos = {x=xxx, y=xxx, z=xxx...
  17. Carlitos Flow

    Demon oak

    Scripts? Npc? I would help you if u let me see please..
  18. Carlitos Flow

    Lua Blue Arrow when drop item rare

    Only print (1) when i kill 1x1 and sometimes when i kill like 8 monsters with a UE Print 1, 2 and 3. It don't print the number 4. function countdown(pos, timer, effect) if timer < 0 then return true end doSendMagicEffect(pos, effect) addEvent(countdown, 1000, pos, timer...
  19. Carlitos Flow

    Premium Over

    Try: function onLogin(cid) if getPlayerPremiumDays(cid) > 0 then setPlayerStorageValue(cid, 20500, 1) elseif getPlayerPremiumDays(cid) == 0 and getPlayerStorageValue(cid, 20500) == 1 and getPlayerSex(cid) == 1 then doCreatureChangeOutfit(cid, {lookType = 128, lookHead = 78...
  20. Carlitos Flow

    Premium Over

    Test. (Idk if is the correct colors and correct outfit) I just did it for help you. in your premiumscroll.lua add: setPlayerStorageValue(cid, 12890, 1) Creaturecripts/scripts/endpremium.lua [edited] function onLogin(cid) local freeOutfitMan = {lookType = 136, lookHead = 78, lookLegs = 49...
Back
Top