yes, but what is the items editor that works on this server?for change sprites, u will use object builder and item editor.
yes, but what is the items editor that works on this server?for change sprites, u will use object builder and item editor.
who has fixed the compilation with the auras shader and wingsI want to report these bugs in the client first you can't use the wings or equip them the same with auras and shaders
View attachment 73704
note: if you see the image in the wings part you cannot select the option
View attachment 73705
where did you open this one? can you explain?View attachment 74095
When you click on the wing, it doesn't define it too, I've already scoured the client, a source, I still haven't found the why!
Post automatically merged:
I don't know if it's the client that's bugging or if parts of the code are missing, I evaluated the official otcv8 repository and added several parts that I was talking about, but the wing still doesn't work! Does anyone have a light? neither wing nor aura! Including the functions that get the clientID already adjusted too!
upView attachment 74095
When you click on the wing, it doesn't define it too, I've already scoured the client, a source, I still haven't found the why!
Post automatically merged:
I don't know if it's the client that's bugging or if parts of the code are missing, I evaluated the official otcv8 repository and added several parts that I was talking about, but the wing still doesn't work! Does anyone have a light? neither wing nor aura! Including the functions that get the clientID already adjusted too!
First you need to apply changes on server side for these systems:
modules/game_features/features.lua
in OTCv8:-- you can add custom features here, list of them is in the modules\gamelib\const.lua
g_game.enableFeature(GameWingsAndAura)
Thank you, it worked perfectly my friend!First you need to apply changes on server side for these systems:
Then you must edit file![]()
Comparing 7f5b4fbc08711124dec86b0fcd7bfd78dd1165c4..239f555b0f71cfe0e17b6e5012518b25696d2f76 · OTCv8/forgottenserver
A free and open-source MMORPG server emulator written in C++, compatible with OTClientV8 - Comparing 7f5b4fbc08711124dec86b0fcd7bfd78dd1165c4..239f555b0f71cfe0e17b6e5012518b25696d2f76 · OTCv8/forgo...github.com
modules/game_features/features.lua
in OTCv8:
and under:![]()
otclientv8/features.lua at 4c1fc24f26f6e3fdc9b46916672340dacfcd4b55 · OTCv8/otclientv8
Clean, ready to use version of OTClientV8 - Alternative, highly optimized Tibia client - otclientv8/features.lua at 4c1fc24f26f6e3fdc9b46916672340dacfcd4b55 · OTCv8/otclientv8github.com
add:Lua:-- you can add custom features here, list of them is in the modules\gamelib\const.lua
Lua:g_game.enableFeature(GameWingsAndAura)
Could you give me a demo or send me your items.srv so I can see how you do it?I had the same issue with changing items.srv causing the RME to not load, and you gotta remove some of the flags from the items in order to make it work. I basically removed all flags from custom items added except their weights and it worked for me.
unfortunately it didn't work for meThis is an example of a custom ring I use:
Lua:TypeID = 5099 Name = "a ruby ring" Flags = {Take} Attributes = {Weight=850}
And that made it work for me.