• 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!

Search results

  1. Crevasse

    Solved Storage Issue (Max HP) [OTX3]

    Yeah I've seen those ones that SN4KY linked but I thought they were a bit too complicated for what I was going for (although they look cool), just some simple health boost attributes. Well I'll work on making one and I'll check back if I need help, I'll also wait to see if Xeraphus can discover...
  2. Crevasse

    Solved Storage Issue (Max HP) [OTX3]

    You're very correct, I could do that. I am just more familiar with doing the attribute key and movements (because it is simpler). Would I just need to create a creaturescript for the movement? Could I still make it so different armors do different bonuses though? Yeah I know I can only wear 1...
  3. Crevasse

    Solved Lifesteal Melee Weapon [TFS 1.2]

    @Itutorial This script looks sweet! Would I need to change anything at all to get it to work for OTX3?
  4. Crevasse

    Solved Storage Issue (Max HP) [OTX3]

    @Xeraphus I think you're on to something, it seems to be only saving the HP for the most recent one. @Makalo <item id="2476" article="a" name="knight armor"> <attribute key="weight" value="12000"/> <attribute key="armor" value="12"/> <attribute key="slotType"...
  5. Crevasse

    Solved Storage Issue (Max HP) [OTX3]

    <movevent event="Equip" itemid="2476" slot="armor" function="onEquipItem" /> <movevent event="DeEquip" itemid="2476" slot="armor" function="onDeEquipItem" /> <movevent event="Equip" itemid="2477" slot="legs" function="onEquipItem" /> <movevent event="DeEquip" itemid="2477" slot="legs"...
  6. Crevasse

    Solved Storage Issue (Max HP) [OTX3]

    K I will check that. Just curious, why would it save for 1 piece of equipment but not 2? xD Thanks for letting me know Xeraphus, I changed the title! I knew OTX3 was based off 1.2 but I didn't know how different it was :P
  7. Crevasse

    Solved Storage Issue (Max HP) [OTX3]

    ~*~*SOLVED*~*~ I encountered an interesting problem when changing a player's max HP with equipment. I set Knight armor and Knight legs to increase the wearer's max HP by 20% (each) by adding the maxhitpointspercent attribute and then changing movements.xml. This works just fine, the issue comes...
  8. Crevasse

    Solved Lifesteal Melee Weapon [TFS 1.2]

    Try this: local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_BLOCKARMOR, 1) setCombatParam(combat, COMBAT_PARAM_BLOCKSHIELD, 1) setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatFormula(combat, COMBAT_FORMULA_SKILL, 0, 0, 1.0, 0) function...
  9. Crevasse

    Vocations Regen

    If it's a problem like Wolffy described, you would need to a) find a new distribution that supports regen rates or b) edit the source and recompile. I recommend a).
  10. Crevasse

    Solved Berserk spell help

    Np bro. ehhh just curious why does ur script contain this? local config = { [0] = {combat_effect = 7}, [1] = {combat_effect = 7}, [2] = {combat_effect = 7}, [3] = {combat_effect = 7}, [4] = {combat_effect = 7}, [5] = {combat_effect = 10}, [6] = {combat_effect = 10}...
  11. Crevasse

    Lua Lua Script Error

    Version? Read the rules before you post.
  12. Crevasse

    Solved Berserk spell help

    ...version? Board rules man, remember them so we don't have to ask Dx
  13. Crevasse

    Solved Is there a function to increase max hp/mana

    Simply add this attribute to an item to increase the max hp or max mp of the wearer by X%: <attribute key="maxhitpointspercent" value="150"/> <attribute key="maxmanapointspercent" value="150"/> If you want to increase max mana/hp, your numerical value needs to be >100. If you want to decrease...
  14. Crevasse

    I NEED 8.60 Real Life Map??

    Seriously though. There are literally hundreds of existing threads that explain every question you've asked so far lol
  15. Crevasse

    I NEED 8.60 Real Life Map??

    Well the Pros...I mean it's free if you host it yourself on your PC and it will run fine to test things with you and like 5~10 other people. Cons, you can't have a lot of people online, and if it's on your own PC then it's not very secure. There are ways for people to access all your info, hack...
  16. Crevasse

    I NEED 8.60 Real Life Map??

    You need to download the newest version from OTLand. Completely new download. You can't update your existing one. Just search. https://otland.net/threads/remeres-map-editor-3-1.241096/ I doubt it. My computer sucks and it loads it just fine.
  17. Crevasse

    Heroes of the Storm

    I play all the time :) I'm at work don't remember my # but I'll add you.
  18. Crevasse

    item editor

    Hey sorry I'm at work, can't always respond fast. Anyways, open up items.xml with notepad++, then use control+f to find the weapon you want (example below, fire sword): <item id="2392" article="a" name="fire sword"> <attribute key="description" value="The blade is a magic flame."/>...
  19. Crevasse

    Paralyze Rune Ultra Buged?

    ....you need to post your script if you expect any help...
  20. Crevasse

    item editor

    YW. If you can't figure out how to change the desired attributes let us know.
Back
Top