@Ilya
Quote: "How long do you think you need to make this game?"
Probably awhile, even after i finish making the editor, i still need to make all the 3d models for the game...thats going to take awhile, unless i get lazy and start using chubby style character haha
@Mind Storm 101
HAHAHA, ur rpg is really good too...mine feel small compare to urs haha
@N30F15H
Quote: "how did u do the GUI (with blue or make it urself or what?)"
ya, as Ilya said, i did the GUI myself, its a set of functions that do the gui automatically...massive sprite..is all i can say..HAHA
@Indian Homie G
Yep, used the method that walaber said. I use sprite and alpha for fadein and fade out
function Fadein(speed)
alplvl = 0
set sprite alpha Fadesprite,0
repeat
alplvl = alplvl + speed
set sprite alpha Fadesprite,alplvl
sync
until alplvl = 255
ink RGB(255,255,255),RGB(255,255,255)
endfunction
function Fadeout(Speed)
alplvl = 255
set sprite alpha Fadesprite,255
repeat
alplvl = alplvl - speed
set sprite alpha Fadesprite,alplvl
sync
until alplvl = 0
endfunction
Hope this give u an idea how i made the fade screen cus the gamma way only works on full exclusion mode.
Thanks for all ur comments all! hope to have another update soon! haha