The Dink Network

Reply to Re: help windinkedit

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:
 
 
September 7th 2007, 10:47 PM
pillbug.gif
pillbug
Peasant He/Him United States
Love! True love! 
1. Right click on a sprite and hit copy, and then you can paste it anywhere. If you mean add a sprite, hit the R button then the E button and pick one.

2. Select a sprite on a screen and hit the Delete button.

3. You mean go into a certain screen? Click a screen you want.
Or do you mean go to the undetailed mini-map with the red and purple squares? Then just reset your Editor. (Leave it and come back.)

4. Right click on a sprite and where it says SCRIPT do the following:
Name it something like BLAH.c and hit EDIT. If it says that script does not exist or whatever, just hit yes. The stuff in bold is unimportant, but helps a good script.

void talk(void)
{
freeze(1);
freeze(¤t_sprite);
say_stop("Hello.",1);
wait(200);
say_stop("`1Hello. Who are you?",¤t_sprite);
unfreeze(1);
unfreeze[¤t_sprite);
}

Void talk void means the sprite will react to spacebar. freeze( commands freeze Dink and the sprite. `1 Is a color code. Wait(200); means to wait between each sentence.

5. Just change the script above to void hit(void) and it will react to Dink punching it.

For better directions, try this
Hope I could help.