| Before you begin, please refer to Tutorial - Making the .tweak File Modifiable, which teaches you how to make a .tweak file modifiable. You must be able to do this for all of my tutorials. Scoring First, we must find the directory with the correct file for scoring. Then we edit the correct file. 1. Navigate to C:/BF2_Directory/mods/bf2/python/game/. 2. Open scoringCommon.py with Notepad. Within scoringCommon.py, you will see these lines: SCORE_KILL = 2 SCORE_TEAMKILL = -4 SCORE_SUICIDE = -2 SCORE_REVIVE = 2 SCORE_TEAMDAMAGE = -2 SCORE_TEAMVEHICLEDAMAGE = -1 SCORE_KILLASSIST_DRIVER = 1 SCORE_KILLASSIST_PASSENGER = 0 SCORE_KILLASSIST_TARGETER = 1 SCORE_KILLASSIST_DAMAGE = 1 REPAIR_POINT_LIMIT = 100 HEAL_POINT_LIMIT = 100 GIVEAMMO_POINT_LIMIT = 100 TEAMDAMAGE_POINT_LIMIT = 50 TEAMVEHICLEDAMAGE_POINT_LIMIT = 50 3. Edit the Scoring & Points you would like. 4. CTRL + S or File>Save. 5. Close scoringCommon.py.
|