View Single Post
  #1 (permalink)  
Old 08-07-2007, 04:27 PM
thothramerkaba's Avatar
thothramerkaba thothramerkaba is offline
WaMMO Player
 
Join Date: Jul 2007
Location: Some Vortex in Oklahoma
Posts: 54
Thanks: 0
Thanked 0 Times in 0 Posts
Changes to Player.cpp

I have found the area of Player.cpp that awards item "procs" off of killing blows, some classes have abilities and there are a ton of trinkets that do this as well. Well once you hit level 70 they stop working because nothing awards you EXP any more. The adjustment is quite simple but untested.
If you have an unedited Player.cpp make the following changes.

Line #1232 should read
Code:
return;
Select line #1232 and paste the following in it's place.
Code:
{
 HandleProc(PROC_ON_GAIN_EXPIERIENCE, this, NULL);
 return;
}
And this should award you the "procing" abilities even at level 70. Known classes to test this with are the rogues Remorselessnesssss talent and the warrior ability Victory Rush, also there are a ton of trinket that have the ability "procs" for awarded exp or honor.
Reply With Quote