LoD_PRC8/_module/nss/ka_weapon_cc10.nss
Jaysyn904 94990edc60 Initial Upload
Initial Upload
2023-09-21 21:20:34 -04:00

24 lines
522 B
Plaintext

//::///////////////////////////////////////////////
//:: ka_weapon_cc10.nss
//:://////////////////////////////////////////////
/*
rotate placeable weapon object counter clockwise 10 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, -10.0);
}