HUNTERDom Ago 19, 2012 11:06 pm
Super Usuario
Bueno hoy les traigo un Script que lo que hace es Simple
le pone la oapcidad a las ventanas del RPG MAKER a 255
es un Script sencillo y eficaz.
VISTA PREVIA:
SCRIPT:
Eso es todo un saludo.
le pone la oapcidad a las ventanas del RPG MAKER a 255
es un Script sencillo y eficaz.
VISTA PREVIA:
SCRIPT:
- Código:
#-------------------------------------------------------------------------------
########################NOMBRE:OPACIDAD DE VENTANA 255##########################
########################AUTOR DEL SCRIPT:HUNTER#################################
########################AUTOR WEB SITE:http://www.hunter-maker.net/#############
#===============================================================================
class Window_Base < Window
#-------------------------------------------------------------------------------
module HUNTER
#===============================================================================
#-------------------------------------------------------------------------------
#INICIO DE LA OPACIDAD DE VENTENA
#===============================================================================
#Seleccione la opacidad de la ventana
OPACITY = 255
end
#-------------------------------------------------------------------------------
alias hunter_initialize initialize
def initialize(x, y, width, height)
super
self.windowskin = Cache.system("Window")
self.back_opacity = HUNTER::OPACITY
update_padding
update_tone
create_contents
@opening = @closing = false
end
end
#-------------------------------------------------------------------------------
#Pixeles de Ventada/WARNING!!! No modifiquen esta parte.
#===============================================================================
def pixel_window(n)
windowskin.get_pixel(64 + (n % 8) * 8, 96 + (n / 8) * 8)
end
#--------------------------------------------------------------------------
def pending_color
windowskin.get_pixel(80, 80)
end
# FIN
Eso es todo un saludo.