The rpg-maker-xp tag has no usage guidance.
0
votes
1answer
97 views
How can i remove the margins in Window_Base?
So i am remaking Window_Status for my game where i have the character battler displayed in the background. bellow is the portion of the script which adds the battler image taken from def refresh (the ...
0
votes
0answers
18 views
How can i format and indent obj.inspect in an outputted file?
So i want to examine the data for some of the classes like $data_enemies and at the moment i can output it to a file like this
file = File.open("enemies_dump.txt", "wb")
Marshal.dump($data_enemies....
1
vote
1answer
2k views
How can I copy/move a file from a folder to another with RGSS?
I've been trying to do this but I can only find Ruby answers. I'm trying to move or copy a file from, say, Game Directory/Graphics/Pictures/file.png to Game Directory/file.png. How can I do this in ...
0
votes
1answer
65 views
How can I get the width and height of a picture?
I'm trying to make a script on RPG Maker XP that needs the width and height of an image to do some calculations. I tried @picture.bitmap.widthand @picture.bitmap.height but it returned the width and ...
1
vote
0answers
281 views
Moving while doing loop animation in RPGMaker
I made a custom class to display character portrait in RPGMaker XP
Here is the class :
class Poser
attr_accessor :images
def initialize
@images = Sprite.new
@images.bitmap = RPG::Cache....
2
votes
1answer
782 views
multi-dimension array problem in RGSS (RPG Maker XP)
This is my first day code script in RMXP. I read tutorials, ruby references, etc and I found myself stuck on a weird problem, here is the scenario:
I made a custom script to display layered images
...
0
votes
1answer
2k views
RPG Maker (Issue) RGSS_RTP STANDARD
the issue i am having is rpg maker is installed onto my computer as well a rgss-rtp standard and when i go to run RPG maker it says RGSS-RTP STANDARD not installed?
how can i get it to run?
2
votes
2answers
8k views
RPG Maker XP Style (2D Top-Down RPG) Sprites and Tilesets Collection
I'm creating a bunch of games similar in style to RPG Maker XP -- 2D, top-down style adventure/action/RPG. I used RPG Maker XP in the past, and their sprites are great. Their content is packaged into ...