Sep 15, 2014 #1 Arthandas First time out of the vault Hi, is it possible to implement level cap (30 would be good) like in Fallout 1?
Sep 15, 2014 #2 NovaRain Casual Modder Modder Moderator With sfall, you can set up a custom XP table in ddraw.ini. It also works as a level cap. For example: Code: ;Players level is capped once the highest specified level is reached XPTable=1000,3000,6000,10000,15000,21000,28000,36000,45000 Once you reach 45,000 xp (lv 10), you can't no longer level up.
With sfall, you can set up a custom XP table in ddraw.ini. It also works as a level cap. For example: Code: ;Players level is capped once the highest specified level is reached XPTable=1000,3000,6000,10000,15000,21000,28000,36000,45000 Once you reach 45,000 xp (lv 10), you can't no longer level up.
Sep 15, 2014 #3 Arthandas First time out of the vault Heh, seems I overlooked this option when I checked ddraw.ini. Thanks for a quick response.