24 lines
377 B
Plaintext
24 lines
377 B
Plaintext
|
/* Script generated by
|
||
|
Lilac Soul's NWN Script Generator, v. 1.5
|
||
|
|
||
|
For download info, please visit:
|
||
|
http://www.lilacsoul.revility.com */
|
||
|
|
||
|
//Put this OnDeath
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetLastKiller();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
if (d100()<=12)
|
||
|
{
|
||
|
CreateItemOnObject("manarinastingven", OBJECT_SELF);
|
||
|
|
||
|
}
|
||
|
|
||
|
ExecuteScript("nw_c2_default7", OBJECT_SELF);
|
||
|
}
|
||
|
|