The Dink Network

Reply to more problems

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 4th 2011, 06:32 AM
duckdie.gif
welovefudge
Peasant He/Him Russia
I hope life isn’t a joke, because I don’t get it. 
im supposed to create a trader and make the sprite(not the trader) count the no. of times i hit it
whats wrong with the script?

void main(void)
{
int &a;
&a=0;
int&trader=create_sprite(300,150,0,381,1);
}

void talk(void)
{
freeze(1);
freeze(&current_sprite);
say_stop("Why did you call me?",1)
say_stop("`1Can you do me a favour?",&current_sprite);
say_stop("What now?",1);
say_stop("`1........",&current_sprite);
say_stop("Ok ok what do i have to do?",1);

unfreeze(&current_sprite);
unfreeze(1);
}
void hit(void)
{
&a+=1;
say_stop("ok",&current_sprite);
say_stop("u hit me &a times ^^",&current_sprite);
}