Anyone know where i can "edit" the reward title deed list in Rewards.cs?
Code:
            RewardCollection.Add(new BODCollectionItem(0x14F0, 1157191, 0, 25, RewardTitle, 10));
            RewardCollection.Add(new BODCollectionItem(0x14F0, 1157192, 0, 50, RewardTitle, 11));
            RewardCollection.Add(new BODCollectionItem(0x14F0, 1157193, 0, 250, RewardTitle, 12));

Where does it say the title 10 is... the 11 is ... ?

Thanks !
 
The titles are actually just defined in the cliloc file, thats why they base id gets incremented there to go to the next / correct cliloc id.

That can be seen in the BODRewardTitleDeed.cs
 
Thanks, so i will need to set a larger number to get to an empty one an define a title in my modified cliloc to fit. But thanks for the information !
 
Back