24 lines
497 B
Plaintext
24 lines
497 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: ka_weapon_back5.nss
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
move a placeable weapon object backwards by 1 meter.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Karl Adamaitis
|
|
//:: Created On:
|
|
//:://////////////////////////////////////////////
|
|
|
|
|
|
#include "KA_I_WEAPON"
|
|
|
|
|
|
void main()
|
|
{
|
|
// identify the weapon commander
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
KaWeaponMove(OBJECT_SELF, oPC, -5);
|
|
}
|