Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Walk Vita: Difference between revisions

From GameBrew
No edit summary
No edit summary
 
(14 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{#seo:
{{#seo:
|title=Vita Homebrew Apps (Plugins) - GameBrew!
|title=Vita Homebrew Apps (Plugins) - GameBrew
|title_mode=append
|title_mode=append
|image=walkvita.jpg
|image=walkvita2.png
|image_alt=Walk
|image_alt=Walk
}}
}}
{{Infobox Vita Homebrews
{{Infobox Vita Homebrews
|title=Walk
|title=Walk
|image=walkvita.jpg
|image=walkvita2.png
|description=Txt reader in plugin form.
|description=Read txts while playing a vita game.
|author=pathway27
|author=pathway27
|lastupdated=2021/05/16
|lastupdated=2021/05/16
Line 17: Line 17:
|website=https://kyuhen.customprotocol.com/en/submissions/walk/
|website=https://kyuhen.customprotocol.com/en/submissions/walk/
|source=https://github.com/pathway27/walk
|source=https://github.com/pathway27/walk
|donation=https://ko-fi.com/pathway27
}}
}}
A PSVITA plugin to read a <code>txt</code> file walkthrough while playing a game.
A PS Vita plugin to read a txt file walkthrough while playing a game.


<blockquote>Too many games, not enough time
It was part of the KyûHEN Homebrew Contest (Utility, 2nd place).
</blockquote>
'''This is part of the [https://kyuhen.customprotocol.com/en/ KyûHEN competition].'''


== Installation ==
==Installation==
This plugin needs [[ioPlus Vita]] by CelesteBlue.
This plugin needs [[IoPlus Vita|ioPlus]] 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>.
Download walk and put the .suprx file in ux0(ur0):tai/.


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.
Open ux0(ur0):tai/config.txt, insert the plugin under *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)


<pre>*KERNAL
*KERNEL
ux0:/tai/ioplus.skprx
ux0:tai/ioplus.skprx
...
...
*ALL
*ALL
ux0:tai/walk.suprx</pre>
ux0:tai/walk.suprx


Transfer your <code>txt</code> into the directory <code>ux0:data/walk/TITLEID/</code> with the filename as <code>walk.txt</code>.
Transfer your txt into the directory ux0:data/walk/TITLEID/ with the filename as walk.txt.


So the full path will be: <code>ux0:data/walk/TITLEID/walk.txt</code>
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].


== Usage ==
==User guide==
Open a Game and then Hold <code>Select + R Trigger</code> to open/close the reader.
Please note that the viewer doesn't pause the game, it's still running behind it.


Use the D-Pad to control the viewer:
Some lines maybe cut-off and you may need to use Left and Right to go to the next page.


* Up - Go up a line
===Tricks===
* Down - Go down a line
Getting a FAQ from gamefaqs.com
* Left - Go up 27 lines
*Find a gamefaqs walkthrough you want like [https://gamefaqs.gamespot.com/vita/763296-danganronpa-2-goodbye-despair/faqs/70277 this one].
* Right - Go down 27 lines
*[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.


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
(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();
})()


==Screenshots==
'''Disclaimer:''' By doing above and using this plugin you agree that you are reading guides provided by the author as if on the website gamefaqs.com.
[[image:walkvita.jpg|600px]]


== TODO ==
==Controls==
* Some characters are broken like <code>¯</code>, <code>U+00AF</code>
Hold Select+R - Open/Close the reader (while in game)
* 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 ==
'''Reader:'''
=== 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].
Up/Down - Go up/down a line


Use this JavaScript code to get a <code>txt</code> file, which you can rename and put onto your vita.
Left/Right - Go up/down 27 lines


<pre>(function() {
==Screenshots==
let file = new Blob([$(&quot;.faqtext&quot;).text()], {type: &quot;application/text&quot;});
https://dlhb.gamebrew.org/vitahomebrews/walkvita3.png
let a = document.createElement(&quot;a&quot;),
url = URL.createObjectURL(file);
a.href = url;
a.download = window.document.title + &quot;.txt&quot;;
document.body.appendChild(a);
a.click();
})()</pre>


== Disclaimer ==
==Credits==
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>.
* 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.


==Changelog==
==External links==
'''(v.0.1)'''
* KyûHEN Homebrew Contest - https://kyuhen.customprotocol.com/en/submissions/walk/
* First Release.
* GiHub - https://github.com/pathway27/walk
* VitaDB - https://vitadb.rinnegatamante.it/#/info/666


== Thanks ==
[[Category:KyuHEN Homebrew Contest]]
* 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 ==
* Official Website - https://kyuhen.customprotocol.com/en/submissions/walk/
* Github - https://github.com/pathway27/walk
* VitaDB - https://vitadb.rinnegatamante.it/#/info/666

Latest revision as of 10:55, 8 September 2024

Walk
Walkvita2.png
General
Authorpathway27
TypePlugins
Version0.1
LicenseGPL-3.0
Last Updated2021/05/16
Links
Download
Website
Source
Support Author

A PS Vita plugin to read a txt file walkthrough while playing a game.

It was part of the KyûHEN Homebrew Contest (Utility, 2nd place).

Installation

This plugin needs ioPlus by CelesteBlue.

Download walk and put the .suprx file in ux0(ur0):tai/.

Open ux0(ur0):tai/config.txt, insert the plugin under *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

(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 the website gamefaqs.com.

Controls

Hold Select+R - Open/Close the reader (while in game)

Reader:

Up/Down - Go up/down a line

Left/Right - Go up/down 27 lines

Screenshots

walkvita3.png

Credits

External links

Advertising: