The Dink Network

Reply to Re: Dink Smallwood HD - Lags And Glitches

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
December 10th 2010, 09:09 PM
seth.gif
Seth
Peasant He/Him Japan
 
The HD version is optimized for newer computers (bought in the last six years or so?) for older stuff stick with the old version as it can run in low color modes and doesn't require 3d acceleration at all.

About the bed script, yeah I noticed that too and forgot to fix it. It's not a bug in the engine, I actually broke the script when I was using it to test something else I guess, because after "decompiling" it I see this:

void main(void)
{
}

void talk(void)
{
 if (&story >= 3)
 {
 say("My bed is going to burn up!", 1);
 return;
 }

}

void hit(void)
{
 if (&story >= 3)
 {
 say("It's hot!", 1);
 return;
 }
 say("Die, stupid bed!", 1);
}


The "talk" text (when not burning) is actually missing. Oops.