Someone could take on the daunting (and redundant) task of developing a GS2 Interpreter so players can test their scripts without actually needing level or NC access on a server.
Even if it only had the basic functionality to do "weapon" scripts like this:
PHP Code:
function onActionServerSide() {
if (params[0] == "test") {
echo("Hello world!");
}
}
//#CLIENTSIDE
function onCreated() {
triggerserver("gui", this.name, "test");
}
or..
PHP Code:
//#CLIENTSIDE
function onCreated() {
temp.math = 1+1+2;
echo("The result is: " @ temp.math);
}
It would lower the barrier of entry, and allow people to get their feet a little wet.