Seer UK 4 Posted April 23, 2012 (edited) There was a script for RMVX that allowed pictures to be displayed statically, following with the map. It was very useful for Parralax mapping... This script however... was not updated for RMVX Ace and as such people have turned to Victors fog script or other scripts... So, I decided to release an update for the script which works (for me at least) with RMVX Ace... So, here's the script! >> #============================================================================== # Fixed Pictures #============================================================================== # Author : Seer UK & OriginalWij # Version : 1.2 # # Credit: Seer UK # OriginalWij (Original RGSS2 Script) #============================================================================== #============================================================================== # To use: # put the tag [FIXED] in the affected picture's filename #============================================================================== #============================================================================== # What this does: # fixes tagged pictures to the map (scrolls with the map) #============================================================================== #============================================================================== # Sprite_Picture #============================================================================== class Sprite_Picture < Sprite #---------------------------------------------------------------------------- # Update [ MOD ] #---------------------------------------------------------------------------- def update update_bitmap update_origin if @picture.name.include?("[FIXED]") self.x = 0 - $game_map.display_x * 32 self.y = 0 - $game_map.display_y * 32 else update_position end update_zoom update_other end end The instructions for it's use are in the comments at the start, it's just the same as the original script by OriginalWij... Place the script in the Materials section! Enjoy! Credits: Seer UK - Updated Script for RMVX Ace OriginalWij - Original script for RMVX Edited April 24, 2012 by Seer UK 1 sanggameboy reacted to this Share this post Link to post Share on other sites
Ginolamantino 6 Posted April 23, 2012 I think Modern Algebra already made one, and it should be on this forum too. Share this post Link to post Share on other sites
Seer UK 4 Posted April 23, 2012 Aah well, I suppose people have more options this way, no harm in posting it if some people find it useful I did try looking beforehand and couldn't find any other than Victors Fog script, but if there is another one that's practically identical then sorry! Share this post Link to post Share on other sites
Ginolamantino 6 Posted April 24, 2012 Nah, don't worry! I just said 'cause you could be curious to see how that one worked. Anyway, if you look the two scripts have nothing in common: check it HERE. 1 Seer UK reacted to this Share this post Link to post Share on other sites
stramin 1 Posted October 20, 2012 You saved my life! I was looking for this script for days Share this post Link to post Share on other sites
PinoyXBalot 1 Posted October 25, 2012 M.A has a better script,"but your`s also" but M.A has more difficult in applying it. Share this post Link to post Share on other sites
Tsukihime 1,487 Posted October 25, 2012 Does it support picture rotation? Share this post Link to post Share on other sites
Rave 14 Posted February 23, 2015 Haven't tested, but it seems that in the code there's nothing preventing from this working with rotation. Share this post Link to post Share on other sites