View Single Post
  #116  
Old 08-07-2011, 11:34 PM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
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.
__________________
Quote:

Last edited by fowlplay4; 08-07-2011 at 11:53 PM..
Reply With Quote