24 lines
509 B
Plaintext
24 lines
509 B
Plaintext
//::///////////////////////////////////////////////
|
|
//:: ka_weapon_c5.nss
|
|
//:://////////////////////////////////////////////
|
|
/*
|
|
rotate placeable weapon object clockwise 5 degrees.
|
|
*/
|
|
//:://////////////////////////////////////////////
|
|
//:: Created By: Karl Adamaitis
|
|
//:: Created On: Aug 30, 2002
|
|
//:://////////////////////////////////////////////
|
|
|
|
|
|
#include "KA_I_WEAPON"
|
|
|
|
|
|
void main()
|
|
{
|
|
// identify the weapon commander
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
KaWeaponRotate(OBJECT_SELF, oPC, 5.0);
|
|
}
|