16 lines
258 B
Plaintext
16 lines
258 B
Plaintext
//Created by Guile 4/31/09
|
|
|
|
//This script will on rare occasions give a PCs a random
|
|
//Enchanting Gem..
|
|
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetExitingObject();
|
|
|
|
if (!GetIsPC(oPC) || GetIsDM(oPC)) return;
|
|
|
|
DelayCommand(30.0, ExecuteScript("gen_geg_treas", oPC));
|
|
|
|
}
|