mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 13:29:54 +00:00
Displays messages for the Desktop screen, can be called with "@desktop" just like how "@ed" calls ed messages.
13 lines
384 B
Ruby
13 lines
384 B
Ruby
module EdText
|
|
def self.blue_understand
|
|
Oneshot.msgbox Oneshot::Msg::YESNO, tr("Do you understand what this means?")
|
|
end
|
|
def self.info(text)
|
|
text.gsub!("\\p", $game_oneshot.player_name)
|
|
Oneshot.msgbox Oneshot::Msg::INFO, tr(text)
|
|
end
|
|
def self.yesno(text)
|
|
text.gsub!("\\p", $game_oneshot.player_name)
|
|
Oneshot.msgbox Oneshot::Msg::YESNO, tr(text)
|
|
end
|
|
end
|