Well im trying to make my own CMS to kind of get the hang of Rmxp..but I keep running into problem's..but I finally got most of it to work now I wanna add a bitmap to it but I cant erase the bitmap afterward's..
I call the method in a Event like this..
1.How do I pause the whole game for a few seconds inside of a script..
2.im pretty sure the error is in my code but how do I set the Width and
Height of a bitmap..
3.How do I dispose of the Bitmap..
Code:
class Profile<Sprite_Picture
def initialize(profile)
@img = Sprite.new
@img.bitmap = RPG::Cache.picture(profile)
@img.x=75
@img.y=275
end
end
I call the method in a Event like this..
Code:
@profile=Profile.new("Eshe")
1.How do I pause the whole game for a few seconds inside of a script..
2.im pretty sure the error is in my code but how do I set the Width and
Height of a bitmap..
3.How do I dispose of the Bitmap..