Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
17 lines
376 B
Plaintext
17 lines
376 B
Plaintext
void main()
|
|
{
|
|
|
|
object oPC=GetPCSpeaker();
|
|
|
|
object oMystra=GetItemPossessedBy(oPC,"jw_mys_item5");
|
|
DestroyObject(oMystra);
|
|
TakeGoldFromCreature(20000,oPC,TRUE);
|
|
PlayAnimation(ANIMATION_LOOPING_CONJURE2,1.0,3.0);
|
|
|
|
DelayCommand(1.0,ApplyEffectToObject(DURATION_TYPE_INSTANT,EffectVisualEffect(481),oPC));
|
|
CreateItemOnObject("jw_bbr_rew5",oPC,1);
|
|
|
|
|
|
|
|
}
|