Maris Posted January 26, 2015 Share Posted January 26, 2015 (edited) I can't understand what am I doing wrong. AddComponentPostInit("instrument",function(inst) local old_play = inst.Play function inst:Play(musician,...) old_play(self,musician,...) endend)This code makes Pan Flute unbreakable. And character say "I can't do that" while using it. However this code do nothing. Edited January 26, 2015 by Maris Link to comment https://forums.kleientertainment.com/forums/topic/49760-how-properly-change-function-from-component/ Share on other sites More sharing options...
Maris Posted January 26, 2015 Author Share Posted January 26, 2015 Also I tried this:AddComponentPostInit("instrument",function(inst) local old_play = inst.Play inst.Play = function(self,musician,...) old_play(self,musician,...) endend)and this:local instr = require "components/instrument"local old_play = instr.Playfunction instr:Play(musician,...) old_play(self,musician)endBut it doesn't work properly. Link to comment https://forums.kleientertainment.com/forums/topic/49760-how-properly-change-function-from-component/#findComment-606122 Share on other sites More sharing options...
Kzisor Posted January 26, 2015 Share Posted January 26, 2015 (edited) You have to return the inst for the change to take effect I thought? Edited January 26, 2015 by Kzisor Link to comment https://forums.kleientertainment.com/forums/topic/49760-how-properly-change-function-from-component/#findComment-606125 Share on other sites More sharing options...
Maris Posted January 26, 2015 Author Share Posted January 26, 2015 Oh man! Thanks!!! How could I be so stupid....... Link to comment https://forums.kleientertainment.com/forums/topic/49760-how-properly-change-function-from-component/#findComment-606130 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