31 lines
690 B
Plaintext
31 lines
690 B
Plaintext
//:://////////////////////////////////////////////
|
|
//::// Tuntunku LEWT
|
|
//:://////////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
|
|
ExecuteScript ("uberloot", OBJECT_SELF);
|
|
|
|
int nDiceRoll = d100(1);
|
|
if(nDiceRoll <= 8)
|
|
{
|
|
CreateItemOnObject("tuntunkucloak", OBJECT_SELF, 1);
|
|
}
|
|
else if(nDiceRoll <= 16)
|
|
{
|
|
CreateItemOnObject("beartoothnecklac", OBJECT_SELF, 1);
|
|
}
|
|
else if(nDiceRoll <= 24)
|
|
{
|
|
CreateItemOnObject("glacierbearboots", OBJECT_SELF, 1);
|
|
}
|
|
else if(nDiceRoll <= 32)
|
|
{
|
|
CreateItemOnObject("DarkOak", OBJECT_SELF, 1);
|
|
}
|
|
ExecuteScript("prc_npc_death", OBJECT_SELF);
|
|
ExecuteScript("prc_pwondeath", OBJECT_SELF);
|
|
}
|
|
|