RPG Maker Plugin version: 1.20.80
Description: In VX Ace games devs used Kernel.print
and Kernel.p
to output info to the console. But now, in 1.20.80, these commands act like msgbox
. Instead of just logging the text, they pop up message boxes.
Solution: temporary preload workaround
if MKXP.rpg_version == 3
def p *args
args.each { |arg| MKXP.puts(arg) }
end
alias print p
end