DeadlyFox Posted May 3, 2025 Share Posted May 3, 2025 I have tried for a few weeks now to create a custom boomerang like item, but I dont seem to get it. If anyone could help me understand how to make one that would be greatly appreciate it! Link to comment https://forums.kleientertainment.com/forums/topic/165582-i-need-help-creating-a-boomerang-like-item/ Share on other sites More sharing options...
X K Posted May 9, 2025 Share Posted May 9, 2025 What is the specific problem? Link to comment https://forums.kleientertainment.com/forums/topic/165582-i-need-help-creating-a-boomerang-like-item/#findComment-1815514 Share on other sites More sharing options...
DeadlyFox Posted May 9, 2025 Author Share Posted May 9, 2025 I tried to make the boomerang like item, but it was invisible when thrown in the air (for it I used this as reference as I thought I could fix the problem that it had but in the end i couldnt )but after that I decided to make it from zero but I dont know for what files I need to look for. If you could help me either find the problem with the invisible boomerang from my first attempt or tell me where and what to look for to make it for myself, i would be really grateful! Link to comment https://forums.kleientertainment.com/forums/topic/165582-i-need-help-creating-a-boomerang-like-item/#findComment-1815569 Share on other sites More sharing options...
X K Posted May 13, 2025 Share Posted May 13, 2025 So I read that post, and in fact, the author divided the shield animation into 3 animation files, but only asseted 2 animation files in the code, missing the animation file for spin loop. I think that's why it is not visible in the air. Link to comment https://forums.kleientertainment.com/forums/topic/165582-i-need-help-creating-a-boomerang-like-item/#findComment-1815863 Share on other sites More sharing options...
DeadlyFox Posted May 13, 2025 Author Share Posted May 13, 2025 Oh okay thanks! but could you also tell me where I can find the missing animation?(In the game files i mean) If its okay. Link to comment https://forums.kleientertainment.com/forums/topic/165582-i-need-help-creating-a-boomerang-like-item/#findComment-1815896 Share on other sites More sharing options...
X K Posted May 14, 2025 Share Posted May 14, 2025 here in vibraniumshield.lua local assets={ Asset("ANIM", "anim/vibraniumshield.zip"), Asset("ANIM", "anim/swap_vibraniumshield.zip"), Asset("ATLAS", "images/inventoryimages/vibraniumshield.xml"), Asset("IMAGE", "images/inventoryimages/vibraniumshield.tex"), } it miss the spin_loop.zip, should be local assets={ Asset("ANIM", "anim/vibraniumshield.zip"), Asset("ANIM", "anim/swap_vibraniumshield.zip"), Asset("ANIM", "anim/spin_loop.zip"), Asset("ATLAS", "images/inventoryimages/vibraniumshield.xml"), Asset("IMAGE", "images/inventoryimages/vibraniumshield.tex"), } 1 Link to comment https://forums.kleientertainment.com/forums/topic/165582-i-need-help-creating-a-boomerang-like-item/#findComment-1815952 Share on other sites More sharing options...
DeadlyFox Posted May 14, 2025 Author Share Posted May 14, 2025 It works now! Thanks a lot! Link to comment https://forums.kleientertainment.com/forums/topic/165582-i-need-help-creating-a-boomerang-like-item/#findComment-1815977 Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now