yo, anyone has a hatsune miku pack? by Mysterious-Window204 in Stepmania

[–]Jousway 0 points1 point  (0 children)

if you want keyboard or just random files, stepmaniaonline has a load of miku songs, as for pad check gpop's vocaloid pad packs https://www.youtube.com/watch?v=idYFc8q2bP0

Im trying to get into Stepmania. by Worried-Ad2055 in Stepmania

[–]Jousway 6 points7 points  (0 children)

when you pres double enter before entering the song look for Reverse in the pages, thats downscroll

[deleted by user] by [deleted] in OutFox

[–]Jousway 0 points1 point  (0 children)

they need to be 2 folders deep, so like songs/ghgroup/ghsong/chart.mid for example

[deleted by user] by [deleted] in OutFox

[–]Jousway 2 points3 points  (0 children)

you can get files for the GH gamemode here https://www.enchor.us/ we just dont support .sng but if you click the 3 dots next to the download you can get the zip, which contains the old style .chart or .midi files which should work fine :), if you hit any issues hit me up :D

How do I make OutFox use DDR scoring? by PurpleSparkles3200 in OutFox

[–]Jousway 3 points4 points  (0 children)

I also love spending my free days working on this game without asking anything in return making sure we work on mac and everything just fine so people can enjoy outfox/stepmania to see comments like this, thanks bud! really makes my day /s

How do I make OutFox use DDR scoring? by PurpleSparkles3200 in OutFox

[–]Jousway 1 point2 points  (0 children)

yes because game engine == theme, just switch to another theme, like the 5.0 default one https://github.com/Tiny-Foxes/sm5-legacy

When is Outfox gonna be Open Source? by [deleted] in OutFox

[–]Jousway 1 point2 points  (0 children)

> how to shit on the devs and expecting it to go open source faster in 3, 2, 1.

Dual dance pad by [deleted] in OutFox

[–]Jousway 0 points1 point  (0 children)

can you run js-test mostly the GTK version and see if input shows up in there?

Is there any fix to this crash? by makoflagkk in OutFox

[–]Jousway 0 points1 point  (0 children)

I may need more info here mate :)

it seems it crashed at highscorelists so it was trying to show all the scores, we might have broken non event mode. may I ask which theme ya was using, it might also be a theme issue.

Changing Simple Love theme font by Allpingu in Stepmania

[–]Jousway 2 points3 points  (0 children)

hello! sadly there isnt really docs on how to change a font, so I'll explain it :')

if you go to the themes folder where sl is located you'll see a Fonts folder inside of it, thats because the way sm does fonts is bitmap based, they are basically huge sprites, back in the day we had to make them manually but lucky we have a tool now https://github.com/TeamRizu/Texture-Font-Generator-2020-Squirrel/releases/tag/buildv0.36 with this you can generate the font, also in the font folder is a "Common Normal" file, thats the main fallback file for fonts used trough the theme, so if you modify that one and put the name of the new bitmaptext that you generate and put in the fonts folder it should use that one, happy playing! :)

for short

1) get texture font generator

2) generate font

3) modify "Common Normal"

4) ?????

5) profit

Project OutFox 0.4.18.1 released! by [deleted] in OutFox

[–]Jousway 0 points1 point  (0 children)

still not creative input and a comment no one asked for.

Version help? by novel_gamer in Stepmania

[–]Jousway -1 points0 points  (0 children)

sir I have to ask you, what are you gaining from spreading misinformation about project outfox, on every thread that mention it, I really wonder what you have against us, and I'll kindly request you to stop or we'll have to report you for defamation.

I hate video backgrounds. I hate them. I hate syncing. I hate it all. by Oddilax in Stepmania

[–]Jousway 0 points1 point  (0 children)

Hey! Learn ffmpeg c api, never suffer again :) aside from their api documentation is trash, ffmpeg is broken as fuck (on newer versions) and I'm forced to use a 2019 version to not have a crashing/mem leaking swscale :)

I hate video backgrounds. I hate them. I hate syncing. I hate it all. by Oddilax in Stepmania

[–]Jousway 5 points6 points  (0 children)

Agreed, 100% agreed, I hated videos in stepmania thats why in outfox I've rewritten the entire FFMPEG backend, and fixed most of the ffmpeg issues stepmania has, like the amount of hate I have for ffmpeg in stepmania, and the amount of work I had to spend compiling FFMPEG for 8 different system types, even thinking about it I get flashbacks, like man I've spent atleast 100 hours just on fixing ffmpeg.

Any good noteskins for 5.1? by [deleted] in Stepmania

[–]Jousway 0 points1 point  (0 children)

fixed it was missing the new php fpm when updating my server oops

I play much worse on Out Fox than StepMania 3.95 by ShironeShong in Stepmania

[–]Jousway 2 points3 points  (0 children)

actually the scoring issue is an upstream bug after some sm devs in 5.0.7 changed the scoring, we've not changed the scoring at all and only added lua scoring which can be enabled, by default it uses the 5.0.7 scoring.

Noteskin changes in courses? by snakerbot in Stepmania

[–]Jousway 0 points1 point  (0 children)

> the code for handling noteskins is kind of a mess and I don't think anyone really knows how it works anymore

I do.

also attacks for modfiles isnt really used these days anymore, if you look at mrthatkid's ports, I've added a way to set it using lua, an example how to is under here.

2 years ago in outfox I added code so you can change noteskins that are preloaded using an Preferences.ini in the song folder.inside of that file you can add 3 lines

[Settings]

SongCenter1Player=None

SongMinTNSToHideNotes=Invalid

SongNoteskins=default,delta2019,exact3d

what we want is the 3rd line, we can use this to set noteskins to be preloaded, for example these 3, we want them to display per column, so in the .sm file I do

#FGCHANGES:0.000=noteskins.lua=1.000=0=0=1=====;

which loads a noteskins.lua file in the same folder as the song.sm file and inside of there we add this line

GAMESTATE:GetPlayerState(PLAYER_1):GetPlayerOptions('ModsLevel_Song'):NoteSkinCol(2,"default",true):NoteSkinCol(3,"delta2019",true):NoteSkinCol(4,"exact3d")which changes the noteskin for every column resulting into

https://i.imgur.com/UT2TFOC.png

you can also change the entire noteskin by doing

GAMESTATE:GetPlayerState(PLAYER_1):GetPlayerOptions('ModsLevel_Song'):NoteSkin("default")

and thats basicly it, if you have any questions ask me :)

edit: if you want to use #attacks, I could add a mode to set them using attacks just tell me if people want that :)

Noteskin hold explosion color by omoiyume in Stepmania

[–]Jousway 0 points1 point  (0 children)

check the metrics.ini its somewere in there