
03-26-2012, 10:00 AM
|
|
The Muffin Man
|
 |
Join Date: Oct 2010
Location: Australia
Posts: 563
|
|
|
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. |
|
|
|