coreyd86 Posted July 27, 2018 Posted July 27, 2018 So here's what I'm trying to do. I have function a, function b, function c I have a string named dofunction I want to do this dofunction = "a"CallFunction(dofunction)(runs function a) dofunction = "b"CallFunction(dofunction)(runs function b) is this possible? It would be easier to do this then if dofunction == aa()elseif == b ...etc.. dofunction = "a" CallFunction(dofunction)
Reneer Posted July 27, 2018 Posted July 27, 2018 It sounds like you're looking for something like CallFunctionNoWait.
coreyd86 Posted July 27, 2018 Author Posted July 27, 2018 I've tried CallFunctionNoWait with self. and by itself. I'll look more into state... Is there any good working examples?
Recommended Posts