Added a syntax to get all the function names of current functions.
Syntax:
Code (skript (Unknown Language)):
[(the|all)] [of] [the] [loaded] functions
Example:
Code (skript (Unknown Language)):
function broadcastExample(message: string):
broadcast {_message}
on script load:
set {_functions::*} to all functions where [string input contains "broadcastExample"]
evaluate "%{_functions::1}%(""Hello world!"")"
I'm making a neat Skript API for my next public script i'm going to release and I needed to be able to load external Functions
Enjoy