Jump to content


Photo

How do we modify Rank.ini to gain additional points to spend on the Spellbook?

spell book rank.ini special powers

Best Answer bilbothehobbit, 02 January 2021 - 04:28 PM

You will also need to modify playertemplate.ini. you will find this line:

 

MaxLevelMP = #DIVIDE( PLAYER_MAX_PURCHASE_POINTS_DEFAULT PLAYER_PURCHASE_POINTS_GRANTED )
 
change it to 
 
MaxLevelMP = 175
Go to the full post


  • Please log in to reply
6 replies to this topic

#1 velociate31

velociate31
  • Members
  • 37 posts

Posted 02 January 2021 - 08:17 AM

Hey Guys,

My objective is to achieve additional points in Skirmish mode, to spend on spell book powers. I’ve added a custom power which I want to make very challenging to achieve. So for eg I believe we get 154 or 159 points (max) to spend, so I’ve added the following to Rank.ini but It still stops at 154 and I just don’t get more points.

Please help me understand how I could modify Rank.ini such that I can gain additional points to spend on the spell book.

Here is what I’ve added so far:

Rank 160
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 159 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 159 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 161
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 160 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 160 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 162
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 161 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 161 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 163
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 162 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 162 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 164
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 163 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 163 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 165
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 164 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 164 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 166
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 165 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 165 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 167
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 166 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 166 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 168
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 167 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 167 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 169
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 168 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 168 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 170
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 169 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 169 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 171
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 170 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 170 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 172
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 171 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 171 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 173
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 172 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 172 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 174
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 173 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 173 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Rank 175
SkillPointsNeededDefault = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_DEFAULT 174 )
SkillPointsNeededCampaign = #MULTIPLY( PLAYER_SKILL_POINTS_DELTA_CAMPAIGN 174 )
SciencePurchasePointsGranted = PLAYER_PURCHASE_POINTS_GRANTED
End

Thanks in advance.

#2 bilbothehobbit

bilbothehobbit
  • Members
  • 26 posts
  • Location:Israel
  • Projects:RR_Mod.
  •  Complete Idiot

Posted 02 January 2021 - 04:28 PM   Best Answer

You will also need to modify playertemplate.ini. you will find this line:

 

MaxLevelMP = #DIVIDE( PLAYER_MAX_PURCHASE_POINTS_DEFAULT PLAYER_PURCHASE_POINTS_GRANTED )
 
change it to 
 
MaxLevelMP = 175

Edited by bilbothehobbit, 02 January 2021 - 08:04 PM.


#3 velociate31

velociate31
  • Members
  • 37 posts

Posted 02 January 2021 - 05:25 PM


You will also need to modify playertemplate.ini. you will find this line:

MaxLevelMP = #DIVIDE( PLAYER_MAX_PURCHASE_POINTS_DEFAULT PLAYER_PURCHASE_POINTS_GRANTED )

change it to


MaxLevelMP = 175
MaxLevelMP = #DIVIDE( PLAYER_MAX_PURCHASE_POINTS_DEFAULT PLAYER_PURCHASE_POINTS_GRANTED )


Thanks a bunch, I’ll try it out and report back in a while.

#4 velociate31

velociate31
  • Members
  • 37 posts

Posted 02 January 2021 - 11:52 PM

 

You will also need to modify playertemplate.ini. you will find this line:

 

MaxLevelMP = #DIVIDE( PLAYER_MAX_PURCHASE_POINTS_DEFAULT PLAYER_PURCHASE_POINTS_GRANTED )
 
change it to 
 
MaxLevelMP = 175

 

 

 

Hey bilbothehobbit,

 

I tried finding that line but couldn't find it anywhere in playertemplate.ini, ive been modifying the playertemplate file extensively, so i have certainly not missed it. Any more suggestions? Thanks in advance.

 

Update: It was modified actually, so i couldnt find it via search, found it now, checking in game and will revert ASAP.


Edited by velociate31, 02 January 2021 - 11:58 PM.


#5 velociate31

velociate31
  • Members
  • 37 posts

Posted 05 January 2021 - 08:10 AM


You will also need to modify playertemplate.ini. you will find this line:

MaxLevelMP = #DIVIDE( PLAYER_MAX_PURCHASE_POINTS_DEFAULT PLAYER_PURCHASE_POINTS_GRANTED )

change it to


MaxLevelMP = 175


Thanks so much. This worked like a charm, much appreciated.

#6 bilbothehobbit

bilbothehobbit
  • Members
  • 26 posts
  • Location:Israel
  • Projects:RR_Mod.
  •  Complete Idiot

Posted 05 January 2021 - 09:59 AM

No problem, glad to help :)



#7 velociate31

velociate31
  • Members
  • 37 posts

Posted 05 January 2021 - 07:59 PM

No problem, glad to help :)

 

:thumbsuphappy:






1 user(s) are reading this topic

0 members, 1 guests, 0 anonymous users