UW2_PRC8/_module/nss/startcloneconv.nss
Jaysyn904 5197ad9a4d Initial upload
Initial upload
2023-09-25 20:24:01 -04:00

24 lines
508 B
Plaintext

////////////////////////////////////
//Created by Genisys / Guile 6/14/08
////////////////////////////////////
/*
This script goes in the OnUsed
Event of a Placeable that has
animations!
*/
////////////////////////////////////
void main()
{
ActionStartConversation(GetLastUsedBy(), "", TRUE);
DelayCommand(6.0, ActionPlayAnimation(ANIMATION_PLACEABLE_DEACTIVATE));
//After 30 seconds turn off the activated effect..
DelayCommand(60.0, ActionPlayAnimation(ANIMATION_PLACEABLE_ACTIVATE));
}