home *** CD-ROM | disk | FTP | other *** search
/ Encyklopedia Omnia / Planeta.iso / data / 0_home.dir / 00014_Script_uscitaDaHome < prev    next >
Text File  |  2000-10-16  |  630b  |  20 lines

  1. on mouseUp
  2.   global gPlayerName, gPlayerList, gPlayersObj, gNSClicked, gCanClick
  3.   
  4.   if (gCanClick) and (gNSClicked = the currentSpriteNum) then
  5.     if (gPlayerName = "") then
  6.       if (max(gPlayerList) <> 1) or (min(gPlayerList) = -1) then
  7.         -- richiama WebClub per l'iscrizione
  8.         go to movie "0_wclub"
  9.       else
  10.         -- esce senza registrare
  11.         go to movie "0_credit"
  12.       end if
  13.     else
  14.       -- registra direttamente il giocatore ed esce
  15.       updatePlayer(gPlayersObj, gPlayerName, gPlayerList)
  16.       savePlayersList(gPlayersObj)
  17.       go to movie "0_credit"
  18.     end if
  19.   end if
  20. end