More clean
This commit is contained in:
parent
f9c4bf47b8
commit
9c41cceac5
3 changed files with 54 additions and 0 deletions
|
@ -0,0 +1,38 @@
|
|||
# SIFAC
|
||||
Love Live! School idol festival ~after school ACTIVITY~ (ラブライブ!スクールアイドルフェスティバル ~after school ACTIVITY~) is an arcade version of Love Live! School idol festival. It was first announced to be in production on November 27, 2015 and was made available for play on December 6, 2016.
|
||||
|
||||
Aqours was first announced to be added to the game on October 20, 2017. Aqours was added to the game with the Love Live! School Idol Festival: After School Activity Next Stage update on December 6, 2018. It was announced on October 26, 2020 that the game will receive a final update on November 10, 2020. No new songs or cards will be added passed that point, essentially ending support for the arcade version.
|
||||
|
||||
On October 10th 2020, it was announced that a port to the Playstation 4, titled Love Live! School idol festival ~after school ACTIVITY~ WaiWai! Home Meeting!! was in development. This version of the game was also announced with English language support, notably being the first iteration of the game to be released outside of Japan and in another language. It was released worldwide on March 24th 2021.
|
||||
|
||||
# How to Play
|
||||
Obtaining the game files for this is gray area due to the copyright restriction playing an old arcade game entails. If you agree with me, you'd think this is total BS and want to play things that are considered dead or EoS even after the matter. Archival and preservation are the main motivators here, not money or business!
|
||||
|
||||
1. I do not suggest looking on a certain site called nyaa.si or of similar origin as it will contain the borderline illegal method of getting the game
|
||||
2. Once the game files are obtained. (From a dump of the arcade machine or of other methods) extract them or decrypt the virtual hard disk (ask around for help if you need this method).
|
||||
3. The binary you want to run will be `ll3.exe`, but don't run it yet! There are some command line arguments that you can run it with to change how it acts:
|
||||
|
||||
### CLI Arguments
|
||||
`-highquality`: Runs the game with higher quality graphics. Not really sure if this makes a huge difference or not.
|
||||
|
||||
`-centralmode`: Enables a specific game mode designed for the gacha version, where players obtain randomized virtual items.
|
||||
|
||||
`-windowmode` or `-singlemode`: Runs the game in a resizable window instead of full-screen mode, useful for debugging or testing.
|
||||
|
||||
`-sh` (screen height): Sets the desired vertical size or resolution of the game window.
|
||||
|
||||
`-sw` (screen width): Sets the desired horizontal size or resolution of the game window.
|
||||
|
||||
`-wx`: Controls the horizontal position of the game window, specifying where the left edge of the window will be positioned.
|
||||
|
||||
`-wy`: Controls the vertical position of the game window, specifying where the top edge of the window will be positioned.
|
||||
|
||||
## Running The game
|
||||
### Offline Mode
|
||||
1. Once you've setup a `.bat` script in that directory to run the game, open it. Example below:
|
||||
>```bat
|
||||
ll3.exe -singlemode -sw 1920 -sh 1080 -highquality
|
||||
>```
|
||||
2. Launch the batch file and the game should open. Ensure you have the correct patched file(s) for the functionality you want to unlock. By default, the game will be capable of running in 'Free Play' mode (activate through the test configuration page). This allows for some gameplay (play up to a certain amount of songs per session, not all songs are unlocked). The machine *can* scan cards if a user has them. From my understanding, it doesn't need a network to do this.
|
||||
|
||||
### Online Mode (currently being worked on)
|
4
docs/style/better.css
Normal file
4
docs/style/better.css
Normal file
|
@ -0,0 +1,4 @@
|
|||
[data-md-color-scheme="slate"] {
|
||||
--md-hue: [0,0,0];
|
||||
--md-default-fg-color: hsla(0, 0%, 100%, 0.75);
|
||||
}
|
12
mkdocs.yml
12
mkdocs.yml
|
@ -6,6 +6,7 @@ nav:
|
|||
- SIF: sif/README.md
|
||||
- SIFAC: sifac/README.md
|
||||
- SIFAS: sifas/README.md
|
||||
- SIF2: sif2/README.md
|
||||
- About: about.md
|
||||
theme:
|
||||
name: material
|
||||
|
@ -13,11 +14,15 @@ theme:
|
|||
palette:
|
||||
# Palette toggle for light mode
|
||||
- scheme: default
|
||||
primary: pink
|
||||
accent: deep purple
|
||||
toggle:
|
||||
icon: material/brightness-7
|
||||
name: Switch to dark mode
|
||||
# Palette toggle for dark mode
|
||||
- scheme: slate
|
||||
primary: pink
|
||||
accent: deep purple
|
||||
toggle:
|
||||
icon: material/brightness-4
|
||||
name: Switch to light mode
|
||||
|
@ -32,3 +37,10 @@ extra:
|
|||
- name: 中国人
|
||||
link: /zh_CN/
|
||||
lang: zh_CN
|
||||
markdown_extensions:
|
||||
- toc:
|
||||
permalink: true
|
||||
baselevel: 2
|
||||
separator: "_"
|
||||
extra_css:
|
||||
- style/better.css
|
||||
|
|
Loading…
Add table
Reference in a new issue