home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Encyklopedia Omnia
/
Planeta.iso
/
data
/
0_home.dir
/
00014_Script_uscitaDaHome
< prev
next >
Wrap
Text File
|
2000-10-16
|
630b
|
20 lines
on mouseUp
global gPlayerName, gPlayerList, gPlayersObj, gNSClicked, gCanClick
if (gCanClick) and (gNSClicked = the currentSpriteNum) then
if (gPlayerName = "") then
if (max(gPlayerList) <> 1) or (min(gPlayerList) = -1) then
-- richiama WebClub per l'iscrizione
go to movie "0_wclub"
else
-- esce senza registrare
go to movie "0_credit"
end if
else
-- registra direttamente il giocatore ed esce
updatePlayer(gPlayersObj, gPlayerName, gPlayerList)
savePlayersList(gPlayersObj)
go to movie "0_credit"
end if
end if
end