Shargast_PRC8/_module/Chapter 1/nss/cnr_bash_onused.nss
Jaysyn904 66a0a3e043 Initial commit
Initial commit.
2024-08-03 14:13:18 -04:00

18 lines
463 B
Plaintext

/////////////////////////////////////////////////////////
//
// Craftable Natural Resources (CNR) by Festyx
//
// Name: cnr_bash_onused
//
// Desc: When a player uses a placeable, begin bashing it.
//
// Author: David Bobeck 03Feb03
//
/////////////////////////////////////////////////////////
void main()
{
object oUser = GetLastUsedBy();
object oTarget = OBJECT_SELF;
AssignCommand(oUser, DoPlaceableObjectAction(oTarget, PLACEABLE_ACTION_BASH));
}