27 lines
647 B
Plaintext
27 lines
647 B
Plaintext
//:://////////////////////////////////////////////
|
|
//:://Gueliar LEWT
|
|
//:://///////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
|
|
ExecuteScript ("uberloot", OBJECT_SELF);
|
|
|
|
int nDiceRoll = d100(1);
|
|
if(nDiceRoll <= 3)
|
|
{
|
|
CreateItemOnObject("leistranwarstaff", OBJECT_SELF, 1);
|
|
}
|
|
else if(nDiceRoll <= 6)
|
|
{
|
|
CreateItemOnObject("PiousMace", OBJECT_SELF, 1);
|
|
}
|
|
else if(nDiceRoll <= 9)
|
|
{
|
|
CreateItemOnObject("GeuliarScale", OBJECT_SELF, 1);
|
|
}
|
|
else{CreateItemOnObject("DragonsBlood", OBJECT_SELF, 1);}
|
|
ExecuteScript("prc_npc_death", OBJECT_SELF);
|
|
ExecuteScript("prc_pwondeath", OBJECT_SELF);
|
|
}
|