Reply to Re: How?
If you don't have an account, just leave the password field blank.
Attaching a script to "1000" is a way of making the script 'follow' the player without the script dying when you go to a new screen. This is used in Crosslink for the poison.
It would look like this:
void main( void )
{
script_attach(1000);
<script goes here>
}
Then that script would be active wherever the player goes. When you want to get rid of it, you have to use kill_this_task.
It would look like this:
void main( void )
{
script_attach(1000);
<script goes here>
}
Then that script would be active wherever the player goes. When you want to get rid of it, you have to use kill_this_task.






