More actions
m (Text replacement - "GameBrew!" to "GameBrew") |
No edit summary |
||
Line 2: | Line 2: | ||
|title=Vita Homebrew Apps (Plugins) - GameBrew | |title=Vita Homebrew Apps (Plugins) - GameBrew | ||
|title_mode=append | |title_mode=append | ||
|image= | |image=walkvita2.png | ||
|image_alt=Walk | |image_alt=Walk | ||
}} | }} | ||
{{Infobox Vita Homebrews | {{Infobox Vita Homebrews | ||
|title=Walk | |title=Walk | ||
|image= | |image=walkvita2.png | ||
|description= | |description=Read txts while playing a vita game. | ||
|author=pathway27 | |author=pathway27 | ||
|lastupdated=2021/05/16 | |lastupdated=2021/05/16 | ||
Line 18: | Line 18: | ||
|source=https://github.com/pathway27/walk | |source=https://github.com/pathway27/walk | ||
}} | }} | ||
A | A PS Vita plugin to read a txt file walkthrough while playing a game. | ||
This is part of the KyûHEN Homebrew Contest. | |||
== Installation == | ==Installation== | ||
This plugin needs [[ioPlus | This plugin needs [[IoPlus Vita|ioPlus]] by CelesteBlue. | ||
Download walk and put the .suprx file in ux0(ur0):tai/ and it to your ux0(ur0):tai/config.txt. | |||
Add it to | 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 (change to ur0 if you store the plugin there) | ||
*KERNEL | |||
ux0: | ux0:tai/ioplus.skprx | ||
... | ... | ||
*ALL | *ALL | ||
ux0:tai/walk.suprx | ux0:tai/walk.suprx | ||
Transfer your | Transfer your txt into the directory ux0:data/walk/TITLEID/ with the filename as walk.txt. | ||
So the full path will be: | So the full path will be: ux0:data/walk/TITLEID/walk.txt. | ||
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]. | 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]. | ||
== | ==User guide== | ||
Please note that the viewer doesn't pause the game, it's still running behind it. | |||
Some lines maybe cut-off and you may need to use Left and Right to go to the next page. | |||
===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 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. | |||
== | ==Controls== | ||
Hold Select+R - Open/Close the reader (while in game) | |||
'''Reader:''' | |||
Up - Go up a line | |||
Down - Go down a line | |||
Left - Go up 27 lines | |||
Right - Go down 27 lines | |||
== | ==Screenshots== | ||
walkvita3.png | |||
== | ==Credits== | ||
* Daniel Hepper for [https://github.com/dhepper/font8x8 font8x8] | * 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] | * 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] | * Electry for [https://github.com/Electry/VGi VGi]. | ||
* Molecule Team for [https://henkaku.xyz/ Henkaku] and yifanlu for [https://tai.henkaku.xyz/ TaiHen] | * Molecule Team for [https://henkaku.xyz/ Henkaku] and yifanlu for [https://tai.henkaku.xyz/ TaiHen]. | ||
* vitasdk peeps | * vitasdk peeps | ||
== External links == | ==External links== | ||
* | * KyûHEN Homebrew Contest - https://kyuhen.customprotocol.com/en/submissions/walk/ | ||
* | * GiHub - https://github.com/pathway27/walk | ||
* VitaDB - https://vitadb.rinnegatamante.it/#/info/666 | * VitaDB - https://vitadb.rinnegatamante.it/#/info/666 |
Revision as of 05:46, 11 Ocak 2023
Walk | |
---|---|
General | |
Author | pathway27 |
Type | Plugins |
Version | 0.1 |
License | GPL-3.0 |
Last Updated | 2021/05/16 |
Links | |
Download | |
Website | |
Source | |
A PS Vita plugin to read a txt file walkthrough while playing a game.
This is part of the KyûHEN Homebrew Contest.
Installation
This plugin needs ioPlus by CelesteBlue.
Download walk and put the .suprx file in ux0(ur0):tai/ and it to your ux0(ur0):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 (change to ur0 if you store the plugin there)
*KERNEL 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.
User guide
Please note that the viewer doesn't pause the game, it's still running behind it.
Some lines maybe cut-off and you may need to use Left and Right to go to the next page.
Tricks
Getting a FAQ from gamefaqs.com
- Find a gamefaqs walkthrough you want like this one.
- Open the Javascript Console.
- 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.
Controls
Hold Select+R - Open/Close the reader (while in game)
Reader:
Up - Go up a line
Down - Go down a line
Left - Go up 27 lines
Right - Go down 27 lines
Screenshots
walkvita3.png
Credits
External links
- KyûHEN Homebrew Contest - https://kyuhen.customprotocol.com/en/submissions/walk/
- GiHub - https://github.com/pathway27/walk
- VitaDB - https://vitadb.rinnegatamante.it/#/info/666