• 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. Ascuas Funkeln

    TFS 1.X+ Big bug on TFS master branch? - healing spells

    Change function onGetFormulaValues(player, level, magicLevel) local min = (level / 5) + (magicLevel * 3.2) + 20 local max = (level / 5) + (magicLevel * 5.4) + 40 return min, max end To function onGetFormulaValues(player, level, maglevel) local min = (level / 5) + (maglevel * 3.2)...
  2. Ascuas Funkeln

    How to solved ? RME Map Collision position [ Import ]

    I told you... Go to last z level and select lower levels
  3. Ascuas Funkeln

    Loot channel

    And i never understood why peopole using outdated stuff and then living in shit and complain "that nothing work, looking for something that does exist etc"
  4. Ascuas Funkeln

    How to solved ? RME Map Collision position [ Import ]

    In RME Files->Import->Import Map Or just open your main map and downloaded one in second tab Then, set working floor at "z:0" and Edit->Selection->Lower Floors, and select area to copy, then copy by CTRL+C and paste in main map(select here floor z:0 too) by CTRL+V, when you paste it by CTRL+V...
  5. Ascuas Funkeln

    getWeight issue.

    https://otland.net/threads/how-to-display-code-properly-in-your-post.168098/
  6. Ascuas Funkeln

    player health in website

    Paste pls Item.xml - lines of this item what give bonus If for this item is custom script in moveevents paste it. Engine version
  7. Ascuas Funkeln

    player health in website

    This is problem cuz player have more hitpoints compare to how is setup as max. fix player hitpoints in database
  8. Ascuas Funkeln

    onThink function question

    Make on healthchange script, then in script set summon and master check if true and for example add hp percent level before execute heal function then execute heal line. And register script in monster/summon.xm as event. Then you will avoid every addevent, onthink and other laggy stuff. Im on...
  9. Ascuas Funkeln

    onThink function question

    To help will be better to know what u wanna do. Example for using item you can do something like that. local function EventOnline(playerId, seconds) local Ticks = 1000 -- Function will execute every seconds (1000 = 1 second) local player = Player(playerId) if seconds > 0 and player and...
  10. Ascuas Funkeln

    C++ Damage output with Separator

    Hmm... Look like i go forward but im to retarded to fix it. animatedText->setText(stdext::to_string(value[i])); So, actually this dont covert int to string? This dont work: for(int i=0;i<2;++i) { if(value[i] == 0) continue...
  11. Ascuas Funkeln

    Condition rooted

    You can always use to slow player by 100% local speed = Condition(CONDITION_HASTE) speed:setParameter(CONDITION_PARAM_TICKS, 3000) speed:setFormula(-1, 0, -1, 0) :D Check creature.h how is stopEventWalk writed in you sources and post it here
  12. Ascuas Funkeln

    C++ Damage output with Separator

    Hello, I have problem in my goldfish knowledge in the field of C++, and its create big number separator on dmg dealing. message.primary.value = damage.primary.value; // int32, when change manually to any number visible output of damage is the same as manually entered, so this is...
  13. Ascuas Funkeln

    C++ Item Attributes not working as intended TFS 1.3

    What you use to "heal? U must know the potion or spell must trigger "COMBAT_HEALING" to make this bonus work..
  14. Ascuas Funkeln

    C++ Item Attributes not working as intended TFS 1.3

    What u mean dont work? Dont give bonuses or not visible on item look? Add <attribute key="showattributes" value="1" />
  15. Ascuas Funkeln

    Solved Rush Event Error- bestplayer.lua and 034-exhaustion.lua

    Thats nice to hear, mark post with solution as solved, to other people can easy find solution if got the same problem :)
  16. Ascuas Funkeln

    Lua Vocation.xml

    But onHealthChange also work on everything o.O
  17. Ascuas Funkeln

    TFS 1.X+ Market crash client

    Player name like "He Who Must Not Be Named" :D You add custom items? In object builder avoid to create market item name with capital letters.
  18. Ascuas Funkeln

    Lua Vocation.xml

    Just do it as onHealthChange script This will help you to make it. https://otland.net/threads/tfs-1-0-critical-hit-permanent.212908/
  19. Ascuas Funkeln

    Solved [Error - Globalevent Interface] cleanhouse !

    Lol :D 10h wait for test? For test change local requiredTime = 60 * 60 * 24 * 10 to local requiredTime = 10 You will get answer if script work in 10 sec. :)
  20. Ascuas Funkeln

    Solved Rush Event Error- bestplayer.lua and 034-exhaustion.lua

    change all os.time(t) to os.time()
Back
Top