17 lines
230 B
Plaintext
17 lines
230 B
Plaintext
|
//Put this OnDeath
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetLastKiller();
|
||
|
|
||
|
if (!GetIsPC(oPC)) return;
|
||
|
|
||
|
if (d100()<=10)
|
||
|
{
|
||
|
CreateItemOnObject("cus_casielsso001", OBJECT_SELF);
|
||
|
|
||
|
}
|
||
|
ExecuteScript("bio_default7", OBJECT_SELF);
|
||
|
}
|
||
|
|