home *** CD-ROM | disk | FTP | other *** search
- var time = int(illusoft.Game.Instance.currentTile.GetTimeLeft() / 1000);
- var s = time % 60;
- txtTime.text = int(time / 60) + ":" + (s >= 10 ? s : "0" + s);
- var Rtime = SharedObject.getLocal("Agame.starisland").data[illusoft.Game.Instance.currentTile.id];
- if(time > Rtime)
- {
- SharedObject.getLocal("Agame.starisland").data[illusoft.Game.Instance.currentTile.id] = time;
- SharedObject.getLocal("Agame.starisland").data[illusoft.Game.Instance.currentTile.id].flush();
- this.newr._visible = true;
- }
- else
- {
- this.newr._visible = false;
- }
-