[XP] [Resolved] Resize Actor Script

Started by LiTTleDRAgo, December 19, 2010, 04:12:28 am

Previous topic - Next topic

LiTTleDRAgo

December 19, 2010, 04:12:28 am Last Edit: December 19, 2010, 11:02:25 pm by LiTTleDRAgo
Hello everyone, do anyone have a script that can change the actor size to small / big?
Of course have to compatible with blizz abs

nathmatt

like a OV script ? makes the player smaller for world maps.
Join Dead Frontier
Sorry, I will no longer be scripting for RMXP. I may or may not give support for my scripts. I don't have the will to script in RGSS anymore.
My script


LiTTleDRAgo

Quote from: nathmatt on December 19, 2010, 06:44:36 am
like a OV script ? makes the player smaller for world maps.


yeah, something like that...

nathmatt

i made this as a OV script

Spoiler: ShowHide
#:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=
# 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
  end
end
Join Dead Frontier
Sorry, I will no longer be scripting for RMXP. I may or may not give support for my scripts. I don't have the will to script in RGSS anymore.
My script


LiTTleDRAgo

Thank you very much, I'll use it in my game  :)