home *** CD-ROM | disk | FTP | other *** search
/ Encyklopedia Omnia / Planeta.iso / data / 0_wclub.dir / 00011_Script_uscita < prev    next >
Text File  |  2000-11-16  |  336b  |  14 lines

  1. on mouseUp
  2.   global gPlayersObj, gPlayerList
  3.   
  4.   set playerName = trim(the text of field "nome")
  5.   
  6.   if not(existsPlayer(gPlayersObj, playerName)) then
  7.     addNewPlayer(gPlayersObj, playerName)
  8.   end if
  9.   
  10.   updatePlayer(gPlayersObj, playerName, gPlayerList)
  11.   savePlayersList(gPlayersObj)
  12.   
  13.   go to movie "0_credit"
  14. end