If you're so inclined, check out https://github.com/ivanlei/playball-relay
Mostly cosmetic changes but does a better job of showing you what you've thrown and making the built-in animations pop out more.
I haven't done much Java programming in forever and then some.
I am successfully building and modifying mafia.
Can someone suggest a good free interactive debugger that runs on Windows for use in debugging mafia and possibly any interesting setup instructions.
In an ash script I want to call a function previously defined in the script. However, I have the name of the function in a string. Is there a way - possibly using call - to do this? A rough pseudo code example of my intent:
void funcA() {
print("funcA");
}
void funcB() {...