An early alpha of a fighting in progress
http://www.savefile.com/files3.php?fid=9585152
somehow doesnt work with 0.15, but does with 0.11
just some basic moves like punching and kicking, intro and victory pose
only one character
this is just a test
Fighting game test
Moderators: Shine, Insert_witty_name
Memory???
Hi...
Well i only can play this game in Lua Player Windows Emulator...
When i try in PSP (v1.0) e get this error:
"Image.load: Error loading image."
"Error: No script file found."
is this problem with memory????
soulphalanx can u play?
waiting...
Well i only can play this game in Lua Player Windows Emulator...
When i try in PSP (v1.0) e get this error:
"Image.load: Error loading image."
"Error: No script file found."
is this problem with memory????
soulphalanx can u play?
waiting...
-
- Posts: 35
- Joined: Mon Aug 22, 2005 7:48 am
-
- Posts: 11
- Joined: Thu Dec 29, 2005 12:32 am
I Load the Images with a Function...
That function put the images in Tables.
Something like this:
After loading 50/60 images the Error occurred...
That function put the images in Tables.
Something like this:
Code: Select all
function Load_Images(ImageTbl, directory, numImages)
for i=1, numImages do
ImageTbl[i] = Image.load( "Images/" .. directory.. "/" .. i.. ".png")
end
end