Simbolos especiais nas Mensagens!
Exemplo☺▲▼◄►♀♂@●∞◊
- Spoiler:
#------------------------------------------------------------------------------#
# Special Message Symbols
# by: game_guy
#------------------------------------------------------------------------------#
=begin
Displays special message symbols. Recommended to use Blizz's tons of add ons font
override to increase teh size to 24-26. Its up to you.
\s = Smiley ☺
\u = Up arrow
\d = down arrow
\l = left arrow
\r = right arrow
\m = male sign
\f = female sign
\a = @ sign
\b = bullet
\i = infinity sign
\j = jewel/diamond
\x = displays player x
\y = displays character y
Just type thos message commands in a message box and it'll display the signs.
=end
class Window_Message < Window_Selectable
alias refresh_special_symbols_later refresh
def refresh
if $game_temp.message_text != nil
text = $game_temp.message_text
begin
last_text = text.clone
text.gsub!(/\\[Ss]/) { "☺" }
last_text = text.clone
text.gsub!(/\\[Uu]/) { "▲" }
last_text = text.clone
text.gsub!(/\\[Dd]/) { "▼" }
last_text = text.clone
text.gsub!(/\\[Ll]/) { "◄" }
last_text = text.clone
text.gsub!(/\\[Rr]/) { "►" }
last_text = text.clone
text.gsub!(/\\[Mm]/) { "♀" }
last_text = text.clone
text.gsub!(/\\[Ff]/) { "♂" }
last_text = text.clone
text.gsub!(/\\[Aa]/) { "@" }
last_text = text.clone
text.gsub!(/\\[Bb]/) { "●" }
last_text = text.clone
text.gsub!(/\\[Ii]/) { "∞" }
last_text = text.clone
text.gsub!(/\\[Jj]/) { "◊" }
last_text = text.clone
text.gsub!(/\\[Xx]/) { $game_player.x }
last_text = text.clone
text.gsub!(/\\[Yy]/) { $game_player.y }
end until text == last_text
end
refresh_special_symbols_later
end
end
Agora a pergunta mas Komuro como adicionar esses simbolos?
Segue a resposta:
Coloque esses códigos nas mensagens para aparecer o respectivo simbolo:
- Spoiler:
\s = Smiley ☺
\u = Seta pra Cima
\d = Seta pra Baixo
\l = Seta para Direita
\r = Seta para Esquerda
\m = Simbolo Masculino
\f = Simbolo Feminino
\a = @
\b = Ponto Preto "não é racismo é preto mesmo"
\i = Simbolo infinito
\j = Simbolo de Diamante ou Ouro no Baralho!
Mas Komuro quero Adicionar mais simbolos como faz?
Resposta
Encontre no script a seguinte linha
- Código:
text.gsub!(/\\[Jj]/) { "◊" }
last_text = text.clone
- Código:
text.gsub!(/\\[[b]comando do simbolo[/b]]/) { [b]"Simbolo Aqui!"[/b] }
last_text = text.clone
É isso pessoal espero que tenham gostado!
Credits:
Criador = game_guy
Disponibilizador = Komuro Takashi!
SS
- Spoiler: