More actions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{#seo: | {{#seo: | ||
|title=Vita Homebrew Apps (Plugins) - GameBrew! | |title=Vita Homebrew Apps (Plugins) - GameBrew! | ||
Line 13: | Line 12: | ||
|lastupdated=2021/05/16 | |lastupdated=2021/05/16 | ||
|type=Plugins | |type=Plugins | ||
|version=1 | |version=0.1 | ||
|license=GPL-3.0 | |license=GPL-3.0 | ||
|download=https://dlhb.gamebrew.org/vitahomebrews/walkvita.7z | |download=https://dlhb.gamebrew.org/vitahomebrews/walkvita.7z | ||
|website= | |website=https://kyuhen.customprotocol.com/en/submissions/walk/ | ||
|source=https://github.com/pathway27/walk | |source=https://github.com/pathway27/walk | ||
}} | }} | ||
A PSVITA plugin to read a txt file walkthrough while playing a game. | |||
Is a PSVITA plugin to read a <code>txt</code> file walkthrough while playing a game. | |||
< | |||
<blockquote>Too many games, not enough time | |||
</blockquote> | |||
'''This is part of the [https://kyuhen.customprotocol.com/en/ KyûHEN competition].''' | |||
== Installation == | |||
This plugin needs [[ioPlus Vita]] by CelesteBlue. | |||
Then download <code>walk</code> and put the <code>.suprx</code> file in <code>ux0:tai</code> and it to your <code>ux0:tai/config.txt</code>. | |||
Add it to <code>*ALL</code> to enable it for all games, or add a section for the titleid of the game / app you're interested in. | |||
<pre>*KERNAL | |||
ux0:/tai/ioplus.skprx | |||
... | |||
*ALL | |||
ux0:tai/walk.suprx</pre> | |||
Transfer your <code>txt</code> into the directory <code>ux0:data/walk/TITLEID/</code> with the filename as <code>walk.txt</code>. | |||
So the full path will be: <code>ux0:data/walk/TITLEID/walk.txt</code> | |||
You can find the title id at the gamefaqs' data page, like [https://gamefaqs.gamespot.com/vita/763296-danganronpa-2-goodbye-despair/data this one]. | |||
== Usage == | |||
Open a Game and then Hold <code>Select + R Trigger</code> to open/close the reader. | |||
Use the D-Pad to control the viewer: | |||
* Up - Go up a line | |||
* Down - Go down a line | |||
* Left - Go up 27 lines | |||
* Right - Go down 27 lines | |||
NOTE: The viewer doesn't pause the game, it's still running behind it! NOTE: Some lines maybe cut-off and you may need to use Left and Right to go to the next page | |||
==Screenshots== | ==Screenshots== | ||
[[image:walkvita.jpg|600px]] | |||
== | == TODO == | ||
'''(v.1 | * Some characters are broken like <code>¯</code>, <code>U+00AF</code> | ||
* Bigger font / custom font | |||
* More than one walkthrough / file per titleid | |||
* Use Network for guides / guides API server | |||
* detect from emulators / psp mode | |||
* html | |||
== Tricks == | |||
=== Getting a FAQ from gamefaqs.com === | |||
Find a gamefaqs walkthrough you want like [https://gamefaqs.gamespot.com/vita/763296-danganronpa-2-goodbye-despair/faqs/70277 this one]. | |||
[https://webmasters.stackexchange.com/questions/8525/how-do-i-open-the-javascript-console-in-different-browsers Open the Javascript Console]. | |||
Use this JavaScript code to get a <code>txt</code> file, which you can rename and put onto your vita. | |||
<pre>(function() { | |||
let file = new Blob([$(".faqtext").text()], {type: "application/text"}); | |||
let a = document.createElement("a"), | |||
url = URL.createObjectURL(file); | |||
a.href = url; | |||
a.download = window.document.title + ".txt"; | |||
document.body.appendChild(a); | |||
a.click(); | |||
})()</pre> | |||
== Disclaimer == | |||
By doing above and using this plugin you agree that you are reading guides provided by the author as if on on the website <code>gamefaqs.com</code>. | |||
==Changelog== | |||
'''(v.0.1)''' | |||
* First Release. | * First Release. | ||
== Thanks == | |||
* Daniel Hepper for [https://github.com/dhepper/font8x8 font8x8] | |||
* CelesteBlue for [https://github.com/CelesteBlue-dev/PSVita-RE-tools/tree/master/ioPlus/ioPlus-0.1 ioplus] | |||
* Electry for [https://github.com/Electry/VGi VGi] | |||
* Molecule Team for [https://henkaku.xyz/ Henkaku] and yifanlu for [https://tai.henkaku.xyz/ TaiHen] | |||
* vitasdk peeps | |||
== External links == | == External links == | ||
* Official Website - | * Official Website - https://kyuhen.customprotocol.com/en/submissions/walk/ | ||
* Github - https://github.com/pathway27/walk | * Github - https://github.com/pathway27/walk | ||
* VitaDB - https://vitadb.rinnegatamante.it/#/info/666 | * VitaDB - https://vitadb.rinnegatamante.it/#/info/666 | ||
Revision as of 04:53, 8 November 2022
Walk | |
---|---|
File:Walkvita.jpg | |
General | |
Author | pathway27 |
Type | Plugins |
Version | 0.1 |
License | GPL-3.0 |
Last Updated | 2021/05/16 |
Links | |
Download | |
Website | |
Source | |
A PSVITA plugin to read a txt file walkthrough while playing a game.
Is a PSVITA plugin to read a txt
file walkthrough while playing a game.
Too many games, not enough time
This is part of the KyûHEN competition.
Installation
This plugin needs ioPlus Vita by CelesteBlue.
Then download walk
and put the .suprx
file in ux0:tai
and it to your ux0:tai/config.txt
.
Add it to *ALL
to enable it for all games, or add a section for the titleid of the game / app you're interested in.
*KERNAL ux0:/tai/ioplus.skprx ... *ALL ux0:tai/walk.suprx
Transfer your txt
into the directory ux0:data/walk/TITLEID/
with the filename as walk.txt
.
So the full path will be: ux0:data/walk/TITLEID/walk.txt
You can find the title id at the gamefaqs' data page, like this one.
Usage
Open a Game and then Hold Select + R Trigger
to open/close the reader.
Use the D-Pad to control the viewer:
- Up - Go up a line
- Down - Go down a line
- Left - Go up 27 lines
- Right - Go down 27 lines
NOTE: The viewer doesn't pause the game, it's still running behind it! NOTE: Some lines maybe cut-off and you may need to use Left and Right to go to the next page
Screenshots
TODO
- Some characters are broken like
¯
,U+00AF
- Bigger font / custom font
- More than one walkthrough / file per titleid
- Use Network for guides / guides API server
- detect from emulators / psp mode
- html
Tricks
Getting a FAQ from gamefaqs.com
Find a gamefaqs walkthrough you want like this one.
Use this JavaScript code to get a txt
file, which you can rename and put onto your vita.
(function() { let file = new Blob([$(".faqtext").text()], {type: "application/text"}); let a = document.createElement("a"), url = URL.createObjectURL(file); a.href = url; a.download = window.document.title + ".txt"; document.body.appendChild(a); a.click(); })()
Disclaimer
By doing above and using this plugin you agree that you are reading guides provided by the author as if on on the website gamefaqs.com
.
Changelog
(v.0.1)
- First Release.
Thanks
External links
- Official Website - https://kyuhen.customprotocol.com/en/submissions/walk/
- Github - https://github.com/pathway27/walk
- VitaDB - https://vitadb.rinnegatamante.it/#/info/666