wife updates (she left me)
This commit is contained in:
parent
359e9d2b06
commit
58286eafa1
@ -1464,15 +1464,15 @@ class PlayState extends MusicBeatState
|
|||||||
{
|
{
|
||||||
var ranking:String = "N/A";
|
var ranking:String = "N/A";
|
||||||
|
|
||||||
if (misses == 0 && accuracy >= 100) // Marvelous (SICK) Full Combo
|
if (misses == 0 && bads == 0 && shits == 0 && goods == 0) // Marvelous (SICK) Full Combo
|
||||||
ranking = "(MFC)";
|
ranking = "(MFC)";
|
||||||
else if (misses == 0 && bads == 0 && shits == 0 && goods >= 1) // Good Full Combo (Nothing but Goods & Sicks)
|
else if (misses == 0 && bads == 0 && shits == 0 && goods >= 1) // Good Full Combo (Nothing but Goods & Sicks)
|
||||||
ranking = "(GFC)";
|
ranking = "(GFC)";
|
||||||
else if ((shits < 10 && shits != 0 || bads < 10 && bads != 0) && misses == 0) // Single Digit Combo Breaks
|
else if ((shits < 10 && shits != 0 || bads < 10 && bads != 0) && misses == 0) // Single Digit Combo Breaks
|
||||||
ranking = "(SDCB)";
|
ranking = "(SDCB)";
|
||||||
else if (misses == 0) // Regular FC
|
else if (misses == 0 && (shits >= 10 || bads >= 10)) // Regular FC
|
||||||
ranking = "(FC)";
|
ranking = "(FC)";
|
||||||
else // Combo Broken
|
else if (misses >= 1) // Combo Broken
|
||||||
ranking = "(CB)";
|
ranking = "(CB)";
|
||||||
|
|
||||||
// WIFE TIME :)))) (based on Wife3)
|
// WIFE TIME :)))) (based on Wife3)
|
||||||
@ -2107,7 +2107,7 @@ class PlayState extends MusicBeatState
|
|||||||
sicks++;
|
sicks++;
|
||||||
}
|
}
|
||||||
|
|
||||||
trace(noteDiff);
|
trace('Wife accuracy loss: ' + wife + ' | Rating: ' + daRating + ' | Score: ' + score + ' | Weight: ' + (1 - wife));
|
||||||
|
|
||||||
if (daRating != 'shit' || daRating != 'bad')
|
if (daRating != 'shit' || daRating != 'bad')
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user