View Single Post
  #1  
Old 02-13-2014, 08:53 PM
NatedogEZ's Avatar
NatedogEZ
Developer
 
Join Date: Dec 2012
Posts: 515
Default

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
	}

}
Reply With Quote