25 lines
508 B
Plaintext
25 lines
508 B
Plaintext
|
//::///////////////////////////////////////////////
|
||
|
//:: ka_weapon_forw1.nss
|
||
|
//:://////////////////////////////////////////////
|
||
|
/*
|
||
|
move a placeable weapon object forward by 1 meter.
|
||
|
*/
|
||
|
//:://////////////////////////////////////////////
|
||
|
//:: Created By: Karl Adamaitis
|
||
|
//:: Created On: Aug 30, 2002
|
||
|
//:://////////////////////////////////////////////
|
||
|
|
||
|
|
||
|
#include "KA_I_WEAPON"
|
||
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
// identify the weapon commander
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
KaWeaponMove(OBJECT_SELF, oPC, 1);
|
||
|
|
||
|
}
|