PoA_PRC8/_module/nss/startcloneconv.nss

24 lines
508 B
Plaintext
Raw Normal View History

2022-10-07 14:20:31 -04:00
////////////////////////////////////
//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));
}