Buenas:
Estoy creando un archivo LUA que se ejecute nada mas encender la PSP.
Para eso he usado el Autorun PSP/GAME/BOOT
Bueno al grano:
Estoy intentando hacer que al terminar el sonido se valla al XMB
El codigo que llevo es este:
blue =Color.new(0,0,255)
bu = Sound.load("sound/bu.wav", false)
dead = Image.load("images/dead.png")
local sound = bu
voice = sound:play()
while true do
screen:clear()
pad = Controls.read()
if pad:cross() then
dofile("./script.lua")
end
screen:blit(0,0,dead)
screen:print(200, 100, "Bienvenido Ruben", blue)
screen:print(200,120,"PSP 3.40 OE-A", blue)
screen:flip()
screen.waitVblankStart()
end
-------------------
Yo se hacer que al esperar determinado tiempo se pase a otro .lua
Pero no se para que se pase al XMB...
El codigo de pasarse a otro .lua es este: (creo)
gamestime=gametimer:time()
if gamestime>1000 then time=time - 1 gametimer:reset(0) gametimer:start() end
function timeee()
if time <= 0 then
dofile("./uno.lua")
end
end
timeee()
[
Como se haria esto para ir al XMB?
Gracias de antemano
Saluds