Reply to Re: Say Scripts
If you don't have an account, just leave the password field blank.
The line:
say("`%You can't go there Dink!", &bs1-fbp);
won't work, the easy way to fix this is adding a new global variable (&var1 by example).
Then you add in the script bs1-fbp:
void main(void)
{
&var1 = ¤t_sprite;
}
So you can replace
say("`%You can't go there Dink!", &bs1-fbp);
with:
say("`%You can't go there Dink!", &var1);
say("`%You can't go there Dink!", &bs1-fbp);
won't work, the easy way to fix this is adding a new global variable (&var1 by example).
Then you add in the script bs1-fbp:
void main(void)
{
&var1 = ¤t_sprite;
}
So you can replace
say("`%You can't go there Dink!", &bs1-fbp);
with:
say("`%You can't go there Dink!", &var1);