Skip to content

Commit

Permalink
it better not work, trust me
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesisfeline committed Feb 23, 2024
1 parent 9e6e629 commit 1473b79
Show file tree
Hide file tree
Showing 18 changed files with 498 additions and 137 deletions.
135 changes: 132 additions & 3 deletions assets/shared/data/introText.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,162 @@ Whitty--is protected
haha--pink fox
pizza--rolls
nineteen dollar--fortnite card
penis--balls even
where tf are--My BEANS
Boyfriend says--beep
funkin--forever
too many people--my head hurts
better than geometry dash--fight me robtop
this is a beta build--leaks arent my fault
You Wanna know something--Trolled
do not--the cat
tankman--moment
home depot--is amazing
go work at--ikea loser
its the--final countdown
this text is probably going to get cut off isnt it--like what is the probability that none of this text will get cut off well now we know its zero
thank you to--my mom
thank you to--the leakers
thank you to--my cat
im gonna--get you
i broke my--thumb ligament
its finally--here
holy shit i cant believe--its finally over
ive been coding vs foxa for--like nine months now
please--help
we cant get rid of the--spaghetti code
im--tired
like carol--but cooler
momazos--diego
whitty--but pink
Foxa is--NOT piggy
keep up--pure perfection
sexiest engine--in da block
imagine using--codename engine
little herobrine--im cumming in your mom
batman--fortnite
Whitty--approves
coffee--table
sussy--amogus
you either a smart fella--or a fart smella
tiki--say hi
check your closet--NOW
local--no
Amogus--where
gandac--big inspiration
who is--Joe
look outside--your window
hi--memehoovy
Updyke--no kill bom
EA--Sports
those creatures from ganon--are pretty bad
psych engine port--fatherless behavior
i made a psych port--free clout yay
wanna work on my fnf--fnf mod
i have--brain damage
bonk--get in the discord call
petre--raven
9 kids--found missing
you saw--this pun
hell--no
this isn't a copy of ke--*vine boom*
actual functional--input system
No copyright law in the--universe can stop me
women are not real--this is official
wtf how you--fc
we do a little trolling--h
leave the fox--Alone
this will be alleyway engine--in 2014
its been 3 years daddy--3 years
development hell--is not fun
sponsored by--league Of Ledgends
VSWhitty--biggest inspiration
vs whitty--biggest inspiration
i am standing behind you--
This seems like a good place--to hide a secret
you are a slave--want emancipation
you lack patience--inmate
fanart--welcome
ooooo you want to--draw fanart oooooooo
Loading--awesome soundtracks
Does anyone--even read this?
this game blows--splash
its effin--mario kart again
delicious--pancakes
its a me--luigi
persona references--everywhere
youll never see it--comiiiiiiiinggggg
hey all--scott here
Sans is--not real
go to--jail
i eat--beans
Monster has--no Iphone
Don't Hurt--Whitty
Foxa is--not a furry
this will be vs foxa--in 2014
foxa recharted--2024
are you cording--my fnf mod
are you cording--anything
Finally this mod--is out
undertale rip off edition--is free
Thank You--FNAF Theorists
fnf is not for kids--go outside
what you know about--rolling down in the deep
oh god i'm white--and i'm on twitter
i gotta--bucket of chicken
dream stans--literally scare me
psych engine supremacy--cuz yes
animation funkin--check it out
why is peter griffin--leaking our mod
peter how could you--do this
less--goooo
what da dog--doin
mansour says--fnf is shit lol
coca cola--espuma
dancin--forever
better than vs plankton--fight me joer
plutos reprisal--check it out
rate five--pls no blam
marioyoshi7--is peak
its nerf--or nothing
fashionably late--but here it is
yooooooooooo--yooooooooo
one two--buckle my shoes
atsuover--my beloved
wash your hands--stay safe bro
wear a mask--even if vaccinated
you dont understand--i hate society as a whole
epic troll coming--in 5 days
hi flippy--please play my mod
666 bpm--song when
when the friday--is funkin
shut the fuck--up
the--j
blammed--lights
source code overview--my beloved
why did we--make this
commit eating--doritos vertically
certified--hood classic
we do a bit--of funkin
i--forgor
your fingers--are broken
special thx to charlescatyt--for carring the mod's coding
rhythm gaming--ultimate
lava more like--orange juice
gta six--next year
theres no week 8--you have been lied to
you already know--we really out here
refined taste in music--if i say so myself
never forget to--pray to god
roblox--this is fact
shut the hell up--insert luigi screaming
name vars better--please
joker--persona five
youre mom--hahej get fucked
my head hurts--ouch
be right back--deleting ngio hx
ok google--how to install vs foxa se
buy me serum--please
nevermind--i got serum
wake up--wake up
you ever just--sit in your truck
stuck in pending hell--for weeks
null object reference--damn it
better input--than kade
32 changes: 13 additions & 19 deletions source/backend/Highscore.hx
Original file line number Diff line number Diff line change
Expand Up @@ -55,25 +55,25 @@ class Highscore
{
// Reminder that I don't need to format this song, it should come formatted!
songScores.set(song, score);
FlxG.save.data.songScores = songScores;
FlxG.save.flush();
SaveFileState.saveFile.data.songScores = songScores;
SaveFileState.saveFile.flush();
}

static function setWeekScore(week:String, score:Int):Void
{
// Reminder that I don't need to format this song, it should come formatted!
weekScores.set(week, score);
FlxG.save.data.weekScores = weekScores;
FlxG.save.flush();
SaveFileState.saveFile.data.weekScores = weekScores;
SaveFileState.saveFile.flush();
}

static function setRating(song:String, rating:Float):Void
{
// Reminder that I don't need to format this song, it should come formatted!
songRating.set(song, rating);
FlxG.save.data.songRating = songRating;
FlxG.save.flush();
SaveFileState.saveFile.data.songRating = songRating;
SaveFileState.saveFile.flush();
}

public static function formatSong(song:String, diff:Int):String
{
return Paths.formatToSongPath(song) + Difficulty.getFilePath(diff);
Expand Down Expand Up @@ -108,17 +108,11 @@ class Highscore

public static function load():Void
{
if (FlxG.save.data.weekScores != null)
{
weekScores = FlxG.save.data.weekScores;
}
if (FlxG.save.data.songScores != null)
{
songScores = FlxG.save.data.songScores;
}
if (FlxG.save.data.songRating != null)
{
songRating = FlxG.save.data.songRating;
}
if (SaveFileState.saveFile.data.weekScores != null)
weekScores = SaveFileState.saveFile.data.weekScores;
if (SaveFileState.saveFile.data.songScores != null)
songScores = SaveFileState.saveFile.data.songScores;
if (SaveFileState.saveFile.data.songRating != null)
songRating = SaveFileState.saveFile.data.songRating;
}
}
13 changes: 8 additions & 5 deletions source/objects/Note.hx
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,10 @@ class Note extends FlxSprite
public var hitsoundChartEditor:Bool = true;
public var hitsound:String = 'hitsound';

private function set_multSpeed(value:Float):Float {
inline private function set_multSpeed(value:Float):Float {
resizeByRatio(value / multSpeed);
multSpeed = value;
//trace('fuck cock');

return value;
}

Expand All @@ -137,7 +137,7 @@ class Note extends FlxSprite
}
}

private function set_texture(value:String):String {
inline private function set_texture(value:String):String {
if(texture != value) reloadNote(value);

texture = value;
Expand Down Expand Up @@ -313,8 +313,11 @@ class Note extends FlxSprite
public var originalHeight:Float = 6;
public var correctionOffset:Float = 0; //dont mess with this
public function reloadNote(texture:String = '', postfix:String = '') {
if(texture == null) texture = '';
if(postfix == null) postfix = '';
/*if(texture == null) texture = '';
if(postfix == null) postfix = '';*/
for (e in [texture, postfix])
if ( == null)
e = '';

var skin:String = texture + postfix;
if(texture.length < 1) {
Expand Down
7 changes: 5 additions & 2 deletions source/states/LoadingState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,10 @@ class LoadingState extends MusicBeatState
"Worjdjhewndjaiqkkwbdjkwqodbdjwoen&:’eked&3rd!2’wonenksiwnwihqbdibejwjebdjjejwjenfjdjejejjwkwiwjnensjsiieejjsjskikdjdnnwjwiwjejdjdjwiejdbdiwjdhehhrifjdnwoqnd",
"Oo0ooOoOOo000OOO!!!",
"Witness the might\nof the seas!",
"KadeDev is best.\nBut his own engine sucks though.",
"WE GOTTA GET SPONGEBOB BACK",
"Blud really said-"
"CARAMEL ARROW SUPREMACY",
"No, you are not getting 3.5. Get over it.",
"I put the new Forgi's on the jeep-",
"I will rip your intestines out.",
"flippity floppity",
"i'm surprised people might actually\nbe reading this at this point",
Expand All @@ -79,6 +80,8 @@ class LoadingState extends MusicBeatState
"I love to smash my keyboard.",
"Is Week 8 gonna come out anytime soon?",
"FIRE IN THE HOLE",
"WATER IN THE HILL",

"There might be someone out there that's thinking about making a mod about you.\nKeep that in mind.",
"Funkin' Forever.",
"i hope you go mooseing\nand get fucked by a campfire",
Expand Down
7 changes: 7 additions & 0 deletions source/states/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1691,6 +1691,13 @@ class PlayState extends MusicBeatState

override public function update(elapsed:Float)
{
#if debug
if (FlxG.keys.justPressed.NINE)
{
iconP1.swapOldIcon();
}
#end

if(!inCutscene && !paused && !freezeCamera) {
FlxG.camera.followLerp = 2.4 * cameraSpeed * playbackRate;
if(!startingSong && !endingSong && boyfriend.getAnimationName().startsWith('idle')) {
Expand Down
Loading

0 comments on commit 1473b79

Please sign in to comment.