Quote:
Originally Posted by NatedogEZ
Can do it the lazy way like I do!
Make a loottable with just that specific lootdrop and add it through perl
(they will have their normal drops + the custom stuff from this table)
global_npc.pl
Code:
sub EVENT_SPAWN {
if ($mlevel >=1 && $mlevel <= 20) {
$npc->AddLootTable(104967); #whatever loottable you wanna add to them
}
}
|
That's a really clever workaround, had no idea you could do something like this.
Quote:
Originally Posted by Mortow
|
This is exactly what I'm looking for, thanks!