463 posts
Location
Star Wars
Posted 17 January 2016 - 08:40 PM
Is there a way to get the code of a function, without sub it out the program (I mean string.sub(…))?
2679 posts
Location
You will never find me, muhahahahahaha
Posted 17 January 2016 - 08:58 PM
string.dump(thefunction), but it will error when you dump a java function.
1610 posts
Posted 17 January 2016 - 09:45 PM
string.dump(thefunction), but it will error when you dump a java function.
That gets the
bytecode for a function. Hardly useful at all, and definitely not what OP was looking for.
7083 posts
Location
Tasmania (AU)
Posted 17 January 2016 - 09:55 PM
Is there a way to get the code of a function, without sub it out the program (I mean string.sub(…))?
You can use other string library functions, but long story short, you need access to the original source to do anything with the original source.
463 posts
Location
Star Wars
Posted 18 January 2016 - 06:16 PM
Thanks anyway