Single Player - Raising Maximum Level

There are 11 replies in this Thread. The last Post () by TheN1K0L4Z.

  • On Multiplayer you can set up the game to go up to level 90.


    Here I'm going to show you how to in Singleplayer
    ------------------
    Requirements:
    Freelancer SDK
    ------------------


    Three Steps:


    1. Open up Freelancer\DATA\Missions\ptough.ini


    there you'll see code something like this:


    ptough_graph_pt = 6202674, 38


    Well, this is the money requirements to get the levels.


    To raise it you have to add more!


    2. To add more do the following:
    add the following as many times as you like(not too many):


    ptough_graph_pt =
    ptough_graph_pt =
    ptough_graph_pt =
    ptough_graph_pt =
    ptough_graph_pt =


    Now we add the values,


    ptough_graph_pt = 1000000, 39


    the "10000000" in that is the money requirement, the "39" is the level you get when you reach 1000000.


    3. So this is how it should look after a few lines added:


    ptough_graph_pt = 6202674, 39
    ptough_graph_pt = 8000000, 40
    ptough_graph_pt = 9000000, 41
    ptough_graph_pt = 10000000, 42
    ptough_graph_pt = 11000000, 43
    ptough_graph_pt = 12000000, 44
    ptough_graph_pt = 13000000, 45
    ptough_graph_pt = 14000000, 46
    ptough_graph_pt = 15000000, 47
    ptough_graph_pt = 16000000, 48
    ptough_graph_pt = 17000000, 49
    ptough_graph_pt = 18000000, 50
    ptough_graph_pt = 19000000, 51
    ptough_graph_pt = 20000000, 52
    ptough_graph_pt = 21000000, 53
    ptough_graph_pt = 22000000, 54
    ptough_graph_pt = 25000000, 55 (this is 25million to get to 55)


    You should get the idea and from there on it should be easy.


    Written by Blaster

  • In SP it will only let you go to level 40 max so you might need to do something like this.


    However you could change it to whatever you like.


    ptough_graph_pt = 0, 0
    ptough_graph_pt = 100000, 1
    ptough_graph_pt = 200000, 2
    ptough_graph_pt = 300000, 3
    ptough_graph_pt = 500000, 4
    ptough_graph_pt = 700000, 5
    ptough_graph_pt = 900000, 6
    ptough_graph_pt = 1100000, 7
    ptough_graph_pt = 3300000, 8
    ptough_graph_pt = 5500000, 9
    ptough_graph_pt = 7700000, 10
    ptough_graph_pt = 10000000, 11
    ptough_graph_pt = 13350000, 12
    ptough_graph_pt = 16000000, 13
    ptough_graph_pt = 19500000, 14
    ptough_graph_pt = 22000000, 15
    ptough_graph_pt = 27500000, 16
    ptough_graph_pt = 32000000, 17
    ptough_graph_pt = 37500000, 18
    ptough_graph_pt = 46000000, 19
    ptough_graph_pt = 48500000, 20
    ptough_graph_pt = 52500000, 21
    ptough_graph_pt = 57500000, 22
    ptough_graph_pt = 62500000, 23
    ptough_graph_pt = 64500000, 24
    ptough_graph_pt = 70000000, 25
    ptough_graph_pt = 75500000, 26
    ptough_graph_pt = 80000000, 27
    ptough_graph_pt = 84500000, 28
    ptough_graph_pt = 90000000, 29
    ptough_graph_pt = 95500000, 30
    ptough_graph_pt = 102000000, 31
    ptough_graph_pt = 109500000, 32
    ptough_graph_pt = 116000000, 33
    ptough_graph_pt = 130500000, 34
    ptough_graph_pt = 150000000, 35
    ptough_graph_pt = 200000000, 36
    ptough_graph_pt = 300000000, 37
    ptough_graph_pt = 500000000, 38
    ptough_graph_pt = 750000000, 39
    ptough_graph_pt = 999000000, 40

  • When you say dont add too many ptough_graph_pt=


    Do you mean not one for each lv ?


    Cos to get from Lv 38 to say 90 in MP
    you would need to add 52 ptough_graph_pt= to increase one lv at a time ?


    Or does it actually work off a graph ?
    so if you just had


    ptough_graph_pt= 1000000, 39
    ptough_graph_pt= 999000000, 90


    Would it calculate every level inbetween based on the graph line steepness inbetween these 2 points ?


    Bad graph illustration :P

  • but then it would be good to know which function is used to calculate... maybe it is no linear graph ;)
    I guess you should have to add 52 of these lines...

  • Im hoping u can set less than 52 but ill try and see :P


    Would this be a working example :P
    Or would i need more entries to allow the game to calc all lv's.


    [PlayerToughnessScale]
    ptough_graph_pt = 0, 0
    ptough_graph_pt=50000,1
    ptough_graph_pt=100000,2
    ptough_graph_pt=150000,3
    ptough_graph_pt=200000,4
    ptough_graph_pt=250000,5
    ptough_graph_pt=300000,6
    ptough_graph_pt=350000,7
    ptough_graph_pt=400000,8
    ptough_graph_pt=450000,9
    ptough_graph_pt=500000,10
    ptough_graph_pt=550000,11
    ptough_graph_pt=600000,12
    ptough_graph_pt=650000,13
    ptough_graph_pt=700000,14
    ptough_graph_pt=750000.15
    ptough_graph_pt=800000,16
    ptough_graph_pt=850000,17
    ptough_graph_pt=900000,18
    ptough_graph_pt=950000,19
    ptough_graph_pt=1000000,20
    ptough_graph_pt=1500000,21
    ptough_graph_pt=2000000,22
    ptough_graph_pt=2500000,23
    ptough_graph_pt=3000000,24
    ptough_graph_pt=3500000,25
    ptough_graph_pt=4000000,26
    ptough_graph_pt=4550000,27
    ptough_graph_pt=5000000,28
    ptough_graph_pt=5500000,29
    ptough_graph_pt=6000000,30
    ptough_graph_pt=6500000,31
    ptough_graph_pt=7000000,32
    ptough_graph_pt=7500000,33
    ptough_graph_pt=7900000,34
    ptough_graph_pt=8200000,35
    ptough_graph_pt=8600000,36
    ptough_graph_pt=8900000,37
    ptough_graph_pt=9200000,38
    ptough_graph_pt=9600000,39
    ptough_graph_pt=10000000,40
    ptough_graph_pt=11000000,41
    ptough_graph_pt=12000000,42
    ptough_graph_pt=13000000,43
    ptough_graph_pt=14000000,44
    ptough_graph_pt=15000000,45
    ptough_graph_pt=16000000,46
    ptough_graph_pt=16500000,47
    ptough_graph_pt=17000000,48
    ptough_graph_pt=18000000,49
    ptough_graph_pt=19000000,49
    ptough_graph_pt=20000000,50
    ptough_graph_pt=30000000,60
    ptough_graph_pt=40000000,70
    ptough_graph_pt=50000000,80
    ptough_graph_pt=60000000,90

  • Here you go.


    [PlayerToughnessScale]
    ptough_graph_pt = 0, 0
    ptough_graph_pt = 11000, 1
    ptough_graph_pt = 13750, 2
    ptough_graph_pt = 17228, 3
    ptough_graph_pt = 20845, 4
    ptough_graph_pt = 25396, 5
    ptough_graph_pt = 30475, 6
    ptough_graph_pt = 36576, 7
    ptough_graph_pt = 43891, 8
    ptough_graph_pt = 52183, 9
    ptough_graph_pt = 58967, 10
    ptough_graph_pt = 66632, 11
    ptough_graph_pt = 74156, 12
    ptough_graph_pt = 88245, 13
    ptough_graph_pt = 105206, 14
    ptough_graph_pt = 114780, 15
    ptough_graph_pt = 125225, 16
    ptough_graph_pt = 136620, 17
    ptough_graph_pt = 149154, 18
    ptough_graph_pt = 177493, 19
    ptough_graph_pt = 211397, 20
    ptough_graph_pt = 245220, 21
    ptough_graph_pt = 285906, 22
    ptough_graph_pt = 328791, 23
    ptough_graph_pt = 378331, 24
    ptough_graph_pt = 433189, 25
    ptough_graph_pt = 495823, 26
    ptough_graph_pt = 565734, 27
    ptough_graph_pt = 646965, 28
    ptough_graph_pt = 738187, 29
    ptough_graph_pt = 842492, 30
    ptough_graph_pt = 961283, 31
    ptough_graph_pt = 1096101, 32
    ptough_graph_pt = 1250652, 33
    ptough_graph_pt = 1425449, 34
    ptough_graph_pt = 1626438, 35
    ptough_graph_pt = 1853394, 36
    ptough_graph_pt = 2112870, 37
    ptough_graph_pt = 2409599, 38
    ptough_graph_pt = 2700000, 39
    ptough_graph_pt = 3000000, 40
    ptough_graph_pt = 3400000, 41
    ptough_graph_pt = 3800000, 42
    ptough_graph_pt = 4200000, 43
    ptough_graph_pt = 4600000, 44
    ptough_graph_pt = 5000000, 45
    ptough_graph_pt = 5400000, 46
    ptough_graph_pt = 5800000, 47
    ptough_graph_pt = 6200000, 48
    ptough_graph_pt = 6600000, 49
    ptough_graph_pt = 7000000, 50
    ptough_graph_pt = 7500000, 51
    ptough_graph_pt = 8000000, 52
    ptough_graph_pt = 8500000, 53
    ptough_graph_pt = 9000000, 54
    ptough_graph_pt = 9500000, 55
    ptough_graph_pt = 10000000, 56
    ptough_graph_pt = 10500000, 57
    ptough_graph_pt = 11000000, 58
    ptough_graph_pt = 11500000, 59
    ptough_graph_pt = 13000000, 60
    ptough_graph_pt = 14000000, 61
    ptough_graph_pt = 15000000, 62
    ptough_graph_pt = 16000000, 63
    ptough_graph_pt = 17000000, 64
    ptough_graph_pt = 18000000, 65
    ptough_graph_pt = 19000000, 66
    ptough_graph_pt = 20000000, 67
    ptough_graph_pt = 21000000, 68
    ptough_graph_pt = 22000000, 69
    ptough_graph_pt = 50000000, 70
    ptough_graph_pt = 60000000, 71
    ptough_graph_pt = 70000000, 72
    ptough_graph_pt = 80000000, 73
    ptough_graph_pt = 90000000, 74
    ptough_graph_pt = 100000000, 75
    ptough_graph_pt = 110000000, 76
    ptough_graph_pt = 120000000, 77
    ptough_graph_pt = 130000000, 78
    ptough_graph_pt = 140000000, 79
    ptough_graph_pt = 160000000, 70
    ptough_graph_pt = 180000000, 71
    ptough_graph_pt = 200000000, 72
    ptough_graph_pt = 220000000, 73
    ptough_graph_pt = 240000000, 74
    ptough_graph_pt = 260000000, 75
    ptough_graph_pt = 280000000, 76
    ptough_graph_pt = 300000000, 77
    ptough_graph_pt = 320000000, 78
    ptough_graph_pt = 340000000, 79
    ptough_graph_pt = 370000000, 80
    ptough_graph_pt = 400000000, 81
    ptough_graph_pt = 430000000, 83
    ptough_graph_pt = 460000000, 84
    ptough_graph_pt = 490000000, 85
    ptough_graph_pt = 520000000, 86
    ptough_graph_pt = 550000000, 87
    ptough_graph_pt = 580000000, 88
    ptough_graph_pt = 610000000, 89
    ptough_graph_pt = 650000000, 90
    ptough_graph_pt = 690000000, 91
    ptough_graph_pt = 730000000, 92
    ptough_graph_pt = 770000000, 93
    ptough_graph_pt = 810000000, 94
    ptough_graph_pt = 850000000, 95
    ptough_graph_pt = 890000000, 96
    ptough_graph_pt = 930000000, 97
    ptough_graph_pt = 970000000, 98
    ptough_graph_pt = 999999999, 99


    Now the amount following the = is how much in credits you need to advance to it.


    You can change this to whatever you like from 0 to 999999999

  • would b interesting to know if lvl above 99 are possible (just for the servers which have a 2billion$ limit)

    signew.jpg


    cfmoddblogo.png5904.png5904.png
    http://www.moddb.com/scripts/topsite.php?ts=4766


    Only dead fish swim with the stream.
    Don't discuss with idiots. They only drag you down to their level and then beat you with experience there.


    This is ten percent luck,
    Twenty percent skill,
    Fifteen percent concentrated power of will,
    Five percent pleasure,
    Fifty percent pain,
    And a hundred percent reason to remember the name!

  • Quote

    Originally posted by SWAT_OP-R8R
    would b interesting to know if lvl above 99 are possible (just for the servers which have a 2billion$ limit)


    Personally I dont think it works.


    However, I put it in because I think someone said that you can hex edit the exe to allow for it. I am not sure on that because I have never seen it done before. But if possible that would be ok.


    I think 40 levels is plenty just have to mod the amount of credits and buy levels accordingly. Make lvl 40 your 2 billion and drop down to 0.

  • Quote

    Originally posted by X-Ray
    and with maximum level in single player i cant buy containers for train
    i was post this ages ago


    If your playing a MP game in Open SP or SP you will need to edit the levels that things are sold to under 40, but then if you play online you most likely will get banned for cheating unless you change it back. So if you do make a copy of the files you change then when you are ready to play online just change the name of the sp modded files to xxxSP.ini and restore the originals back.

  • If this serves as a necrobump, forgive me.


    Anyone got a chart with REASONABLE net worth values for up to lv 81? I choose this number to match Skyrims level cap.


    What I'm trying to do is find the f(x), in the vanilla leveling, and extend on that to match the leveling.