Started by LiTTleDRAgo, December 19, 2010, 04:12:28 am
Quote from: nathmatt on December 19, 2010, 06:44:36 amlike a OV script ? makes the player smaller for world maps.
#:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=# Over View by Nathmatt# Version: 1.00# Type: ??#:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=# # This work is protected by the following license:# #----------------------------------------------------------------------------# # # # Creative Commons - Attribution-NonCommercial-ShareAlike 3.0 Unported# # ( http://creativecommons.org/licenses/by-nc-sa/3.0/ )# # # # You are free:# # # # to Share - to copy, distribute and transmit the work# # to Remix - to adapt the work# # # # Under the following conditions:# # # # Attribution. You must attribute the work in the manner specified by the# # author or licensor (but not in any way that suggests that they endorse you# # or your use of the work).# # # # Noncommercial. You may not use this work for commercial purposes.# # # # Share alike. If you alter, transform, or build upon this work, you may# # distribute the resulting work only under the same or similar license to# # this one.# # # # - For any reuse or distribution, you must make clear to others the license# # terms of this work. The best way to do this is with a link to this web# # page.# # # # - Any of the above conditions can be waived if you get permission from the# # copyright holder.# # # # - Nothing in this license impairs or restricts the author's moral rights.# # # #----------------------------------------------------------------------------# #:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=OV_Maps = []class Sprite_Character < RPG::Sprite alias ov_initialize initialize def initialize(v, c = nil) ov_initialize(v,c) if OV_Maps.include?($game_map.map_id) self.zoom_x = 0.5 self.zoom_y = 0.5 end endend