02-13-2019, 07:31 PM
(This post was last modified: 02-19-2019, 10:09 PM by warisheck.
Edit Reason: Merging posts.
)
something interesting: naesala's tex folders in his files include the generic red manakete's dragon form. this could imply that he was the first beast unit to be designed, and the dragon was used as a placeholder before he was completed.
perhaps he was also meant to be a red unit at first, since it does use the red manakete, rather than the blue or green.
in other news, i'm getting close to 50 sheets! this is great progress, although i'm certainly nowhere near the contribution level of some of the other heroes rippers.
taking a small break from graphics to work on sounds, since i can only work on the same thing for so long lol
took me a lot of trial and error since i'm no real programmer, but i wrote a quick ruby file to automatically extract .ckb files for a folder (used ingame for sound) using cricket audio's cktool.
i'll put it here in case anyone wants to help with extracting- the .rb file and the sounds you want to extract should be in the same directory as cktool.exe.
perhaps he was also meant to be a red unit at first, since it does use the red manakete, rather than the blue or green.
in other news, i'm getting close to 50 sheets! this is great progress, although i'm certainly nowhere near the contribution level of some of the other heroes rippers.
taking a small break from graphics to work on sounds, since i can only work on the same thing for so long lol
took me a lot of trial and error since i'm no real programmer, but i wrote a quick ruby file to automatically extract .ckb files for a folder (used ingame for sound) using cricket audio's cktool.
i'll put it here in case anyone wants to help with extracting- the .rb file and the sounds you want to extract should be in the same directory as cktool.exe.
Code:
'cktool.exe'
files = Dir.glob("*.ckb")
files.each do |yeet|
system("cktool.exe extract #{yeet}")
end