Can be a chair
Member
Hello all!
I would like to know if is possible to show more than 20 pictures in RPG maker VX, i searched a lot and couldn't find an answer.
I tried to change the Spriteset_Map script, in the picture part:
I changed the '20' to a higher number and i get an error in Sprite_Picture related to name, I didn't understood at all.
The reason to change the number 20 is because 20 is the maximum number of pictures, and I though this 20 would be the same thing =/
If anyone can answer me, I would be very grateful :smile:
I would like to know if is possible to show more than 20 pictures in RPG maker VX, i searched a lot and couldn't find an answer.
I tried to change the Spriteset_Map script, in the picture part:
Code:
Â
def create_pictures
  @picture_sprites = []
  for i in 1..[color=#FF0000]20[/color]
   @picture_sprites.push(Sprite_Picture.new(@viewport2,
    $game_map.screen.pictures[i]))
  end
 end
Â
I changed the '20' to a higher number and i get an error in Sprite_Picture related to name, I didn't understood at all.
The reason to change the number 20 is because 20 is the maximum number of pictures, and I though this 20 would be the same thing =/
If anyone can answer me, I would be very grateful :smile: