From a64a8510029f5a5dd94eee0553cdc7af6b2ed03f Mon Sep 17 00:00:00 2001 From: Silica Date: Fri, 7 Jul 2017 09:05:17 +1200 Subject: [PATCH] Delete step3.lua --- step3.lua | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 step3.lua diff --git a/step3.lua b/step3.lua deleted file mode 100644 index bea16a3..0000000 --- a/step3.lua +++ /dev/null @@ -1,42 +0,0 @@ --- Create a new color -white = Color.new(255,255,255,255) -if System.getBatteryPercentage() > 25 then - --- Main loop -while true do - System.powerTick() - -- Draw a string on the screen - Graphics.initBlend() - Screen.clear() - Graphics.debugPrint(5, 5, "INSTALLING REBUG...", white) - Graphics.debugPrint(5, 25, "DO NOT TURN OFF THE SYSTEM OR EXIT THIS APP!!!", white) - Graphics.debugPrint(5, 45, "THE PSVITA WILL AUTOMATICALLY REBOOT WHEN INSTALLATON IS DONE.", white) - Graphics.termBlend() - -- Update screen (For double buffering) - Screen.flip() - System.deleteDirectory("vs0:/app") - System.deleteDirectory("vs0:/data") - System.deleteDirectory("vs0:/sys") - System.deleteDirectory("vs0:/tool") - System.deleteDirectory("vs0:/vsh") - System.extractZIP("app0:app.zip","vs0:") - System.extractZIP("app0:data.zip","vs0:") - System.extractZIP("app0:sys.zip","vs0:") - System.extractZIP("app0:tool.zip","vs0:") - System.extractZIP("app0:vsh.zip","vs0:") - System.extractZIP("app0:shell.zip","ur0:") - System.launchEboot("app0:reboot.bin") - - - -end - -end -if System.getBatteryPercentage() < 25 then - - Graphics.initBlend() - Screen.clear() - Graphics.debugPrint(5, 5, "Battery Is Under 25% Cannot Install.", white) - Graphics.termBlend() - -end