Tp
Joined: 16 Oct 2006 Posts: 0
|
Posted: Mon Oct 16, 2006 5:33 am Post subject: no text in textbox... |
|
|
Hi geezers/ets...I just downloaded OHRRPGCE last week,it works fine(pentium 2 xp),but for this,I did the script tutor(many times) compiled it with HSSED,put it in special script plots,'New Game' etc,when ever I open RPG.EXE and run PSTUTOR the text box comes up minus the text,but I can see the other text in the tutorial, include, plotscr.hsd
include, pstutor.hsi
define script (1,Hello World,none)
script, Hello World, begin
show text box (1)
end. |
|
TwinHamster ♫ Furious souls, burn eternally! ♫

Joined: 07 Mar 2004 Posts: 1352
|
Posted: Mon Oct 16, 2006 7:22 am Post subject: |
|
|
Every 'show text box()' command needs a 'wait for text box' counterpart.
So the script should show up as:
Code: |
define script (1,Hello World,none)
script, Hello World, begin
show text box (1)
wait for text box
end
|
|
|