coreyd86 Posted July 27, 2018 Share 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) Link to comment Share on other sites More sharing options...
payl0ad Posted July 27, 2018 Share Posted July 27, 2018 Read this. Link to comment Share on other sites More sharing options...
Reneer Posted July 27, 2018 Share Posted July 27, 2018 It sounds like you're looking for something like CallFunctionNoWait. Link to comment Share on other sites More sharing options...
coreyd86 Posted July 27, 2018 Author Share 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? Link to comment Share on other sites More sharing options...
Recommended Posts