16 lines
406 B
Plaintext
16 lines
406 B
Plaintext
//:://////////////////////////////////////////////
|
|
//::// Mengari LEWT
|
|
//:://///////////////////////////////////////////
|
|
|
|
void main()
|
|
{
|
|
ExecuteScript("uberloot", OBJECT_SELF);
|
|
int nItemNum = d20(1);
|
|
string sItem = "MengariObject" + IntToString(nItemNum);
|
|
CreateItemOnObject(sItem, OBJECT_SELF, 1);
|
|
|
|
ExecuteScript("prc_npc_death", OBJECT_SELF);
|
|
ExecuteScript("prc_pwondeath", OBJECT_SELF);
|
|
}
|
|
|