View Single Post
  #14  
Old 03-26-2012, 10:00 AM
Tricxta Tricxta is offline
The Muffin Man
Tricxta's Avatar
Join Date: Oct 2010
Location: Australia
Posts: 563
Tricxta is just really niceTricxta is just really nice
Converting gs1 to a gs2 like structure is relatively easy
if (playertouchsme) {
lay greenrupee;
hide;
}

function onPlayertouchsme(){
lay("greenrupee");
hide();
}

Strings require quotes instead of the yucky #s(some string) buisness, and every function requires brackets even if there are no arguments as you saw in the example given.
Reply With Quote