@Guilherme To fazendo aki ja do edit se tiver algum pedido de script só falar
uma pergunta, pode ser de quando for 10 minutos antes de começar avisar no chat? e quando começar dar um print na tela falando que o torneio vai começar?
@Lupus eita fui ver agora o que eu coloquei ali deu erro :S pega esse agora
_________________
Obs:: Quando vc sai do jogo não salva que vc ta no torneio eu ja vo encinar como fazer pra salvar pera ae
uma pergunta, pode ser de quando for 10 minutos antes de começar avisar no chat? e quando começar dar um print na tela falando que o torneio vai começar?
@Lupus eita fui ver agora o que eu coloquei ali deu erro :S pega esse agora
- Código:
module Configh
##########Configs###############
#Mostrar o dia? true = sim false = nao
Dia = true
#Cor da palavra Horas e da palavra Dia
Corh = Color.new(255, 10, 20)
#Cor das horas(dos numeros) e do dia(o numero)
Cornh = Color.new(0,0,0)
#Vai piscar?
Pisc = true
#Se for piscar coloque a segunda cor
#Segunda cor da palavra hora e da palavra dia
Corh2 = Color.new(0, 0, 255)
#Segunda cor das horas(dos numeros) e do dia(o numero)
Cornh2 = Color.new(255, 0, 0)
################################
end
class Horario < Window_Base
def initialize
super(80,50,180,100)
self.contents = Bitmap.new(self.width-32, self.height-32)
self.back_opacity = 0
self.windowskin = RPG::Cache.windowskin("Blank")
if Configh::Pisc == true
@pisch = 0
end
end
def refresh
self.contents.clear
$time = Time.new
#Tamanho da letra pode mudar :D
self.contents.font.size = 15
if Configh::Dia == true
$time = [$time.sec, $time.min, $time.hour, $time.day]
text = sprintf("%02d: %02d: %02d", $time[2], $time[1], $time[0])
if Configh::Pisc == true
@pisch += 1
if @pisch == 1
self.contents.font.color = Configh::Corh2
else
self.contents.font.color = Configh::Corh
end
self.contents.draw_text(10, 10, 100, 32, "Horas: ")
if @pisch == 1
self.contents.font.color = Configh::Cornh2
else
self.contents.font.color = Configh::Cornh
end
self.contents.draw_text(45, 10, 120, 32, text.to_s)
if @pisch == 1
self.contents.font.color = Configh::Corh2
else
self.contents.font.color = Configh::Corh
end
self.contents.draw_text(10, 25, 100, 32, "Dia: ")
if @pisch == 1
self.contents.font.color = Configh::Cornh2
else
self.contents.font.color = Configh::Cornh
end
self.contents.draw_text(35, 25, 100, 32, $time[3].to_s)
if @pisch == 2
@pisch = 0
end
else
text = sprintf("%02d: %02d: %02d", $time[2], $time[1], $time[0])
self.contents.font.color = Configh::Corh
self.contents.draw_text(10, 10, 100, 32, "Horas: ")
self.contents.draw_text(10, 25, 100, 32, "Dia: ")
self.contents.font.color = Configh::Cornh
self.contents.draw_text(45, 10, 120, 32, text.to_s)
self.contents.draw_text(35, 25, 100, 32, $time[3].to_s)
end
else
time = [time.sec, time.min, time.hour]
text = sprintf("%02d: %02d: %02d", $time[2], $time[1], $time[0])
self.contents.font.color = Configh::Corh
self.contents.draw_text(10, 10, 100, 32, "Horas: ")
self.contents.font.color = Configh::Cornh
self.contents.draw_text(45, 10, 120, 32, text.to_s)
end
end
end
class Scene_Map
alias hor_main main
def main
@hor = Horario.new
hor_main
@hor.dispose
end
alias hor_update update
def update
hor_update
if Graphics.frame_count % 5 == 0
@hor.refresh
end
end
end
_________________
Obs:: Quando vc sai do jogo não salva que vc ta no torneio eu ja vo encinar como fazer pra salvar pera ae