@win = Window_Base.new(374, 247, 170, 50)
@text = "\\V[87]"
@win.draw_text_ex(0,0,@text)
Put this in a script call.
\\V[87]
will show whatever number variable 87 has stored.
![unnamed.png unnamed.png](https://m.gjcdn.net/content/750/9579278-yjyr2tjp-v4.png)
It can also be replaced with words.
@text = "words"
The 4 numbers next to Window_Base.new
are x, y, width, height.
make sure to dispose the window after you don't need it anymore, otherwise it will stay there forever.@win.dispose
0 comments