skip navigation

Welcome, Guest [log in · register]
Cwn Annwn
Search
Page 1 of 1 1
Olorin I’ve got my keypad setup for controlling my SD. 1-9 minus 5 all do ship speed slow;ship direction xxx for corresponding directions because you have to slow down superdreds to turn them. the * speeds you up to flank. / fires fire-launcher, - is ship lookout, + is ship scan, insert is ship fire, del is ship anchor. oh and 5 is ship speed stop.
if someone wanted to it could be easily customized to suit particular needs
this is just how i have mine setup


#CLASS {shipcontrol}
#KEY KEY9 {ship speed slow;ship direction northeast}
#KEY KEY0 {ship fire}
#KEY KEY8 {ship speed slow;ship direction north}
#KEY KEY7 {ship speed slow;ship direction northwest}
#KEY KEY6 {ship speed slow;ship direction east}
#KEY KEY5 {ship speed stop}
#KEY KEY4 {ship speed slow;ship direction west}
#KEY KEY3 {ship speed slow;ship direction southeast}
#KEY KEY2 {ship speed slow;ship direction south}
#KEY KEY1 {ship speed slow;ship direction southwest}
#KEY SUB {ship lookout}
#KEY ADD {ship scan}
#KEY MULT {ship speed flank}
#KEY DIV {ship fire fire-launcher}
#KEY DEC {ship anchor}
#CLASS 0



Last edited on March 26, 2009 07:05pm.
Kritos ‘bout time a ship script was on here.

Credit to the late Zakainen for this one. This will let you control your ship without having to use 2 keys for speed.

#CLASS Shipmovement
#ALIAS shipspeed {
#if (@shipspeed == 0) {ship speed stop}
#if (@shipspeed == 1) {ship speed slow}
#if (@shipspeed == 2) {ship speed half}
#if (@shipspeed == 3) {ship speed full}
#if (@shipspeed == 4) {ship speed flank}
}
#KEY KEY4 {
ship speed stop
ship direction west
shipspeed
}
#KEY KEY5 {ship scan}
#KEY KEY1 {
ship speed stop
ship direction southwest
shipspeed
}
#KEY KEY2 {
ship speed stop
ship direction south
shipspeed
}
#KEY KEY3 {
ship speed stop
ship direction southeast
shipspeed
}
#KEY KEY6 {
ship speed stop
ship direction east
shipspeed
}
#KEY KEY7 {
ship speed stop
ship direction northwest
shipspeed
}
#KEY KEY8 {
ship speed stop
ship direction north
shipspeed
}
#KEY KEY9 {
ship speed stop
ship direction northeast
shipspeed
}
#KEY KEY0 {}
#KEY ADD {
#if (@shipspeed == 4) {#Echo You cannot go any faster!} {
#add shipspeed 1
shipspeed
}
}
#KEY SUB {
#if (@shipspeed == 0) {#echo You cannot go any slower!} {
#add shipspeed -1
shipspeed
}
}
#KEY DEC {
#var shipspeed 0
ship speed stop
ship anchor
}
#KEY CTRL-KEY5 {survey}
#CLASS 0


Last edited on March 27, 2009 06:09pm.
Page 1 of 1 1