home *** CD-ROM | disk | FTP | other *** search
- if(_root.weight > _root.worldrecord)
- {
- _root.worldrecord = _root.weight;
- whichrecord = "WORLD";
- if(_root.worldchampion != _root.playername)
- {
- _root.new_world = 1;
- _root.n_world = _root.n_world + 1;
- _root.worldchampion = _root.playername;
- }
- else
- {
- _root.new_world = 2;
- }
- _root.noofchampionships = _root.n_world + _root.n_national + _root.n_regional + _root.n_hometown + _root.n_backyard;
- gotoAndStop(2);
- }
- else if(_root.weight > _root.nationalrecord)
- {
- _root.nationalrecord = _root.weight;
- whichrecord = "NATIONAL";
- if(_root.nationalchampion != _root.playername)
- {
- _root.new_national = 1;
- _root.n_national = _root.n_national + 1;
- _root.nationalchampion = _root.playername;
- }
- else
- {
- _root.new_national = 2;
- }
- _root.noofchampionships = _root.n_world + _root.n_national + _root.n_regional + _root.n_hometown + _root.n_backyard;
- gotoAndStop(2);
- }
- else if(_root.weight > _root.regionalrecord)
- {
- _root.regionalrecord = _root.weight;
- whichrecord = "REGIONAL";
- if(_root.regionalchampion != _root.playername)
- {
- _root.new_regional = 1;
- _root.n_regional = _root.n_regional + 1;
- _root.regionalchampion = _root.playername;
- }
- else
- {
- _root.new_regional = 2;
- }
- _root.noofchampionships = _root.n_world + _root.n_national + _root.n_regional + _root.n_hometown + _root.n_backyard;
- gotoAndStop(2);
- }
- else if(_root.weight > _root.hometownrecord)
- {
- _root.hometownrecord = _root.weight;
- whichrecord = "HOMETOWN";
- if(_root.hometownchampion != _root.playername)
- {
- _root.new_hometown = 1;
- _root.n_hometown = _root.n_hometown + 1;
- _root.hometownchampion = _root.playername;
- }
- else
- {
- _root.new_hometown = 2;
- }
- _root.noofchampionships = _root.n_world + _root.n_national + _root.n_regional + _root.n_hometown + _root.n_backyard;
- gotoAndStop(2);
- }
- else if(_root.weight > _root.backyardrecord)
- {
- _root.backyardrecord = _root.weight;
- whichrecord = "BACKYARD";
- if(_root.backyardchampion != _root.playername)
- {
- _root.new_backyard = 1;
- _root.n_backyard = _root.n_backyard + 1;
- _root.backyardchampion = _root.playername;
- }
- else
- {
- _root.new_backyard = 2;
- }
- _root.noofchampionships = _root.n_world + _root.n_national + _root.n_regional + _root.n_hometown + _root.n_backyard;
- gotoAndStop(2);
- }
- else
- {
- _root.new_world = 0;
- _root.new_national = 0;
- _root.new_regional = 0;
- _root.new_hometown = 0;
- _root.new_backyard = 0;
- }
- stop();
-