View Single Post
  #8  
Old 03-16-2016, 02:45 PM
Coenxai's Avatar
Coenxai
Hill Giant
 
Join Date: Dec 2013
Posts: 151
Default

(RoF2)
static const uint32 MAX_PP_SPELLBOOK = 720; // was 480
static const uint32 MAX_PP_DISCIPLINES = 300; // was 200


#scribespells <MaxLevel> <MinLevel>.

quests\global\global_player.pl
Code:
sub EVENT_LEVEL_UP {
	if($ulevel <= 65) {
		quest::scribespells($ulevel);
		quest::traindiscs($ulevel);
	}
	if($ulevel > 65) { # Originally values of 49.
		quest::scribespells(65);
		quest::traindiscs(65);
	}
}
Modify it to fit your needs.
__________________
"The true sign of intelligence is not knowledge but imagination."
Reply With Quote