The Dink Network

Reply to Re: help making quest scripts!

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:
 
 
May 23rd 2003, 08:06 AM
fish.gif
Simeon
Peasant He/Him Netherlands
Any fool can use a computer. Many do. 
First of all, it should be:

make_global_int("&story", 0);

in main.c

Then, you should use

kill_cur_item();

instead of sp_kill(&current_sprite, 1);

And, you could also do it like this:

void talk(void)
{
if (&story == 1)
{
//conversation
&story = 2;
}
if (&story == 0)
{
//conversation
&story = 1;
}
}