I just trying to get it were it stays something like VCS Device installed or LCS Device Installed text show for a few secs.
and still cant figure out how to remove them off the flash:0. So I made it 0kb when they uninstall it.PHP-Code:Red = Color.new(255, 0, 0)
Green = Color.new(45, 157, 65)
darkOr = Color.new(194, 118, 30)
yellower = Color.new(255, 242, 135)
White=Color.new(255,255,255)
function PrintCentered(y,string,color)
screen:print( 240 - (string.len(string)*8) / 2 ,y,string,color);
end
Background = Image.load("bg.png")
System.Unassign("flash0:" )
System.Assign("flash0:", "lflash0:0,0", "flashfat0:")
while true do
current = 1
oldpad = Controls.read()
while true do
pad = Controls.read()
screen:blit(0,0,Background)
PrintCentered(3,"GTA Cheat Device Pack 3.03 OE V3",darkOr)
PrintCentered(18,"Pack Made By Yolarry. Cheat Device Made By Edison Carter",darkOr)
screen:print(115, 96, "Install Vice City Stories Cheat", White)
screen:print(115, 106, "Install Liberty City Stories Cheat", White)
screen:print(115, 116, "Uninstall Vice City Stories Cheat", White)
screen:print(115, 126, "Uninstall Liberty City Stories Cheat", White)
screen:print(30, 245, "Dark_AleX 3.03 OE-C Only!", yellower)
if current == 1 then
screen:print(115, 96, "Install Vice City Stories Cheat", Green)
end
if current == 2 then
screen:print(115, 106, "Install Liberty City Stories Cheat", Green)
end
if current == 3 then
screen:print(115, 116, "Uninstall Vice City Stories Cheat", yellower)
end
if current == 4 then
screen:print(115, 126, "Uninstall Liberty City Stories Cheat", yellower)
end
if pad:up() and oldpad:up() ~= pad:up() then
current = current-1
end
if pad:down() and oldpad:down() ~= pad:down() then
current = current+1
end
if current == 6 then
current = 1
end
if current == 0 then
current = 4
end
if pad:cross() and current == 1 then
System.writeFile("ms0:/PSP/GAME150/GTACD/restore/gb3s1518.bwfon","flash0:/font/gb3s1518.bwfon","no")
System.writeFile("ms0:/PSP/GAME150/GTACD/vcs/vcscheatdevice.prx","flash0:/kn/vcscheatdevice.prx","no")
System.writeFile("ms0:/PSP/GAME150/GTACD/vcs/pspbtcnf_game.txt","flash0:/kn/pspbtcnf_game.txt","no")
end
if pad:cross() and current == 2 then
System.writeFile("ms0:/PSP/GAME150/GTACD/restore/gb3s1518.bwfon","flash0:/font/gb3s1518.bwfon","no")
System.writeFile("ms0:/PSP/GAME150/GTACD/lcs/lcscheatdevice.prx","flash0:/kn/lcscheatdevice.prx","no")
System.writeFile("ms0:/PSP/GAME150/GTACD/lcs/pspbtcnf_game.txt","flash0:/kn/pspbtcnf_game.txt","no")
end
if pad:cross() and current == 3 then
System.writeFile("ms0:/PSP/GAME150/GTACD/restore/gb3s1518.bwfon","flash0:/font/gb3s1518.bwfon","no")
System.removeFile("flash0:/kn/lcscheatdevice.prx")
System.writeFile("ms0:/PSP/GAME150/GTACD/restore/pspbtcnf_game.txt","flash0:/kn/pspbtcnf_game.txt","no")
end
if pad:cross() and current == 4 then
System.writeFile("ms0:/PSP/GAME150/GTACD/restore/gb3s1518.bwfon","flash0:/font/gb3s1518.bwfon","no")
System.writeFile("ms0:/PSP/GAME150/GTACD/restore/lcscheatdevice.prx","flash0:/kn/lcscheatdevice.prx","no")
System.writeFile("ms0:/PSP/GAME150/GTACD/restore/pspbtcnf_game.txt","flash0:/kn/pspbtcnf_game.txt","no")
end
if pad:square() then
Image:save("screenshot.png")
end
if pad:start() then
System.Quit()
end
screen.waitVblankStart()
screen.flip()
oldpad = pad
end
end
