24 lines
508 B
Plaintext
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));
|
||
|
|
||
|
}
|