PoA_PRC8/module/nss/startcloneconv.nss
Jaysyn904 128e7e59a4 Initial upload
Initial upload
2022-10-07 14:20:31 -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));
}