View Single Post
  #2  
Old 07-07-2015, 10:13 AM
provocating's Avatar
provocating
Demi-God
 
Join Date: Nov 2007
Posts: 2,175
Default

I would think you would do this in attack.cpp

Keep in mind my source is custom and older. The routine you would want is Client::Death

On mine there is a line

Code:
 mylevel = mylevel ? mylevel : 1;
You could try just changing that to a flat out....

Code:
mylevel = 1;
Reply With Quote