20 lines
540 B
Plaintext
20 lines
540 B
Plaintext
|
/*--------------------------------------------------------
|
||
|
|
||
|
Script Name: speedcast
|
||
|
----------------------------------------------------------
|
||
|
Created By: Genisys(Guile)
|
||
|
Created On: 4/23/09
|
||
|
----------------------------------------------------------
|
||
|
|
||
|
This script fires another script on the PC having them
|
||
|
cast all of their buffs at once, open up the script
|
||
|
"exc_speedcast" for more definition.
|
||
|
|
||
|
----------------------------------------------------------*/
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oPC = GetPCSpeaker();
|
||
|
ExecuteScript("exc_speedcast", oPC);
|
||
|
}
|