View Single Post
  #37  
Old 05-18-2007, 02:14 PM
DustyPorViva DustyPorViva is offline
Will work for food. Maybe
DustyPorViva's Avatar
Join Date: Sep 2003
Location: Maryland, USA
Posts: 9,589
DustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond reputeDustyPorViva has a reputation beyond repute
Send a message via AIM to DustyPorViva Send a message via MSN to DustyPorViva
I think, to be honest, GS1 may be 'simpler' to understand in concept, but in the end, you'll only be hurting yourself. One way or another, you're going to be learning the basics of scripting and format, so you should just start with GS2. For simple scripting, it's not all that different from GS1, so I wouldn't see the big advantage of starting over GS2.
GS1:
PHP Code:
if (playerenters) {
  
playerx=32;
  
playery=32;

GS2:
PHP Code:
function onPlayerenters() {
  
player.x=32;
  
player.y=32;

Reply With Quote