The Dink Network

Reply to Re: Probably insanely basic DinkC question...

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:
 
 
December 21st 2002, 09:01 PM
girl.gif
joshriot
Peasant They/Them United States
keep it real 
: Ok, so I have a script where a portal is created. I create it thus:

: say_stop("'9Here is the portal....", &current_sprite);

: int &portal = create_sprite(199, 202, 6, 169,1); draw_hard_sprite(&portal);

: say_stop("Ok!", 1);

: But in practice, the portal turns out not-hard. What am I doing wrong?

before drawing hardness, make the portal hard

int &portal = create_sprite(199, 202, 6, 169,1)

sp_hard(&portal,1);

draw_hard_sprite(&portal);

say_stop("Ok!", 1);