30 lines
752 B
Plaintext
30 lines
752 B
Plaintext
//:://////////////////////////////////////////////
|
|
//::// naktusupplies LEWT
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
|
|
ExecuteScript ("uberloot", OBJECT_SELF);
|
|
|
|
int nDiceRoll = d100(1);
|
|
if(nDiceRoll <= 30)
|
|
{
|
|
CreateItemOnObject("naktusupplies", OBJECT_SELF, 1);
|
|
}
|
|
else if(nDiceRoll <= 60)
|
|
{
|
|
CreateItemOnObject("naktusupplies", OBJECT_SELF, 1);
|
|
CreateItemOnObject("naktusupplies", OBJECT_SELF, 1);
|
|
}
|
|
else
|
|
{
|
|
CreateItemOnObject("naktusupplies", OBJECT_SELF, 1);
|
|
CreateItemOnObject("naktusupplies", OBJECT_SELF, 1);
|
|
CreateItemOnObject("naktusupplies", OBJECT_SELF, 1);
|
|
}
|
|
ExecuteScript("prc_npc_death", OBJECT_SELF);
|
|
ExecuteScript("prc_pwondeath", OBJECT_SELF);
|
|
}
|
|
|