The Dink Network

Reply to Re: DinkC Reference Guide Now Available

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:
 
 
February 22nd, 04:06 PM
custom_robj.png
Robj
Jester He/Him Australia
You feed the madness, and it feeds on you. 
Hmmm.. I was just able to succesfully do set_frame_frame with init in DinkHD.

This worked by copying frame 1 of the rock sequence into frame 11 (which was the first unused frame). Then when talking to the rock, I did create_sprite to actually create it, and the sprite did in fact appear:

void main(void)
{
 init("set_frame_frame 95 11 95 1");
}

void talk(void)
{
 create_sprite(200, 200, 0, 95, 11);
}


So looks like DinkHD does accept other ini commands.

@YeoldeDink I think the line above that comment you linked in the RTDink source probably handles the rest of the commands?
This one, which is the function directly below.

Not sure why that comment is there tho, bit misleading