- Joined
- Aug 27, 2011
- Messages
- 212
- Solutions
- 9
- Reaction score
- 69
- GitHub
- ArturKnopik
- Twitch
- krecikondexin
no comment, this work 

08:14 You see a rainbow shield (Def:30) (protection energy +8%, earth +8%, fire +8%).
08:15 You see a golden helmet (Arm:12, protection energy +5%, earth +5%, fire +5%).
08:16 You see a magic armor arm (Arm: 17, physical protection + 6%, energy + 6%, earth + 6%, fire + 6%, drown + 6%, ice + 6%, holy + 6%, death + 6%).
<item id="8905" article="a" name="rainbow shield">
<attribute key="description" value="Strange elemental magic flows over this shield." />
<attribute key="weight" value="6900" />
<attribute key="defense" value="30" />
<attribute key="weaponType" value="shield" />
<attribute key="absorbpercentelements" value="8" />
</item>
<item id="2471" article="a" name="golden helmet">
<attribute key="description" value="It's the famous Helmet of the Stars." />
<attribute key="weight" value="3200" />
<attribute key="armor" value="12" />
<attribute key="slotType" value="head" />
<attribute key="absorbpercentmagic" value="5" />
</item>
<item id="2472" article="a" name="magic plate armor">
<attribute key="weight" value="8500" />
<attribute key="armor" value="17" />
<attribute key="slotType" value="body" />
<attribute key="absorbpercentall" value="6" />
</item>
SPECIALSKILL_HITPOINTSLEECHCHANCE
SPECIALSKILL_HITPOINTSLEECHAMOUNT
SPECIALSKILL_MANAPOINTSLEECHCHANCE
SPECIALSKILL_MANAPOINTSLEECHAMOUNT
SPECIALSKILL_LIFELEECHCHANCE
SPECIALSKILL_LIFELEECHAMOUNT
SPECIALSKILL_MANALEECHCHANCE
SPECIALSKILL_MANALEECHAMOUNT
Item abilities is probably the best idea I've ever seen in this website, thanks for it!
Just an update - in order to compile with the current TFS, you will need to replace:
forCode:SPECIALSKILL_HITPOINTSLEECHCHANCE SPECIALSKILL_HITPOINTSLEECHAMOUNT SPECIALSKILL_MANAPOINTSLEECHCHANCE SPECIALSKILL_MANAPOINTSLEECHAMOUNT
Code:SPECIALSKILL_LIFELEECHCHANCE SPECIALSKILL_LIFELEECHAMOUNT SPECIALSKILL_MANALEECHCHANCE SPECIALSKILL_MANALEECHAMOUNT
in combat.cpp, item.cpp and tools.cpp
thats source related, if you go to tfs github you will see some folders and one of then is called src in reference to sources, there you can find what you looking for.Iam sorry for being the biggest noobie on here, but where can I find combat.cpp, item.cpp and tools.cpp?
Using TFS 1.3 and Tibia client 10.98.
Appreciate any reply.. well not any, please be gentle XD
You can do both, I retained the ability to register them in items.xml, and you can use the item:setAbility function in Lua to set it dynamically to create a unique item, the exact same way it works for attributes (example: armor, defense, attack, etc).since weapons have special abilities attribute with this modification, is possible to manullay ive this attributes to any item in the item.xml? like giving a magic sword the ability of healt regeneration? o just apply with lua functions to access this attributess?
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
if target.itemid == 2494 then
local position = player:getPosition()
target:setAbility(ITEM_ABILITY_REGENERATION, 1)
target:setAbility(ITEM_ABILITY_HEALTHGAIN, 500)
target:setAbility(ITEM_ABILITY_HEALTHTICKS, 1)
player:sendCancelMessage("Health upgrade! 500 hp per second")
position:sendMagicEffect(CONST_ME_MAGIC_RED)
return true
end
return true
end
function onUse(player, item, fromPosition, target, toPosition, isHotkey)
if target.itemid == 2494 then
local position = player:getPosition()
target:setAbility(ITEM_ABILITY_REGENERATION, 1)
target:setAbility(ITEM_ABILITY_HEALTHGAIN, 500)
target:setAbility(ITEM_ABILITY_HEALTHTICKS, 1000)
player:sendCancelMessage("Health upgrade! 500 hp per second")
position:sendMagicEffect(CONST_ME_MAGIC_RED)
end
return true
end
wow this works awesome !!!!!!!!Health ticks use milliseconds, not seconds.
Register 2494 in movements.xml as well.LUA:function onUse(player, item, fromPosition, target, toPosition, isHotkey) if target.itemid == 2494 then local position = player:getPosition() target:setAbility(ITEM_ABILITY_REGENERATION, 1) target:setAbility(ITEM_ABILITY_HEALTHGAIN, 500) target:setAbility(ITEM_ABILITY_HEALTHTICKS, 1000) player:sendCancelMessage("Health upgrade! 500 hp per second") position:sendMagicEffect(CONST_ME_MAGIC_RED) end return true end
ITEM_ABILITY_REGENERATION
(as a flag), so following what indicates HereITEM_ABILITY_
ABILITY_
ITEM_PARSE_
local newAbility = 1 << 46
print(string.format('0x%x', 0x3fffffffffff | newAbility))
ok going to try thank you a lot! just a question thatYou need to update the bitmask located in item.h inside isAbility.
Lua: demo (http://www.lua.org/cgi-bin/demo)
This will print the new bitmask, replace it and recompile.LUA:local newAbility = 1 << 46 print(string.format('0x%x', 0x3fffffffffff | newAbility))
<< 46
its the number of the last ability registered in enums.h? if i decide to add more abilities? or its always the same to get the new bitmask?You have to update the bitmask for each new ability you add, if you add a new one in enums.h you'll use 1 << 47, then you'll have to add that to the bitmask and re-update. The bitmask is the result of all bit shifts, meaning that what I just posted there was done 45 times before, each for 1 << N where x is the number of bits to shift left. These act like flags in binary, you're pushing the binary value of 1 N places to the left, which is a unique flag. Each new ability you add you must update the bitmask to include the Nth flag, otherwise you'll be comparing that flag to the bitmask which doesn't have it set.ok going to try thank you a lot! just a question that<< 46
its the number of the last ability registered in enums.h? if i decide to add more abilities? or its always the same to get the new bitmask?
is there something else to do with new abilities added? because i added 3 new abilities actually working but they just disappear when i log out if the item is equiped or inside the backpack, if i leave there in the floor they keep the ability(pz and no pz floor).
thanks in advice
ABILITY_END = ABILITY_BONUSHEALING
in items.cpp, for the last new ability added above fixed the issue.ABILITY_DAMAGEMITIGATION = 47,
ABILITY_BONUSREGEN = 48,
ABILITY_MAGICDAMAGE = 49,
ABILITY_SUPPORTHEALING = 50,
ABILITY_ATTACKSPEED = 51,
ABILITY_FLEXSKILL = 52,
ABILITY_BONUSHEALING = 53,
ABILITY_NEWABILITY = 54,
ABILITY_START = ABILITY_HEALTHGAIN,
ABILITY_END = ABILITY_REGENERATION
ABILITY_END = ABILITY_NEWABILITY