This repository has been archived on 2025-07-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
ZUGABE/h-encore-auto/lang.cs

43 lines
1.8 KiB
C#
Raw Permalink Normal View History

2018-07-06 23:05:42 +02:00
namespace h_encore_auto
2018-07-06 16:29:40 +02:00
{
class lang
{
public static string[] GuideText(string lang)
{
if (lang == "en")
return guideEN;
else
return guideEN;
}
private static readonly string[] guideEN= new string[] {
"1. On your Vita, open the Content Manager. Make sure your Vita and PC are in the same Network!",
"2. Select \"Copy Content\"",
"3. If it tries to connect, cancel it.",
"4. Select \"PC\"",
"5. Select \"Wi-Fi\"",
"6. Select \"Register Device\"",
"7. Your Computer should show up. Select it.",
"8. Enter the code shown or your computer.",
"8. Enter the code shown or your computer.",
"8. Enter the code shown or your computer.",
"9. It should tell you that the device was registered successfully.",
"10. After clicking next, please wait.",
"11. Select \"PC -> PS Vita System\"",
"12. Select \"Applications\"",
"1. On your Vita, open the Content Manager. Make sure your Vita and PC are in the same Network!",
"2. Select \"Copy Content\"",
"3. Wait for it to connect.",
"4. Select \"PC -> PS Vita System\"",
"5. Select \"Applications\"",
2018-07-06 23:05:42 +02:00
"6. Select \"PS Vita\"",
"7. Tick \"h-encore\" and click \"copy\". Wait for it to complete and close Content Manager.",
"8. Start the new \"h-encore\" bubble.",
"9. Select \"Install HENkaku\"",
"10. Select \"Download VitaShell\"",
"11. Finally, exit.",
2018-07-06 16:29:40 +02:00
"Done. Keep in mind that you have to launch h-encore every time you reboot the Vita. \nWhen launched, just press Exit again. This reapplies the exploit."
};
}
}