Thank you very much :)
Printable View
Thank you very much :)
8894 - rusty armor
8895 - rusty armor
8896 - rusty armor
Which one is what? 8896 is the rare one, correct?
8894 - rusty armor common
8895 - rusty armor semi
8896 - rusty armor rare @Bollo @Jo3Bingham
Changelog: Tibia 10.36
Added
- Containers
20347 - cake backpack- Decoration
20350 - cake tapestry
Changed
- Others
12232 - rotten witches cauldron seed -> 12232 - rotten witches' cauldron seed- Runes
3165 - paralyze rune -> 3165 - paralyse rune
Removed
- N/A
very nice thread was a very big help to manual looting script :D
hey,
any chance in changing names with regEx in Notepad++?
i'm struggling with it now and can't change from "name item" to "Name Item"
execute this script in any Lua compiler:
generated output:Code:local items = [=[
761 - flash arrow
762 - shiver arrow
763 - flaming arrow
774 - earth arrow
3446 - bolt
3447 - arrow
3448 - poison arrow
3449 - burst arrow
3450 - power bolt
6528 - infernal bolt
7363 - piercing bolt
7364 - sniper arrow
7365 - onyx arrow
14251 - tarsal arrow
14252 - vortex bolt
15793 - crystalline arrow
16141 - prismatic bolt
16142 - drill bolt
16143 - envenomed arrow
]=]
for id, name in items:gmatch("(%d+) %- (.-)\n") do
print(id .. " - " ..
(
name:gsub("[^ ]+",
function(word)
return word:sub(1, 1):upper() .. word:sub(2)
end
)
)
)
end
just replace the 'items' string for the item list you want.Code:761 - Flash Arrow
762 - Shiver Arrow
763 - Flaming Arrow
774 - Earth Arrow
3446 - Bolt
3447 - Arrow
3448 - Poison Arrow
3449 - Burst Arrow
3450 - Power Bolt
6528 - Infernal Bolt
7363 - Piercing Bolt
7364 - Sniper Arrow
7365 - Onyx Arrow
14251 - Tarsal Arrow
14252 - Vortex Bolt
15793 - Crystalline Arrow
16141 - Prismatic Bolt
16142 - Drill Bolt
16143 - Envenomed Arrow
I don't know if xeno supports Lua print function. Anyway, you can also execute this script in www.ideone.com
@Jo3Bingham Ty for this list and hope you add the new items related to update 10.50 Gl