. . . Posted September 10, 2016 Share Posted September 10, 2016 (edited) Hello, I need help ! I don't know how to use prefabpostinit... So... maybe can someone guide me how to make a character with tag "amazon" make spears do 25 extra damage? Like the spear and wathgrithr_spear I want my character to do like 25 extra damage with those weapons only. So, I can't give damagemult because that effects all attacks... So, can someone please guide me ? I would really appreciate it a lot ! Thank you so much for reading my problem! Have a wonderful day/night !!! Edited September 11, 2016 by SuperDavid Link to comment https://forums.kleientertainment.com/forums/topic/70074-solved-how-to-make-prefabpostinit-for-wathgrithr_spear-to-deal-more-damage-when-owner-has-certain-tag/ Share on other sites More sharing options...
DarkXero Posted September 11, 2016 Share Posted September 11, 2016 As a postinit: local function SpearOnEquip(inst, data) if data and data.owner and data.owner:HasTag("amazon") then inst.was_on_amazon = true inst.components.weapon.damage = inst.components.weapon.damage + 25 end end local function SpearOnUnequip(inst, data) if inst.was_on_amazon then inst.was_on_amazon = nil inst.components.weapon.damage = inst.components.weapon.damage - 25 end end local function AmazonSpearExperience(inst) if inst.components.equippable and inst.components.weapon then inst:ListenForEvent("equipped", SpearOnEquip) inst:ListenForEvent("unequipped", SpearOnUnequip) end end AddPrefabPostInit("spear", AmazonSpearExperience) AddPrefabPostInit("wathgrithr_spear", AmazonSpearExperience) Link to comment https://forums.kleientertainment.com/forums/topic/70074-solved-how-to-make-prefabpostinit-for-wathgrithr_spear-to-deal-more-damage-when-owner-has-certain-tag/#findComment-812449 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