Collection of historical information and assets related to the AIMFight.com website. AIM Fight was a website operated by AIM/AOL from 2005-2013 which allowed you to compare the popularity of any two screennames.
You can access a live demo of the AIM Fight website at the GitHub pages url, https://jgknight.github.io/aimfight-archive/
The website uses a static results file, so scores will be the same regardless of what screenname is entered.
Within the decompiled
directory you can find the decompiled and exported resources from each of the AIM fight swf files. They were decompiled using the JPEXS Free Flash Decompiler.
A full export includes shapes, texts, images, scripts, frames, sprites, buttons, fonts, symbok class mappings, movies, sounds, binary data, definefont4, morphshapes, embedded assets.
A partial export means it is missing the movies, sounds, binary data, definefont4, morphshapes, embedded assets.
- aim_fight2
- Classic/default view
- Partial export
- Notable scripts in Frame 1
- aim_fight3
- Classic/default view
- Partial export
- Notable scripts in Frame 1
- aim_fight4_slurpee
- Superman Returns movie ad sponsored by Slurpee
- Partial export
- Notable scripts in Frame 1
- aim_fight5
- Classic/default view
- Partial export
- Notable scripts in Frame 1
- aim_fight6
- Silver Surfer movie ad
- Full export
- Notable scripts in Frame 1 and Frame 92
- aim_fight6_armyoftwo
- EA Games Army of Two video game ad
- Partial export
- Notable scripts in Frame 20
- aim_fight_06_sony
- Zoom movie ad starring Tim Allen
- Partial export
- Notable scripts in Frame 1
- aim_fight_sw
- Sydney White movie ad starring Amanda Bynes
- Partial export
- Notable scripts in Frame 1 and Frame 92
If you have any additional information to add, or you have a previously unlisted .swf file, please open a PR.
The API consists of a single URL called by the Adobe Flash applet that returns the scores and ranks of the users. Additionally, it returns heights for the bars for the applet to show.
It was accessed at http://www.aimfight.com/getFight.php?name1=SCREENNAME1&name2=SCREENNAME2
By replacing SCREENNAME1 and SCREENNAME2 with the screen names of the individuals to fight, percent-encoded data was returned in the following format:
&success=1&score1=132451&score2=6004&oscore1=27241&oscore2=0&height1=99&height2=4
success
returns whether or not the fight was a valid one (0 if no, 1 if yes)score1
represents the score of the first screen name enteredscore2
represents the score of the second screen name enteredoscore1
shows the rank of the first screen name if it is in the Top 5%oscore2
shows the rank of the second screen name if it is in the Top 5%height1
is the height of the first screen name's barheight2
is the height of the second screen name's bar
tbd