Isto é uma pré-visualização de um tema em Hitskin.com
Instalar o tema • Voltar para a ficha do tema
[Netplay Crystal] Breathe Global System
2 participantes
Aldeia RPG :: RPG Maker :: Rpg Maker XP :: Netplays :: Scripts para netplays
Página 1 de 1
[Netplay Crystal] Breathe Global System
Breathe Global System
RD12 VXA
convert by eek XP
convert by eek XP
Intro
I'm not really sure this script will be useful, but for me it's useful, check videos
Videos
https://gfycat.com/bitesizedtenseamericanquarterhorse
Script
- Código:
#:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=
#|Autor: RD12| Animação de Respirar
#----------------------------------------------------------------------------------------
# Edit: eek
#Faz com que os characters tenham uma animação de respirar tornando o jogo
#mais realístico
#:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=:=
#Não é necessário gráfico deles respirando.
#Para eventos não respirar, bote no comentario: off_anim
class Sprite_Character < RPG::Sprite
alias :anim_update_bitmap :update
def update
anim_breathe
anim_update_bitmap
end
def anim_breathe
initialize_vars if @contador.nil?
@contador += 1
@rand_time[@character.id] = rand(20) if @rand_time[@character.id].nil?
if !$anim_off.include?(@character.id)
if @contador == 70+@rand_time[@character.id]
self.zoom_y = 1.03
end
if @contador >= 110+@rand_time[@character.id]
if self.zoom_y > 1
self.zoom_y -= 0.01
else
@contador = 0
end
end
end
anim_update_bitmap
end
def initialize_vars
@contador = 0
@rand_time = []
end
end
class Sprite_NetCharacter < RPG::Sprite
alias :anim_update_bitmap :update
def update
anim_breathe
anim_update_bitmap
end
def anim_breathe
initialize_vars if @contador.nil?
@contador += 1
@rand_time[@character.id] = rand(20) if @rand_time[@character.id].nil?
if !$anim_off.include?(@character.id)
if @contador == 70+@rand_time[@character.id]
self.zoom_y = 1.03
end
if @contador >= 110+@rand_time[@character.id]
if self.zoom_y > 1
self.zoom_y -= 0.01
else
@contador = 0
end
end
end
anim_update_bitmap
end
def initialize_vars
@contador = 0
@rand_time = []
end
end
$anim_off = []
class Game_Event < Game_Character
alias rd12_refresh refresh
def refresh
rd12_refresh
return if @list == nil
for cmd in @list
if cmd.code == 108 or cmd.code == 408
comentario = cmd.parameters[0]
if comentario == "off_anim"
$anim_off << @event.id
end
end
end
end
end
thank you RD12 for creating this script
_________________
eek- Novato
- Mensagens : 21
Créditos : 1
Re: [Netplay Crystal] Breathe Global System
How can ı use for vxa?
Geynecmi- Novato
- Mensagens : 25
Créditos : 12
Ficha do personagem
Nível: 1
Experiência:
(0/0)
Vida:
(30/30)
Tópicos semelhantes
» [Netplay Crystal] Creative Credits system
» Script System Pet Global
» netplay crystal
» Netplay Crystal
» Netplay Crystal
» Script System Pet Global
» netplay crystal
» Netplay Crystal
» Netplay Crystal
Aldeia RPG :: RPG Maker :: Rpg Maker XP :: Netplays :: Scripts para netplays
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos
|
|