Reply to Re: Key Scripts
If you don't have an account, just leave the password field blank.
Keycodes.
If you have a 1.08 RC, there's a list of them as well in dinkc.chm.
F key = key-70.c
H key = key-72.c
S key = key-83.c
If you wanted to use other keys, you can look them up in the file I linked to. The script should be in the main() proc:
key-70.c
void main( void )
{
say("Feats!",1);
kill_this_task();
//You'll regret leaving out the kill_this_task()
//Scripts eating up memory and such nasty things.
}
If you have a 1.08 RC, there's a list of them as well in dinkc.chm.
F key = key-70.c
H key = key-72.c
S key = key-83.c
If you wanted to use other keys, you can look them up in the file I linked to. The script should be in the main() proc:
key-70.c
void main( void )
{
say("Feats!",1);
kill_this_task();
//You'll regret leaving out the kill_this_task()
//Scripts eating up memory and such nasty things.
}