View Single Post
  #2  
Old 02-16-2014, 01:59 PM
Traul
Hill Giant
 
Join Date: Jun 2005
Posts: 105
Default

Quote:
Originally Posted by NatedogEZ View Post
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 View Post
If you look at the last page of this post it gives sql code to add defiant gear drops.

http://www.eqemulator.org/forums/sho...=defiant+drops

I just use these and adjust where needed for the drops I want to add to level range.
This is exactly what I'm looking for, thanks!
Reply With Quote