idk some shit
This commit is contained in:
parent
7389ddbb46
commit
41b638f065
@ -1764,43 +1764,60 @@ class PlayState extends MusicBeatState
|
|||||||
var daRating:String = "sick";
|
var daRating:String = "sick";
|
||||||
|
|
||||||
|
|
||||||
if (noteDiff > Conductor.safeZoneOffset * 24)
|
|
||||||
|
if (noteDiff > Conductor.safeZoneOffset * 2)
|
||||||
{
|
{
|
||||||
daRating = 'shit';
|
daRating = 'shit';
|
||||||
totalNotesHit -= 2;
|
totalNotesHit -= 2;
|
||||||
score = -3000;
|
|
||||||
ss = false;
|
ss = false;
|
||||||
noteMiss(0);
|
if (theFunne)
|
||||||
health -= 0.1;
|
{
|
||||||
|
score = -3000;
|
||||||
|
combo = 0;
|
||||||
|
misses++;
|
||||||
|
health -= 0.2;
|
||||||
|
}
|
||||||
shits++;
|
shits++;
|
||||||
}
|
}
|
||||||
else if (noteDiff < Conductor.safeZoneOffset * -24)
|
else if (noteDiff < Conductor.safeZoneOffset * -2)
|
||||||
{
|
{
|
||||||
daRating = 'shit';
|
daRating = 'shit';
|
||||||
totalNotesHit -= 2;
|
totalNotesHit -= 2;
|
||||||
score = -3000;
|
if (theFunne)
|
||||||
noteMiss(0);
|
{
|
||||||
health -= 0.1;
|
score = -3000;
|
||||||
|
combo = 0;
|
||||||
|
misses++;
|
||||||
|
health -= 0.2;
|
||||||
|
}
|
||||||
ss = false;
|
ss = false;
|
||||||
shits++;
|
shits++;
|
||||||
}
|
}
|
||||||
else if (noteDiff < Conductor.safeZoneOffset * -0.45)
|
else if (noteDiff < Conductor.safeZoneOffset * -0.45)
|
||||||
{
|
{
|
||||||
daRating = 'bad';
|
daRating = 'bad';
|
||||||
score = -1000;
|
|
||||||
totalNotesHit += 0.2;
|
totalNotesHit += 0.2;
|
||||||
noteMiss(0);
|
if (theFunne)
|
||||||
|
{
|
||||||
|
score = -1000;
|
||||||
|
health -= 0.03;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
score = 100;
|
||||||
ss = false;
|
ss = false;
|
||||||
health -= 0.04;
|
|
||||||
bads++;
|
bads++;
|
||||||
}
|
}
|
||||||
else if (noteDiff > Conductor.safeZoneOffset * 0.45)
|
else if (noteDiff > Conductor.safeZoneOffset * 0.45)
|
||||||
{
|
{
|
||||||
daRating = 'bad';
|
daRating = 'bad';
|
||||||
score = -1000;
|
|
||||||
totalNotesHit += 0.2;
|
totalNotesHit += 0.2;
|
||||||
noteMiss(0);
|
if (theFunne)
|
||||||
health -= 0.04;
|
{
|
||||||
|
score = -1000;
|
||||||
|
health -= 0.03;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
score = 100;
|
||||||
ss = false;
|
ss = false;
|
||||||
bads++;
|
bads++;
|
||||||
}
|
}
|
||||||
@ -1808,8 +1825,13 @@ class PlayState extends MusicBeatState
|
|||||||
{
|
{
|
||||||
daRating = 'good';
|
daRating = 'good';
|
||||||
totalNotesHit += 0.65;
|
totalNotesHit += 0.65;
|
||||||
score = 200;
|
if (theFunne)
|
||||||
health -= 0.004;
|
{
|
||||||
|
score = 200;
|
||||||
|
//health -= 0.01;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
score = 200;
|
||||||
ss = false;
|
ss = false;
|
||||||
goods++;
|
goods++;
|
||||||
}
|
}
|
||||||
@ -1817,8 +1839,13 @@ class PlayState extends MusicBeatState
|
|||||||
{
|
{
|
||||||
daRating = 'good';
|
daRating = 'good';
|
||||||
totalNotesHit += 0.65;
|
totalNotesHit += 0.65;
|
||||||
score = 200;
|
if (theFunne)
|
||||||
health -= 0.04;
|
{
|
||||||
|
score = 200;
|
||||||
|
//health -= 0.01;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
score = 200;
|
||||||
ss = false;
|
ss = false;
|
||||||
goods++;
|
goods++;
|
||||||
}
|
}
|
||||||
@ -1830,7 +1857,6 @@ class PlayState extends MusicBeatState
|
|||||||
sicks++;
|
sicks++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (daRating != 'shit' || daRating != 'bad')
|
if (daRating != 'shit' || daRating != 'bad')
|
||||||
{
|
{
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user