12 lines
175 B
Plaintext
12 lines
175 B
Plaintext
|
|
||
|
void main()
|
||
|
{
|
||
|
object oPC= GetLastAttacker();
|
||
|
int nDiceRoll = d100(1);
|
||
|
if(nDiceRoll <= 20)
|
||
|
{
|
||
|
CreateItemOnObject("blackseeds", GetLastAttacker(), 1);
|
||
|
}
|
||
|
}
|
||
|
|