The Dink Network

Reply to Multiple Sprites

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:
 
 
October 26th 2007, 09:53 PM
sob_scorpy.gif
DinkDude95
Peasant He/Him Australia
The guy with the cute D-Mod. 
Okay, you know how you do the int &blah = create_sprite(blah); or &blah = create_sprite(blah); thing? Well, is it possible to have multiple sprites active on the same integer?
i.e.
void main ( void )
{
int &blah = create_sprite(200, 200, 16, 341, 1);
&blah = create_sprite(200, 200, 16, 343, 1);
}

Or, what if you do something like this:

void main ( void )
{
int &blah = create_sprite(200, 200, 16, 341, 1);
// Conversation
fade_down();
&player_map = 601
load_screen();
draw_screen();
wait(100);
fade_up();
&blah = create_sprite(250, 250, 16, 343, 1);
}

Will the first sprite just carry over screens? Will the second sprite show up?