Advertisement
Guest User

1.04 Multiplayer Netvars (GTA V)

a guest
Oct 27th, 2013
1,317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 416.29 KB | None | 0 0
  1. <!--
  2.  
  3. #############################################################################################################
  4. #############################################################################################################
  5. #############################################################################################################
  6.  
  7. READ THIS BEFORE STARTING
  8. READ THIS BEFORE STARTING
  9. READ THIS BEFORE STARTING
  10. READ THIS BEFORE STARTING
  11. READ THIS BEFORE STARTING
  12. READ THIS BEFORE STARTING
  13. READ THIS BEFORE STARTING
  14.  
  15. #############################################################################################################
  16. #############################################################################################################
  17. #############################################################################################################
  18.  
  19. -->
  20. <!--
  21. Stats Fields
  22. -->
  23. <!--
  24. <stats>
  25.  
  26. !!!!!!!!!!!!!!!!!! READ THIS BEFORE ADDING STATS !!!!!!!!!!!!!!!!!!
  27. !!!!!!!!!!!!!!!!!! READ THIS BEFORE ADDING STATS !!!!!!!!!!!!!!!!!!
  28. !!!!!!!!!!!!!!!!!! READ THIS BEFORE ADDING STATS !!!!!!!!!!!!!!!!!!
  29. !!!!!!!!!!!!!!!!!! READ THIS BEFORE ADDING STATS !!!!!!!!!!!!!!!!!!
  30. !!!!!!!!!!!!!!!!!! READ THIS BEFORE ADDING STATS !!!!!!!!!!!!!!!!!!
  31. !!!!!!!!!!!!!!!!!! READ THIS BEFORE ADDING STATS !!!!!!!!!!!!!!!!!!
  32. !!!!!!!!!!!!!!!!!! READ THIS BEFORE ADDING STATS !!!!!!!!!!!!!!!!!!
  33.  
  34. </stats>
  35. -->
  36.  
  37. <!--
  38. IMPORTANT NOTES
  39. -->
  40. <!--
  41.  
  42. 1. Level designers should stick to:
  43. - INT; FLOAT; BOOL; LABEL and STRING.
  44.  
  45. 2. The order of the stats dictates the order of the save/load.
  46.  
  47. 3. A new stat should always be added at the end of the stats list to make sure it doesnt overlap other stats
  48. in the savegame.
  49.  
  50. 4. In game stats debug:
  51.  
  52. .. Commands:
  53. .. "-nonetstats" - Disable network stats - LEADERBOARDS upload...
  54. .. "-noTitleStorage" - Disable Title User Storage.
  55. .. "-statsDebug" - Debug all stats (spew changes; etc) [ Remember to do the same individually use the stats widgets ]
  56. .. "-stat_tty=debug3" - Get all the goodies from stat debug spew.
  57. .. "-script_tty=debug3" - Get all the goodies from level design spew for the commands_stats.sch.
  58. .. "-stat_metric_tty=debug3" - Get all the goodies from playstats spew.
  59. .. "-ragenet_tus_tty=debug3" - Get all the goodies from title user storage spew.
  60.  
  61. -->
  62.  
  63. <StatsSetup version="1">
  64.  
  65. <stats>
  66.  
  67. <!--
  68. START OF ALL MULTIPLAYER PLAYER STATS
  69. -->
  70.  
  71. <!--
  72. Name - The string name of the stat value. Has to be unique. Max Size - 32 characters.
  73. Type - The type of this stat. Possible values are:
  74. .. Possible values are:
  75. .. Type = "float" - C++ Float.
  76. .. Type = "int" - C++ Integer.
  77. .. Type = "bool" - C++ Boolean.
  78. .. Type = "label" - C++ Integer.
  79. .. Type = "string" - C++ String.
  80. .. Type = "u8" - C++ Unsigned Integer 8.
  81. .. Type = "u16" - C++ Unsigned Integer 16.
  82. .. Type = "u32" - C++ Unsigned Integer 32.
  83. .. Type = "u64" - C++ Unsigned Integer 64.
  84. .. Type = "date" - C++ Unsigned Integer 64 used in script for dates.
  85. .. Type = "pos" - C++ Unsigned Integer 64 used in script for map positions.
  86. .. Type = "userid" - C++ String.
  87.  
  88. online - "true" if the stat is a multiplayer stat. "false" if it is a single player stat.
  89. profile - "true" if the stat is a Profile Stat.
  90. community - "true" if the stat is a community stats (Stock Market Stat).
  91.  
  92. Min - A minimum value of any submitted values. If a submitted value is less than this value then the submitters gamerhandle will be logged as a violator. If not provided the default is no minimum.
  93. Max - A maximum value of any submitted values. If a submitted value is greater than this value then the submitters gamerhandle will be logged as a violator. If not provided the default is no maximum.
  94. MaxVelocitySeconds - Used in conjunction with the MaxVelocityDelta value for stat velocity (rate of change) cheat detection. To define the maximum rate of change possible for a stat, set this value to the the number of seconds to use in a (delta / seconds) rate calculation.
  95. MaxVelocityDelta - Used in conjunction with the MaxVelocitySeconds value for stat velocity (rate of change) cheat detection. To define the maximum rate of change possible for a stat, set this value to the the delta to use in a (delta / seconds) rate calculation.
  96.  
  97. Owner - Owner of the stat.
  98. .. Possible values are:
  99. .. "system" - System stats are those that every game should report for players; and are used for spotting
  100. trends in hardware and preferences among our player base.
  101. .. "coder" - Game Stat values are changed in C++ code.
  102. .. "script" - Game Stat values are maintained in level design.
  103. Comment - A string which will appear only when the Config CSV downloaded.
  104. Label - A String that holds the text gxt label (optional)
  105. Denominator - And int that holds the award denominator for that stat. (optional)
  106. ReadPriority - Profile stats that have priority set to 1 or 2 will be downloaded during multiplayer game for the remote players.
  107. FlushPriority - Profile stats need to have flush priorities to that the most important take precenede
  108. ServerAuthoritative - Profile stats that have this to true are synched with the value on ROS server.
  109. -->
  110.  
  111. <!-- Stats tracked by CODE -->
  112.  
  113. <!-- Boolean PACKED stats -->
  114. <stat Name="MP_PSTAT_BOOL0" Type="packed" packed="bool" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="false" Comment="Stat with Packed booleans index 0. Takes up to 64 booleans." />
  115. <stat Name="MP_PSTAT_BOOL1" Type="packed" packed="bool" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="false" Comment="Stat with Packed booleans index 1. Takes up to 64 booleans." />
  116. <stat Name="MP_PSTAT_BOOL2" Type="packed" packed="bool" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="false" Comment="Stat with Packed booleans index 2. Takes up to 64 booleans." />
  117. <!-- Character Boolean PACKED stats -->
  118. <stat Name="PSTAT_BOOL0" Type="packed" packed="bool" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="true" Comment="Character Stat with Packed booleans index 0. Takes up to 64 booleans." />
  119. <stat Name="PSTAT_BOOL1" Type="packed" packed="bool" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="true" Comment="Character Stat with Packed booleans index 1. Takes up to 64 booleans." />
  120. <stat Name="PSTAT_BOOL2" Type="packed" packed="bool" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="true" Comment="Character Stat with Packed booleans index 2. Takes up to 64 booleans." />
  121.  
  122. <!-- Integer PACKED stats -->
  123. <stat Name="MP_PSTAT_INT0" Type="packed" packed="int" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="false" Comment="Stat with Packed integers index 0. Takes up to 8 integers." />
  124. <stat Name="MP_PSTAT_INT1" Type="packed" packed="int" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="false" Comment="Stat with Packed integers index 1. Takes up to 8 integers" />
  125. <stat Name="MP_PSTAT_INT2" Type="packed" packed="int" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="false" Comment="Stat with Packed integers index 2. Takes up to 8 integers" />
  126. <!-- Character Integer PACKED stats -->
  127. <stat Name="PSTAT_INT0" Type="packed" packed="int" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="true" Comment="Character Stat with Packed integers index 0. Takes up to 8 integers." />
  128. <stat Name="PSTAT_INT1" Type="packed" packed="int" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="true" Comment="Character Stat with Packed integers index 1. Takes up to 8 integers" />
  129. <stat Name="PSTAT_INT2" Type="packed" packed="int" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="true" Comment="Character Stat with Packed integers index 2. Takes up to 8 integers" />
  130. <stat Name="PSTAT_INT3" Type="packed" packed="int" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="true" Comment="Character Stat with Packed integers index 3. Takes up to 8 integers" />
  131. <stat Name="PSTAT_INT4" Type="packed" packed="int" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="true" Comment="Character Stat with Packed integers index 4. Takes up to 8 integers" />
  132. <stat Name="PSTAT_INT5" Type="packed" packed="int" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="true" Comment="Character Stat with Packed integers index 4. Takes up to 8 integers" />
  133. <stat Name="PSTAT_INT6" Type="packed" packed="int" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="true" Comment="Character Stat with Packed integers index 4. Takes up to 8 integers" />
  134. <stat Name="PSTAT_INT7" Type="packed" packed="int" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="true" Comment="Character Stat with Packed integers index 4. Takes up to 8 integers" />
  135. <stat Name="PSTAT_INT8" Type="packed" packed="int" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="true" Comment="Character Stat with Packed integers index 4. Takes up to 8 integers" />
  136.  
  137. <!-- PLAYER PROFILE STATS -->
  138. <!--PROFILE 0 -->
  139. <!--RPG STATS -->
  140. <stat Name="SUCCESSFUL_COUNTERS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of melee counter counter" />
  141. <stat Name="FIRES_EXTINGUISHED" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of fires extinguished" />
  142. <stat Name="FIRES_STARTED" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of fires started" />
  143. <stat Name="TIMES_CHEATED" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times cheated" />
  144. <stat Name="MISSION_NAME" Type="label" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Current Mission name" />
  145. <stat Name="TOTAL_PLAYING_TIME" Type="u64" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Playing time in milliseconds." />
  146. <stat Name="LONGEST_PLAYING_TIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Longest Playing time since last death." />
  147. <stat Name="LONGEST_CAM_TIME_DRIVING" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Longest time spent driving in cinematic camera in milliseconds." />
  148. <stat Name="MPPLY_LEAST_FAVORITE_STATION" Type="int" SaveCategory="0" online="true" profile="false" Owner="coder" characterStat="false" Comment="Least favorite radio station" />
  149. <stat Name="MPPLY_MOST_FAVORITE_STATION" Type="int" SaveCategory="0" online="true" profile="true" Owner="coder" characterStat="false" Comment="Most favorite radio station" />
  150. <stat Name="DIED_IN_DROWNING" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times player died by drowning" />
  151. <stat Name="DIED_IN_DROWNINGINVEHICLE" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times player died by drowning in vehicle" />
  152. <stat Name="DIED_IN_EXPLOSION" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times player died by explosion" />
  153. <stat Name="DIED_IN_FALL" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times player died by fall " />
  154. <stat Name="DIED_IN_FIRE" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times player died by fire" />
  155. <stat Name="DIED_IN_ROAD" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times player died in a road accident" />
  156. <stat Name="BUSTED" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times the player was arrested" />
  157. <stat Name="MANUAL_SAVED" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times saved the game manually"/>
  158. <stat Name="AUTO_SAVED" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times saved the game automatically"/>
  159. <stat Name="PLAYER_KILLS_ON_SPREE" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number Players killed done on spree." />
  160. <stat Name="COPS_KILLS_ON_SPREE" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number Cops killed done on spree." />
  161. <stat Name="PEDS_KILLS_ON_SPREE" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number Peds killed done on spree." />
  162. <stat Name="LONGEST_KILLING_SPREE" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Longest killing count in spree." />
  163. <stat Name="LONGEST_KILLING_SPREE_TIME" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Longest killing time count in spree." />
  164. <stat Name="KILLS_PLAYERS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of players killed" />
  165. <stat Name="KILLS_STEALTH" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of stealth kills" />
  166. <stat Name="KILLS_INNOCENTS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of ped's killed" />
  167. <stat Name="KILLS_COP" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of Cops killed" />
  168. <stat Name="KILLS_SWAT" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of Swat killed" />
  169. <stat Name="KILLS_ENEMY_GANG_MEMBERS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Enemy Gang members killed" />
  170. <stat Name="KILLS_FRIENDLY_GANG_MEMBERS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Friendly Gang members killed" />
  171. <stat Name="KILLS_BY_OTHERS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Peds killed by other players" />
  172. <stat Name="LARGE_ACCIDENTS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of large accidents." />
  173. <stat Name="LONGEST_DRIVE_NOCRASH" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Longest Drive Without a crash" />
  174. <stat Name="DIST_CAR" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Distance in a car" />
  175. <stat Name="DIST_DRIVING_CAR" Type="float" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total Distance driving a car" />
  176. <stat Name="TIME_DRIVING_CAR" Type="u64" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total time driving a car" />
  177. <stat Name="DIST_PLANE" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Distance driving a plane" />
  178. <stat Name="DIST_DRIVING_PLANE" Type="float" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total time driving a plane" />
  179. <stat Name="TIME_DRIVING_PLANE" Type="u64" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total time driving a plane" />
  180. <stat Name="DIST_QUADBIKE" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Distance driving a quadbike" />
  181. <stat Name="DIST_DRIVING_QUADBIKE" Type="float" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total time driving a quadbike" />
  182. <stat Name="TIME_DRIVING_QUADBIKE" Type="u64" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total time driving a quadbike" />
  183. <stat Name="DIST_HELI" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Distance driving a heli" />
  184. <stat Name="DIST_DRIVING_HELI" Type="float" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total time driving a heli" />
  185. <stat Name="TIME_DRIVING_HELI" Type="u64" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total time driving a heli" />
  186. <stat Name="DIST_BIKE" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Distance driving a bike" />
  187. <stat Name="DIST_DRIVING_BIKE" Type="float" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total time driving a bike" />
  188. <stat Name="TIME_DRIVING_BIKE" Type="u64" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total time driving a bike" />
  189. <stat Name="DIST_BICYCLE" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Distance driving a bicycle" />
  190. <stat Name="DIST_DRIVING_BICYCLE" Type="float" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total time driving a bicycle" />
  191. <stat Name="TIME_DRIVING_BICYCLE" Type="u64" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total time driving a bicycle" />
  192. <stat Name="DIST_BOAT" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Distance driving a boat" />
  193. <stat Name="DIST_DRIVING_BOAT" Type="float" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total time driving a boat" />
  194. <stat Name="TIME_DRIVING_BOAT" Type="u64" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total time driving a boat" />
  195. <stat Name="DIST_SUBMARINE" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Distance driving a submarine" />
  196. <stat Name="DIST_DRIVING_SUBMARINE" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total time driving a submarine" />
  197. <stat Name="TIME_DRIVING_SUBMARINE" Type="u64" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total time driving a submarine" />
  198. <stat Name="DIST_SWIMMING" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Distance driving a swimming" />
  199. <stat Name="TIME_SWIMMING" Type="u64" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total time driving a swimming" />
  200. <stat Name="DIST_WALKING" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Distance driving a walking" />
  201. <stat Name="TIME_WALKING" Type="u64" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total time spent walking" />
  202. <stat Name="DIST_WALK_ST" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Distance walking in Stealth mode" />
  203. <stat Name="DIST_RUNNING" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Distance running" />
  204. <stat Name="TIME_UNDERWATER" Type="u64" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total time underwater." />
  205. <stat Name="TIME_IN_WATER" Type="u64" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total time in water." />
  206. <stat Name="TIME_IN_COVER" Type="u64" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total time spent in cover" />
  207. <stat Name="ENTERED_COVER" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times the player has entered cover" />
  208. <stat Name="ENTERED_COVER_AND_SHOT" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times the player has entered cover and fired a shot or shots" />
  209. <stat Name="AVERAGE_SPEED" Type="float" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Average speed when driving a car or a bike" />
  210. <stat Name="FLIGHT_TIME" Type="float" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Average speed when driving a car or a bike" />
  211. <stat Name="LONGEST_CHASE_TIME" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Duration of the longest cop chase." />
  212. <stat Name="TOTAL_CHASE_TIME" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total time spent losing cops." />
  213. <stat Name="LAST_CHASE_TIME" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Duration of the last cop chase." />
  214. <stat Name="TOTAL_TIME_MAX_STARS" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total time under maximun wanted stars" />
  215. <stat Name="STARS_ATTAINED" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Number of wanted stars the player has been awarded" />
  216. <stat Name="STARS_EVADED" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Total Number of wanted stars the player has evaded" />
  217. <stat Name="NO_TIMES_WANTED_LEVEL" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="The number of times character obtains a wanted level" />
  218. <stat Name="PLANE_LANDINGS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of good plane landings" />
  219.  
  220. <!-- Player stats... -->
  221. <stat Name="NUMBER_OF_ORANGE_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Money picked up in the street." />
  222. <stat Name="NUMBER_OF_BOURGE_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Money picked up in the street." />
  223.  
  224. <!-- Player stats... -->
  225. <stat Name="DEFAULT_STATS_SET" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Min="0" Max="100" Comment="MP Char 0 - Shop Data" />
  226. <stat Name="SPECIAL_ABILITY" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Min="0" Max="100" Comment="Special ability" />
  227. <stat Name="STAMINA" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Min="0" Max="100" FlushPriority="15" Comment="Stamina" />
  228. <stat Name="STRENGTH" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Min="0" Max="100" FlushPriority="15" Comment="Strength" />
  229. <stat Name="LUNG_CAPACITY" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Min="0" Max="100" FlushPriority="15" Comment="Lung capacity modifier" />
  230. <stat Name="WHEELIE_ABILITY" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Min="0" Max="100" FlushPriority="15" Comment="Bike skill modifier" />
  231. <stat Name="FLYING_ABILITY" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Min="0" Max="100" FlushPriority="15" Comment="Flying modifier" />
  232. <stat Name="SHOOTING_ABILITY" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Min="0" Max="100" FlushPriority="15" Comment="Shooting modifier" />
  233. <stat Name="STEALTH_ABILITY" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Min="0" Max="100" FlushPriority="15" Comment="Stealth modifier" />
  234.  
  235. <stat Name="SCRIPT_INCREASE_STAM" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Min="0" Max="100" Comment="Stat increase - Stamina" />
  236. <stat Name="SCRIPT_INCREASE_STRN" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Min="0" Max="100" Comment="Stat increase - Strength" />
  237. <stat Name="SCRIPT_INCREASE_LUNG" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Min="0" Max="100" Comment="Stat increase - Lung capacity" />
  238. <stat Name="SCRIPT_INCREASE_DRIV" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Min="0" Max="100" Comment="Stat increase - Driving" />
  239. <stat Name="SCRIPT_INCREASE_FLY" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Min="0" Max="100" Comment="Stat increase - Flying" />
  240. <stat Name="SCRIPT_INCREASE_SHO" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Min="0" Max="100" Comment="Stat increase - Shooting" />
  241. <stat Name="SCRIPT_INCREASE_STL" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Min="0" Max="100" Comment="Stat increase - Stealth" />
  242. <stat Name="SCRIPT_INCREASE_MECH" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Min="0" Max="100" Comment="Stat increase - Mechanic" />
  243.  
  244. <!-- CASH -->
  245. <stat Name="PVC_WALLET_BALANCE" Type="s64" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="coder" characterStat="true" Comment="Per-Character Cash that has been PAID for with real money." />
  246. <stat Name="EVC_WALLET_BALANCE" Type="s64" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="coder" characterStat="true" Comment="Per-Character Cash that has been EARN in game." />
  247. <stat Name="PVC_BANK_BALANCE" Type="s64" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="coder" Comment="Banked Cash that the player has PAID for with real money." />
  248. <stat Name="EVC_BANK_BALANCE" Type="s64" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="coder" Comment="Banked Cash that the player has EARN, either in game or via other mechanism." />
  249. <stat Name="PVC_BALANCE" Type="s64" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="coder" Comment="Banked Cash that the player has PAID for with real money." />
  250. <stat Name="EVC_BALANCE" Type="s64" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="coder" Comment="Banked Cash that the player has EARN, either in game or via other mechanism." />
  251.  
  252. <stat Name="EVC_WALLET_BALANCE_CLEARED" Type="s64" SaveCategory="0" online="true" profile="false" characterStat="true" Owner="coder" Comment="Total last Cleared amount for each character stat EVC_WALLET_BALANCE." />
  253. <stat Name="EVC_BANK_BALANCE_CLEARED" Type="s64" SaveCategory="0" online="true" profile="false" Owner="coder" Comment="Total last Cleared amount for stat EVC_BANK_BALANCE." />
  254. <stat Name="MPPLY_IS_HIGH_EARNER" Type="bool" SaveCategory="0" online="true" profile="false" Owner="coder" Comment="Flag Player as a HIGH EARNER."/>
  255. <stat Name="MPPLY_IS_CHEATER" Type="bool" SaveCategory="0" online="true" profile="false" Owner="coder" Comment="Flag saved with current cheater." />
  256. <stat Name="MPPLY_IS_CHEATER_TIME" Type="u64" SaveCategory="0" online="true" profile="false" Owner="coder" Comment="Posix Time last time the flag changed value." />
  257.  
  258. <!-- Store Stats -->
  259. <stat Name="MPPLY_STORE_MONEY_SPENT" Type="float" SaveCategory="0" online="true" profile="true" Owner="coder" Comment="MPPLAYER - Real money player has spent in store" />
  260. <stat Name="MPPLY_STORE_MONEY_BOUGHT" Type="s64" SaveCategory="0" online="true" profile="true" Owner="coder" Comment="MPPLAYER - Game Money player has bought in the store" />
  261. <stat Name="MPPLY_STORE_TOTAL_MONEY_BOUGHT" Type="s64" SaveCategory="0" online="true" profile="true" Owner="coder" Comment="MPPLAYER - Total game money player has bought in store" />
  262. <stat Name="MPPLY_STORE_PURCHASE_POSIX_TIME" Type="u64" SaveCategory="0" online="true" profile="true" Owner="coder" Comment="MPPLAYER - Last purchase posix time." />
  263. <stat Name="MPPLY_STORE_CHECKOUTS_CANCELLED" Type="s64" SaveCategory="0" online="true" profile="true" Owner="coder" Comment="MPPLAYER - The number of times a user has cancelled a purchase after going to plaform checkout" />
  264.  
  265. <!-- SPEND MONEY -->
  266. <stat Name="MONEY_SPENT_WEAPON_ARMOR" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Spent in weapons and armor" />
  267. <stat Name="MONEY_SPENT_VEH_MAINTENANCE" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Spent in Vehicles and Maintenance" />
  268. <stat Name="MONEY_SPENT_STYLE_ENT" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Spent in Style and Entertainment " />
  269. <stat Name="MONEY_SPENT_PROPERTY_UTIL" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Spent in Property and Utilities " />
  270. <stat Name="MONEY_SPENT_JOB_ACTIVITY" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Spent in Job and Activity Entry Fees" />
  271. <stat Name="MONEY_SPENT_BETTING" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Spent in Betting" />
  272. <stat Name="MONEY_SPENT_CONTACT_SERVICE" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Spent in Contact Services" />
  273. <stat Name="MONEY_SPENT_DROPPED_STOLEN" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Spent in Dropped or Stolen" />
  274. <stat Name="MONEY_SPENT_SHARED" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Spent in Shared cash" />
  275. <stat Name="MONEY_SPENT_JOBSHARED" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Spent in Job Shared cash" />
  276. <stat Name="MONEY_SPENT_HEALTHCARE" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Spent in Healthcare" />
  277. <!-- EARN MONEY -->
  278. <stat Name="MONEY_EARN_JOBS" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Earn in Jobs" />
  279. <stat Name="MONEY_EARN_SELLING_VEH" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Earn in Selling Vehicles" />
  280. <stat Name="MONEY_EARN_BETTING" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Earn in Betting " />
  281. <stat Name="MONEY_EARN_GOOD_SPORT" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Earn in Good Sport Reward" />
  282. <stat Name="MONEY_EARN_PICKED_UP" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Earn in Picked Up" />
  283. <stat Name="MONEY_EARN_SHARED" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Earn in Shared Cash" />
  284. <stat Name="MONEY_EARN_JOBSHARED" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Earn in Shared Cash" />
  285. <stat Name="MONEY_EARN_ROCKSTAR_AWARD" Type="int" SaveCategory="0" online="true" profile="true" characterStat="true" Owner="coder" Comment="Money Earn in Rockstar Award" />
  286.  
  287. <!--VEHICLES -->
  288. <stat Name="NUMBER_NEAR_MISS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of vehicles near misses." />
  289. <stat Name="COPCARS_ENTERED_AS_CROOK" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times entered a cop car as a crook." />
  290. <stat Name="BAILED_FROM_VEHICLE" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times jumped out of a moving vehicle." />
  291. <stat Name="THROWNTHROUGH_WINDSCREEN" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times thrown through a windscreen" />
  292. <stat Name="TOTAL_DAMAGE_CARS" Type="float" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total damage done in Cars" />
  293. <stat Name="TOTAL_DAMAGE_BIKES" Type="float" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total damage done in Bikes" />
  294. <stat Name="TOTAL_DAMAGE_QUADBIKES" Type="float" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total damage done in Quadbikes" />
  295. <stat Name="NUMBER_CRASHES_CARS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of crashes done in Cars" />
  296. <stat Name="NUMBER_CRASHES_BIKES" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of crashes done in Bikes" />
  297. <stat Name="NUMBER_CRASHES_QUADBIKES" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of crashes done in Quadbikes" />
  298. <stat Name="NUMBER_STOLEN_COP_VEHICLE" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of cars stolen" />
  299. <stat Name="NUMBER_STOLEN_CARS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of cars stolen" />
  300. <stat Name="NUMBER_STOLEN_BIKES" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of bikes stolen" />
  301. <stat Name="NUMBER_STOLEN_BOATS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of boats stolen" />
  302. <stat Name="NUMBER_STOLEN_HELIS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of helis stolen" />
  303. <stat Name="NUMBER_STOLEN_PLANES" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of planes stolen" />
  304. <stat Name="NUMBER_STOLEN_QUADBIKES" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of quad bikes stolen" />
  305. <stat Name="NUMBER_STOLEN_BICYCLES" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of bicycles stolen" />
  306. <stat Name="TIRES_POPPED_BY_GUNSHOT" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of tires popped by gunshot" />
  307. <stat Name="VEHICLES_DESTROYED_ON_SPREE" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of vehicles destroyed on spree" />
  308. <stat Name="COP_VEHI_DESTROYED_ON_SPREE" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of COP vehicles destroyed on spree" />
  309. <stat Name="TANKS_DESTROYED_ON_SPREE" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of TANK vehicles destroyed on spree" />
  310. <stat Name="CARS_EXPLODED" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of cars exploded" />
  311. <stat Name="CARS_COPS_EXPLODED" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of cop cars exploded" />
  312. <stat Name="BIKES_EXPLODED" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of bikes exploded" />
  313. <stat Name="BOATS_EXPLODED" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of boats exploded" />
  314. <stat Name="HELIS_EXPLODED" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of helis exploded" />
  315. <stat Name="PLANES_EXPLODED" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of planes exploded" />
  316. <stat Name="QUADBIKE_EXPLODED" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of quadbike exploded" />
  317. <stat Name="BICYCLE_EXPLODED" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of bicycle exploded" />
  318. <stat Name="SUBMARINE_EXPLODED" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of submarine exploded" />
  319. <stat Name="TRAIN_EXPLODED" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of train exploded" />
  320. <stat Name="FASTEST_SPEED" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Fastest speed recorded in a vehicle in meters/h" />
  321. <stat Name="TOP_SPEED_CAR" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Model Index of the fastest speed car" />
  322. <stat Name="LONGEST_2WHEEL_DIST" Type="float" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Longest 2 wheel distance in a vehicle" />
  323. <stat Name="LONGEST_2WHEEL_TIME" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Longest 2 wheel time in a vehicle" />
  324. <stat Name="LONGEST_STOPPIE_DIST" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Longest stoppie distance in a bike" />
  325. <stat Name="LONGEST_STOPPIE_TIME" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Longest stoppie time in a bike" />
  326. <stat Name="LONGEST_WHEELIE_DIST" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Longest wheelie time in a bike" />
  327. <stat Name="LONGEST_WHEELIE_TIME" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Longest wheelie time in a bike" />
  328. <stat Name="TOTAL_WHEELIE_TIME" Type="u64" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total wheelie time in a bike" />
  329. <stat Name="LONGEST_SURVIVED_FREEFALL" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Longest Survived free fall in meters." />
  330. <stat Name="HIGHEST_SKITTLES" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of Peds Run down" />
  331. <stat Name="MOST_FLIPS_IN_ONE_JUMP" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of flips in one vehicle jump" />
  332. <stat Name="MOST_SPINS_IN_ONE_JUMP" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of spins in one vehicle jump" />
  333. <stat Name="USJS_FOUND" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of stunt jumps tried" />
  334. <stat Name="USJS_FOUND_MASK" Type="u64" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Mask of all stunt jumps tried" />
  335. <stat Name="USJS_COMPLETED" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of stunt jumps completed" />
  336. <stat Name="USJS_COMPLETED_MASK" Type="u64" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Mask of all stunt jumps completed" />
  337. <stat Name="FARTHEST_JUMP_DIST" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Longest jump distance" />
  338. <stat Name="HIGHEST_JUMP_REACHED" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Highest jump distance" />
  339. <stat Name="AIR_LAUNCHES_OVER_5S" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of air launches over 5 seconds" />
  340. <stat Name="AIR_LAUNCHES_OVER_5M" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of air launches over 5 meters" />
  341. <stat Name="AIR_LAUNCHES_OVER_40M" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of air launches over 40 meters" />
  342. <stat Name="NUMBER_OF_AIR_LAUNCHES" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of air launches" />
  343. <stat Name="NUMBER_TURBO_STARTS_IN_RACE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Number of turbo starts at start of race" />
  344. <stat Name="NUMBER_SLIPSTREAMS_IN_RACE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Number of turbo starts at start of race" />
  345.  
  346.  
  347. <!--WEAPONS -->
  348. <stat Name="EXPLOSIVE_DAMAGE_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of explosive damage weapons hits." />
  349. <stat Name="EXPLOSIVE_DAMAGE_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of explosive damage weapons shots." />
  350. <stat Name="KILLS_ARMED" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of Armed kills" />
  351. <stat Name="KILLS_IN_FREE_AIM" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="number of kills in free aim" />
  352. <stat Name="KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed" />
  353. <stat Name="DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 died" />
  354. <stat Name="DEATHS_PLAYER" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of deaths caused by other players" />
  355. <stat Name="SHOTS" Type="int" SaveCategory="1" online="true" profile="true" FlushPriority="15" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired" />
  356. <stat Name="WEAPON_ACCURACY" Type="float" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Weapon accuracy" />
  357. <stat Name="HITS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit" />
  358. <stat Name="HITS_PEDS_VEHICLES" Type="int" SaveCategory="1" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="Number of times mp char 0 hit" />
  359. <stat Name="HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot" />
  360. <stat Name="PLAYER_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot done by other players" />
  361. <stat Name="DB_SHOTTIME" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total time shoting a drive by weapon" />
  362. <stat Name="DB_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed" />
  363. <stat Name="DB_PLAYER_KILLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed" />
  364. <stat Name="DB_SHOTS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired" />
  365. <stat Name="DB_HITS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit" />
  366. <stat Name="DB_HITS_PEDS_VEHICLES" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit" />
  367. <stat Name="DB_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot" />
  368. <stat Name="PASS_DB_SHOTTIME" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Total time shoting a drive by weapon" />
  369. <stat Name="PASS_DB_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed" />
  370. <stat Name="PASS_DB_PLAYER_KILLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed" />
  371. <stat Name="PASS_DB_SHOTS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired" />
  372. <stat Name="PASS_DB_HITS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit" />
  373. <stat Name="PASS_DB_HITS_PEDS_VEHICLES" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit" />
  374. <stat Name="PASS_DB_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot" />
  375. <stat Name="EXPLOSIVES_USED" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of Explosives used" />
  376. <!--Melee -->
  377. <stat Name="UNARMED_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  378. <stat Name="UNARMED_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  379. <stat Name="UNARMED_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed by weapon" />
  380. <stat Name="UNARMED_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael hit with weapon" />
  381. <stat Name="KNIFE_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  382. <stat Name="KNIFE_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  383. <stat Name="KNIFE_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed by weapon" />
  384. <stat Name="KNIFE_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael hit with weapon" />
  385. <stat Name="KNIFE_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time Michael held weapon (MS)" />
  386. <stat Name="KNIFE_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  387. <stat Name="KNIFE_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  388. <stat Name="KNIFE_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  389. <stat Name="KNIFE_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  390. <stat Name="KNIFE_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  391.  
  392. <stat Name="NIGHTSTICK_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  393. <stat Name="NIGHTSTICK_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  394. <stat Name="NIGHTSTICK_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed by weapon" />
  395. <stat Name="NIGHTSTICK_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael hit with weapon" />
  396. <stat Name="NIGHTSTICK_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time Michael held weapon (MS)" />
  397. <stat Name="NIGHTSTICK_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  398. <stat Name="NIGHTSTICK_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  399. <stat Name="NIGHTSTICK_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  400. <stat Name="NIGHTSTICK_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  401.  
  402. <stat Name="CROWBAR_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  403. <stat Name="CROWBAR_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  404. <stat Name="CROWBAR_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed by weapon" />
  405. <stat Name="CROWBAR_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael hit with weapon" />
  406. <stat Name="CROWBAR_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time Michael held weapon (MS)" />
  407. <stat Name="CROWBAR_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  408. <stat Name="CROWBAR_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  409. <stat Name="CROWBAR_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  410. <stat Name="CROWBAR_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  411.  
  412. <stat Name="SHOVEL_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  413. <stat Name="SHOVEL_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  414. <stat Name="SHOVEL_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed by weapon" />
  415. <stat Name="SHOVEL_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael hit with weapon" />
  416. <stat Name="SHOVEL_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time Michael held weapon (MS)" />
  417. <stat Name="SHOVEL_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  418. <stat Name="SHOVEL_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  419. <stat Name="SHOVEL_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  420. <stat Name="SHOVEL_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  421.  
  422. <stat Name="WRENCH_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  423. <stat Name="WRENCH_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  424. <stat Name="WRENCH_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed by weapon" />
  425. <stat Name="WRENCH_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael hit with weapon" />
  426. <stat Name="WRENCH_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time Michael held weapon (MS)" />
  427. <stat Name="WRENCH_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  428. <stat Name="WRENCH_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  429. <stat Name="WRENCH_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  430. <stat Name="WRENCH_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  431.  
  432. <stat Name="HAMMER_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  433. <stat Name="HAMMER_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  434. <stat Name="HAMMER_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed by weapon" />
  435. <stat Name="HAMMER_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael hit with weapon" />
  436. <stat Name="HAMMER_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time Michael held weapon (MS)" />
  437. <stat Name="HAMMER_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  438. <stat Name="HAMMER_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  439. <stat Name="HAMMER_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  440. <stat Name="HAMMER_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  441.  
  442.  
  443.  
  444. <stat Name="BAT_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  445. <stat Name="BAT_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  446. <stat Name="BAT_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed by weapon" />
  447. <stat Name="BAT_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael hit with weapon" />
  448. <stat Name="BAT_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time Michael held weapon (MS)" />
  449. <stat Name="BAT_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  450. <stat Name="BAT_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  451. <stat Name="BAT_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  452. <stat Name="BAT_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  453.  
  454. <stat Name="GCLUB_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  455. <stat Name="GCLUB_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed with weapon" />
  456. <stat Name="GCLUB_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael killed by weapon" />
  457. <stat Name="GCLUB_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times Michael hit with weapon" />
  458. <stat Name="GCLUB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time Michael held weapon (MS)" />
  459. <stat Name="GCLUB_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  460. <stat Name="GCLUB_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  461. <stat Name="GCLUB_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  462. <stat Name="GCLUB_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  463.  
  464. <!-- Guns -->
  465. <stat Name="PISTOL_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  466. <stat Name="PISTOL_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  467. <stat Name="PISTOL_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  468. <stat Name="PISTOL_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  469. <stat Name="PISTOL_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  470. <stat Name="PISTOL_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  471. <stat Name="PISTOL_DB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time char0 held driveby weapon (MS)" />
  472. <stat Name="PISTOL_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  473. <stat Name="PISTOL_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  474. <stat Name="PISTOL_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  475. <stat Name="PISTOL_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  476. <stat Name="PISTOL_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  477.  
  478. <stat Name="CMBTPISTOL_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  479. <stat Name="CMBTPISTOL_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  480. <stat Name="CMBTPISTOL_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  481. <stat Name="CMBTPISTOL_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  482. <stat Name="CMBTPISTOL_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  483. <stat Name="CMBTPISTOL_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  484. <stat Name="CMBTPISTOL_DB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time char0 held driveby weapon (MS)" />
  485. <stat Name="CMBTPISTOL_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  486. <stat Name="CMBTPISTOL_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  487. <stat Name="CMBTPISTOL_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  488. <stat Name="CMBTPISTOL_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  489. <stat Name="CMBTPISTOL_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  490.  
  491.  
  492. <stat Name="PISTOL50_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  493. <stat Name="PISTOL50_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  494. <stat Name="PISTOL50_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  495. <stat Name="PISTOL50_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  496. <stat Name="PISTOL50_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  497. <stat Name="PISTOL50_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  498. <stat Name="PISTOL50_DB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time char0 held driveby weapon (MS)" />
  499. <stat Name="PISTOL50_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  500. <stat Name="PISTOL50_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  501. <stat Name="PISTOL50_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  502. <stat Name="PISTOL50_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  503. <stat Name="PISTOL50_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  504.  
  505.  
  506. <stat Name="APPISTOL_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  507. <stat Name="APPISTOL_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  508. <stat Name="APPISTOL_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  509. <stat Name="APPISTOL_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  510. <stat Name="APPISTOL_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  511. <stat Name="APPISTOL_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  512. <stat Name="APPISTOL_DB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time char0 held driveby weapon (MS)" />
  513. <stat Name="APPISTOL_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  514. <stat Name="APPISTOL_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  515. <stat Name="APPISTOL_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  516. <stat Name="APPISTOL_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  517. <stat Name="APPISTOL_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  518.  
  519.  
  520. <stat Name="MICROSMG_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  521. <stat Name="MICROSMG_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  522. <stat Name="MICROSMG_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  523. <stat Name="MICROSMG_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  524. <stat Name="MICROSMG_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  525. <stat Name="MICROSMG_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  526. <stat Name="MICROSMG_DB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time char0 held driveby weapon (MS)" />
  527. <stat Name="MICROSMG_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  528. <stat Name="MICROSMG_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  529. <stat Name="MICROSMG_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  530. <stat Name="MICROSMG_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  531. <stat Name="MICROSMG_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  532.  
  533.  
  534. <stat Name="SMG_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  535. <stat Name="SMG_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  536. <stat Name="SMG_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  537. <stat Name="SMG_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  538. <stat Name="SMG_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  539. <stat Name="SMG_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  540. <stat Name="SMG_DB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time char0 held driveby weapon (MS)" />
  541. <stat Name="SMG_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  542. <stat Name="SMG_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  543. <stat Name="SMG_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  544. <stat Name="SMG_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  545. <stat Name="SMG_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  546.  
  547.  
  548.  
  549. <stat Name="ASLTSMG_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  550. <stat Name="ASLTSMG_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  551. <stat Name="ASLTSMG_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  552. <stat Name="ASLTSMG_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  553. <stat Name="ASLTSMG_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  554. <stat Name="ASLTSMG_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  555. <stat Name="ASLTSMG_DB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time char0 held driveby weapon (MS)" />
  556. <stat Name="ASLTSMG_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  557. <stat Name="ASLTSMG_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  558. <stat Name="ASLTSMG_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  559. <stat Name="ASLTSMG_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  560. <stat Name="ASLTSMG_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  561.  
  562.  
  563. <stat Name="ASLTRIFLE_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  564. <stat Name="ASLTRIFLE_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  565. <stat Name="ASLTRIFLE_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  566. <stat Name="ASLTRIFLE_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  567. <stat Name="ASLTRIFLE_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  568. <stat Name="ASLTRIFLE_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  569. <stat Name="ASLTRIFLE_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  570. <stat Name="ASLTRIFLE_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  571. <stat Name="ASLTRIFLE_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  572. <stat Name="ASLTRIFLE_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  573. <stat Name="ASLTRIFLE_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  574.  
  575.  
  576.  
  577. <stat Name="CRBNRIFLE_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  578. <stat Name="CRBNRIFLE_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  579. <stat Name="CRBNRIFLE_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  580. <stat Name="CRBNRIFLE_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  581. <stat Name="CRBNRIFLE_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  582. <stat Name="CRBNRIFLE_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  583. <stat Name="CRBNRIFLE_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  584. <stat Name="CRBNRIFLE_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  585. <stat Name="CRBNRIFLE_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  586. <stat Name="CRBNRIFLE_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  587. <stat Name="CRBNRIFLE_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  588.  
  589.  
  590.  
  591.  
  592. <stat Name="ADVRIFLE_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  593. <stat Name="ADVRIFLE_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  594. <stat Name="ADVRIFLE_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  595. <stat Name="ADVRIFLE_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  596. <stat Name="ADVRIFLE_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  597. <stat Name="ADVRIFLE_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  598. <stat Name="ADVRIFLE_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  599. <stat Name="ADVRIFLE_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  600. <stat Name="ADVRIFLE_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  601. <stat Name="ADVRIFLE_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  602. <stat Name="ADVRIFLE_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  603.  
  604.  
  605.  
  606. <stat Name="MG_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  607. <stat Name="MG_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  608. <stat Name="MG_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  609. <stat Name="MG_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  610. <stat Name="MG_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  611. <stat Name="MG_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  612. <stat Name="MG_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  613. <stat Name="MG_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  614. <stat Name="MG_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  615. <stat Name="MG_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  616. <stat Name="MG_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  617.  
  618.  
  619. <stat Name="CMBTMG_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  620. <stat Name="CMBTMG_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  621. <stat Name="CMBTMG_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  622. <stat Name="CMBTMG_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  623. <stat Name="CMBTMG_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  624. <stat Name="CMBTMG_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  625. <stat Name="CMBTMG_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  626. <stat Name="CMBTMG_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  627. <stat Name="CMBTMG_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  628. <stat Name="CMBTMG_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  629. <stat Name="CMBTMG_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  630.  
  631.  
  632. <stat Name="ASLTMG_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  633. <stat Name="ASLTMG_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  634. <stat Name="ASLTMG_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  635. <stat Name="ASLTMG_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  636. <stat Name="ASLTMG_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  637. <stat Name="ASLTMG_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  638. <stat Name="ASLTMG_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  639. <stat Name="ASLTMG_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  640. <stat Name="ASLTMG_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  641. <stat Name="ASLTMG_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  642. <stat Name="ASLTMG_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  643.  
  644. <stat Name="PUMP_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  645. <stat Name="PUMP_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  646. <stat Name="PUMP_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  647. <stat Name="PUMP_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  648. <stat Name="PUMP_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  649. <stat Name="PUMP_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  650. <stat Name="PUMP_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  651. <stat Name="PUMP_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  652. <stat Name="PUMP_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  653. <stat Name="PUMP_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  654. <stat Name="PUMP_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  655.  
  656. <stat Name="SAWNOFF_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  657. <stat Name="SAWNOFF_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  658. <stat Name="SAWNOFF_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  659. <stat Name="SAWNOFF_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  660. <stat Name="SAWNOFF_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  661. <stat Name="SAWNOFF_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  662. <stat Name="SAWNOFF_DB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  663. <stat Name="SAWNOFF_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  664. <stat Name="SAWNOFF_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  665. <stat Name="SAWNOFF_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  666. <stat Name="SAWNOFF_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  667. <stat Name="SAWNOFF_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  668.  
  669. <stat Name="BULLPUP_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  670. <stat Name="BULLPUP_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  671. <stat Name="BULLPUP_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  672. <stat Name="BULLPUP_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  673. <stat Name="BULLPUP_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  674. <stat Name="BULLPUP_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  675. <stat Name="BULLPUP_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  676. <stat Name="BULLPUP_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  677. <stat Name="BULLPUP_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  678. <stat Name="BULLPUP_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  679. <stat Name="BULLPUP_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  680.  
  681. <stat Name="ASLTSHTGN_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  682. <stat Name="ASLTSHTGN_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  683. <stat Name="ASLTSHTGN_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  684. <stat Name="ASLTSHTGN_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  685. <stat Name="ASLTSHTGN_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  686. <stat Name="ASLTSHTGN_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  687. <stat Name="ASLTSHTGN_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  688. <stat Name="ASLTSHTGN_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  689. <stat Name="ASLTSHTGN_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  690. <stat Name="ASLTSHTGN_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  691. <stat Name="ASLTSHTGN_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  692.  
  693.  
  694. <stat Name="STUNGUN_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  695. <stat Name="STUNGUN_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  696. <stat Name="STUNGUN_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  697. <stat Name="STUNGUN_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  698. <stat Name="STUNGUN_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  699. <stat Name="STUNGUN_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  700. <stat Name="STUNGUN_DB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  701. <stat Name="STUNGUN_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  702. <stat Name="STUNGUN_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  703. <stat Name="STUNGUN_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  704. <stat Name="STUNGUN_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  705. <stat Name="STUNGUN_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  706.  
  707. <stat Name="SNIPERRFL_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  708. <stat Name="SNIPERRFL_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  709. <stat Name="SNIPERRFL_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  710. <stat Name="SNIPERRFL_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  711. <stat Name="SNIPERRFL_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  712. <stat Name="SNIPERRFL_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  713. <stat Name="SNIPERRFL_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  714. <stat Name="SNIPERRFL_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  715. <stat Name="SNIPERRFL_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  716. <stat Name="SNIPERRFL_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  717. <stat Name="SNIPERRFL_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  718.  
  719. <stat Name="HVYSNIPER_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  720. <stat Name="HVYSNIPER_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  721. <stat Name="HVYSNIPER_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  722. <stat Name="HVYSNIPER_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  723. <stat Name="HVYSNIPER_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  724. <stat Name="HVYSNIPER_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  725. <stat Name="HVYSNIPER_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  726. <stat Name="HVYSNIPER_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  727. <stat Name="HVYSNIPER_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  728. <stat Name="HVYSNIPER_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  729. <stat Name="HVYSNIPER_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  730.  
  731. <stat Name="ASLTSNIP_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  732. <stat Name="ASLTSNIP_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  733. <stat Name="ASLTSNIP_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  734. <stat Name="ASLTSNIP_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  735.  
  736.  
  737.  
  738. <stat Name="GRNLAUNCH_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  739. <stat Name="GRNLAUNCH_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  740. <stat Name="GRNLAUNCH_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  741. <stat Name="GRNLAUNCH_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  742. <stat Name="GRNLAUNCH_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  743. <stat Name="GRNLAUNCH_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  744. <stat Name="GRNLAUNCH_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  745. <stat Name="GRNLAUNCH_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  746. <stat Name="GRNLAUNCH_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  747.  
  748. <stat Name="RPG_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  749. <stat Name="RPG_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  750. <stat Name="RPG_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  751. <stat Name="RPG_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  752. <stat Name="RPG_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  753. <stat Name="RPG_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  754. <stat Name="RPG_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  755. <stat Name="RPG_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  756. <stat Name="RPG_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  757.  
  758. <stat Name="MINIGUNS_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  759. <stat Name="MINIGUNS_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  760. <stat Name="MINIGUNS_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  761. <stat Name="MINIGUNS_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  762. <stat Name="MINIGUNS_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by headshot with weapon" />
  763. <stat Name="MINIGUNS_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  764. <stat Name="MINIGUNS_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  765. <stat Name="MINIGUNS_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  766. <stat Name="MINIGUNS_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  767. <stat Name="MINIGUNS_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  768. <stat Name="MINIGUNS_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  769.  
  770.  
  771. <stat Name="GRENADE_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  772. <stat Name="GRENADE_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  773. <stat Name="GRENADE_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  774. <stat Name="GRENADE_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  775. <stat Name="GRENADE_DB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  776. <stat Name="GRENADE_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  777. <stat Name="GRENADE_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  778. <stat Name="GRENADE_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  779. <stat Name="GRENADE_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  780. <stat Name="GRENADE_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  781.  
  782.  
  783.  
  784. <stat Name="SMKGRENADE_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  785. <stat Name="SMKGRENADE_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  786. <stat Name="SMKGRENADE_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  787. <stat Name="SMKGRENADE_HITS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  788. <stat Name="SMKGRENADE_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  789. <stat Name="SMKGRENADE_DB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  790. <stat Name="SMKGRENADE_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  791. <stat Name="SMKGRENADE_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  792. <stat Name="SMKGRENADE_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  793. <stat Name="SMKGRENADE_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  794. <stat Name="SMKGRENADE_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  795.  
  796.  
  797.  
  798. <stat Name="STKYBMB_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  799. <stat Name="STKYBMB_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  800. <stat Name="STKYBMB_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  801. <stat Name="STKYBMB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  802. <stat Name="STKYBMB_DB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  803. <stat Name="STKYBMB_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  804. <stat Name="STKYBMB_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  805. <stat Name="STKYBMB_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  806. <stat Name="STKYBMB_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  807. <stat Name="STKYBMB_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  808.  
  809.  
  810. <stat Name="MOLOTOV_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed with weapon" />
  811. <stat Name="MOLOTOV_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 killed by weapon" />
  812. <stat Name="MOLOTOV_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 0 fired weapon" />
  813. <stat Name="MOLOTOV_HITS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 0 hit with weapon" />
  814. <stat Name="MOLOTOV_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  815. <stat Name="MOLOTOV_DB_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  816. <stat Name="MOLOTOV_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  817. <stat Name="MOLOTOV_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  818. <stat Name="MOLOTOV_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of enemies killed with weapon (S)" />
  819. <stat Name="MOLOTOV_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  820. <stat Name="MOLOTOV_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  821.  
  822.  
  823. <stat Name="EXTINGUISHER_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Time mp char 0 held weapon (MS)" />
  824.  
  825. <stat Name="VEHICLE_ROCKET_KILLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  826. <stat Name="VEHICLE_ROCKET_DEATHS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  827. <stat Name="VEHICLE_ROCKET_SHOTS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 fired weapon" />
  828. <stat Name="VEHICLE_ROCKET_HITS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 hit with weapon" />
  829. <stat Name="VEHICLE_ROCKET_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Time mp char 1 held weapon (MS)" />
  830. <stat Name="VEHICLE_ROCKET_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Time mp char 1 held inventory weapon (S)" />
  831.  
  832. <stat Name="RHINO_ROCKET_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  833. <stat Name="RHINO_ROCKET_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  834. <stat Name="RHINO_ROCKET_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 fired weapon" />
  835. <stat Name="RHINO_ROCKET_HITS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 hit with weapon" />
  836. <stat Name="RHINO_ROCKET_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Time mp char 1 held weapon (MS)" />
  837. <stat Name="RHINO_ROCKET_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held inventory weapon (S)" />
  838. <stat Name="PASS_ROCKET_KILLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  839. <stat Name="PASS_ROCKET_DEATHS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  840. <stat Name="PASS_ROCKET_SHOTS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 fired weapon" />
  841. <stat Name="PASS_ROCKET_HITS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 hit with weapon" />
  842. <stat Name="PASS_ROCKET_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Time mp char 1 held weapon (MS)" />
  843. <stat Name="PASS_ROCKET_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Time mp char 1 held inventory weapon (S)" />
  844. <stat Name="AIRSTRIKE_KILLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  845. <stat Name="AIRSTRIKE_DEATHS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  846. <stat Name="AIRSTRIKE_SHOTS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 fired weapon" />
  847. <stat Name="AIRSTRIKE_HITS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 hit with weapon" />
  848. <stat Name="AIRSTRIKE_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Time mp char 1 held weapon (MS)" />
  849. <stat Name="AIRSTRIKE_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Time mp char 1 held inventory weapon (S)" />
  850. <stat Name="VEH_ROCKET_KILLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  851. <stat Name="VEH_ROCKET_DEATHS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  852. <stat Name="VEH_ROCKET_SHOTS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 fired weapon" />
  853. <stat Name="VEH_ROCKET_HITS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Number of times mp char 1 hit with weapon" />
  854. <stat Name="VEH_ROCKET_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Time mp char 1 held weapon (MS)" />
  855. <stat Name="VEH_ROCKET_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="coder" characterStat="true" Comment="Time mp char 1 held inventory weapon (S)" />
  856. <stat Name="BUZZARD_BULLET_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  857. <stat Name="BUZZARD_BULLET_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  858. <stat Name="BUZZARD_BULLET_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 fired weapon" />
  859. <stat Name="BUZZARD_BULLET_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 hit with weapon" />
  860. <stat Name="BUZZARD_BULLET_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by headshot with weapon" />
  861. <stat Name="BUZZARD_BULLET_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held weapon (MS)" />
  862. <stat Name="BUZZARD_BULLET_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held inventory weapon (S)" />
  863. <stat Name="BUZZARD_ROCKET_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  864. <stat Name="BUZZARD_ROCKET_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  865. <stat Name="BUZZARD_ROCKET_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 fired weapon" />
  866. <stat Name="BUZZARD_ROCKET_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 hit with weapon" />
  867. <stat Name="BUZZARD_ROCKET_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held weapon (MS)" />
  868. <stat Name="BUZZARD_ROCKET_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held inventory weapon (S)" />
  869. <stat Name="ANNIHL_BULLET_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  870. <stat Name="ANNIHL_BULLET_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  871. <stat Name="ANNIHL_BULLET_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 fired weapon" />
  872. <stat Name="ANNIHL_BULLET_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 hit with weapon" />
  873. <stat Name="ANNIHL_BULLET_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by headshot with weapon" />
  874. <stat Name="ANNIHL_BULLET_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held weapon (MS)" />
  875. <stat Name="ANNIHL_BULLET_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held inventory weapon (S)" />
  876. <stat Name="HUNTER_BULLET_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  877. <stat Name="HUNTER_BULLET_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  878. <stat Name="HUNTER_BULLET_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 fired weapon" />
  879. <stat Name="HUNTER_BULLET_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 hit with weapon" />
  880. <stat Name="HUNTER_BULLET_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by headshot with weapon" />
  881. <stat Name="HUNTER_BULLET_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held weapon (MS)" />
  882. <stat Name="HUNTER_BULLET_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held inventory weapon (S)" />
  883. <stat Name="HUNTER_ROCKET_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  884. <stat Name="HUNTER_ROCKET_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  885. <stat Name="HUNTER_ROCKET_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 fired weapon" />
  886. <stat Name="HUNTER_ROCKET_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 hit with weapon" />
  887. <stat Name="HUNTER_ROCKET_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held weapon (MS)" />
  888. <stat Name="HUNTER_ROCKET_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held inventory weapon (S)" />
  889. <stat Name="LAZER_BULLET_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  890. <stat Name="LAZER_BULLET_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  891. <stat Name="LAZER_BULLET_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 fired weapon" />
  892. <stat Name="LAZER_BULLET_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 hit with weapon" />
  893. <stat Name="LAZER_BULLET_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by headshot with weapon" />
  894. <stat Name="LAZER_BULLET_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held weapon (MS)" />
  895. <stat Name="LAZER_BULLET_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held inventory weapon (S)" />
  896. <stat Name="LAZER_ROCKET_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  897. <stat Name="LAZER_ROCKET_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  898. <stat Name="LAZER_ROCKET_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 fired weapon" />
  899. <stat Name="LAZER_ROCKET_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 hit with weapon" />
  900. <stat Name="LAZER_ROCKET_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held weapon (MS)" />
  901. <stat Name="LAZER_ROCKET_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held inventory weapon (S)" />
  902. <stat Name="SPPLAYER_LASER_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  903. <stat Name="SPPLAYER_LASER_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  904. <stat Name="SPPLAYER_LASER_SHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 fired weapon" />
  905. <stat Name="SPPLAYER_LASER_HITS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 hit with weapon" />
  906. <stat Name="SPPLAYER_LASER_HELDTIME" Type="u32" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held weapon (MS)" />
  907. <stat Name="SPPLAYER_LASER_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Time mp char 1 held inventory weapon (S)" />
  908. <stat Name="WATER_CANNON_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed with weapon" />
  909. <stat Name="WATER_CANNON_DEATHS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="Number of times mp char 1 killed by weapon" />
  910. <stat Name="PARACHUTE_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  911. <stat Name="PARACHUTE_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  912. <stat Name="PARACHUTE_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  913. <stat Name="PARACHUTE_CURRENT_TINT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  914.  
  915. <stat Name="PETROLCAN_FM_AMMO_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  916. <stat Name="PETROLCAN_FM_AMMO_CURRENT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Ammo bought for weapon" />
  917. <stat Name="PETROLCAN_IN_POSSESSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  918. <stat Name="PETROLCAN_AQUIRED_AS_GIFT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  919.  
  920. <stat Name="HELMET_CURRENT_COLOR" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Is weapon in inventory" />
  921.  
  922. <!-- SCAR DATA -->
  923. <!--MP CHARS -->
  924. <stat Name="DAMAGE_SCAR_NUMBER" Type="int" SaveCategory="1" online="true" profile="false" Min="0" Max="12" Owner="script" characterStat="true" Comment="Damage Scar Data - Number of Scars" />
  925. <!-- Scar index 0 -->
  926. <stat Name="DAMAGE_SCAR_ZONE_0" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  927. <stat Name="DAMAGE_SCAR_HASH_VALUE_0" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  928. <stat Name="DAMAGE_SCAR_SCALE_0" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  929. <stat Name="DAMAGE_SCAR_ROTATION_0" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  930. <stat Name="DAMAGE_SCAR_UVPOS_0" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  931. <stat Name="DAMAGE_SCAR_FORCEFRAME_0" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  932. <stat Name="DAMAGE_SCAR_AGE_0" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  933. <!-- Scar index 1 -->
  934. <stat Name="DAMAGE_SCAR_ZONE_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  935. <stat Name="DAMAGE_SCAR_HASH_VALUE_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  936. <stat Name="DAMAGE_SCAR_SCALE_1" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  937. <stat Name="DAMAGE_SCAR_ROTATION_1" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  938. <stat Name="DAMAGE_SCAR_UVPOS_1" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  939. <stat Name="DAMAGE_SCAR_FORCEFRAME_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  940. <stat Name="DAMAGE_SCAR_AGE_1" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  941. <!-- Scar index 2 -->
  942. <stat Name="DAMAGE_SCAR_ZONE_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  943. <stat Name="DAMAGE_SCAR_HASH_VALUE_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  944. <stat Name="DAMAGE_SCAR_SCALE_2" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  945. <stat Name="DAMAGE_SCAR_ROTATION_2" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  946. <stat Name="DAMAGE_SCAR_UVPOS_2" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  947. <stat Name="DAMAGE_SCAR_FORCEFRAME_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  948. <stat Name="DAMAGE_SCAR_AGE_2" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  949. <!-- Scar index 3 -->
  950. <stat Name="DAMAGE_SCAR_ZONE_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  951. <stat Name="DAMAGE_SCAR_HASH_VALUE_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  952. <stat Name="DAMAGE_SCAR_SCALE_3" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  953. <stat Name="DAMAGE_SCAR_ROTATION_3" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  954. <stat Name="DAMAGE_SCAR_UVPOS_3" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  955. <stat Name="DAMAGE_SCAR_FORCEFRAME_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  956. <stat Name="DAMAGE_SCAR_AGE_3" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  957. <!-- Scar index 4 -->
  958. <stat Name="DAMAGE_SCAR_ZONE_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  959. <stat Name="DAMAGE_SCAR_HASH_VALUE_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  960. <stat Name="DAMAGE_SCAR_SCALE_4" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  961. <stat Name="DAMAGE_SCAR_ROTATION_4" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  962. <stat Name="DAMAGE_SCAR_UVPOS_4" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  963. <stat Name="DAMAGE_SCAR_FORCEFRAME_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  964. <stat Name="DAMAGE_SCAR_AGE_4" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  965. <!-- Scar index 5 -->
  966. <stat Name="DAMAGE_SCAR_ZONE_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  967. <stat Name="DAMAGE_SCAR_HASH_VALUE_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  968. <stat Name="DAMAGE_SCAR_SCALE_5" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  969. <stat Name="DAMAGE_SCAR_ROTATION_5" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  970. <stat Name="DAMAGE_SCAR_UVPOS_5" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  971. <stat Name="DAMAGE_SCAR_FORCEFRAME_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  972. <stat Name="DAMAGE_SCAR_AGE_5" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  973. <!-- Scar index 6 -->
  974. <stat Name="DAMAGE_SCAR_ZONE_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  975. <stat Name="DAMAGE_SCAR_HASH_VALUE_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  976. <stat Name="DAMAGE_SCAR_SCALE_6" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  977. <stat Name="DAMAGE_SCAR_ROTATION_6" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  978. <stat Name="DAMAGE_SCAR_UVPOS_6" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  979. <stat Name="DAMAGE_SCAR_FORCEFRAME_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  980. <stat Name="DAMAGE_SCAR_AGE_6" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  981. <!-- Scar index 7 -->
  982. <stat Name="DAMAGE_SCAR_ZONE_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  983. <stat Name="DAMAGE_SCAR_HASH_VALUE_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  984. <stat Name="DAMAGE_SCAR_SCALE_7" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  985. <stat Name="DAMAGE_SCAR_ROTATION_7" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  986. <stat Name="DAMAGE_SCAR_UVPOS_7" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  987. <stat Name="DAMAGE_SCAR_FORCEFRAME_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  988. <stat Name="DAMAGE_SCAR_AGE_7" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  989. <!-- Scar index 8 -->
  990. <stat Name="DAMAGE_SCAR_ZONE_8" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  991. <stat Name="DAMAGE_SCAR_HASH_VALUE_8" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  992. <stat Name="DAMAGE_SCAR_SCALE_8" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  993. <stat Name="DAMAGE_SCAR_ROTATION_8" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  994. <stat Name="DAMAGE_SCAR_UVPOS_8" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  995. <stat Name="DAMAGE_SCAR_FORCEFRAME_8" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  996. <stat Name="DAMAGE_SCAR_AGE_8" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  997. <!-- Scar index 9 -->
  998. <stat Name="DAMAGE_SCAR_ZONE_9" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  999. <stat Name="DAMAGE_SCAR_HASH_VALUE_9" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  1000. <stat Name="DAMAGE_SCAR_SCALE_9" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  1001. <stat Name="DAMAGE_SCAR_ROTATION_9" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  1002. <stat Name="DAMAGE_SCAR_UVPOS_9" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  1003. <stat Name="DAMAGE_SCAR_FORCEFRAME_9" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  1004. <stat Name="DAMAGE_SCAR_AGE_9" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  1005. <!-- Scar index 10 -->
  1006. <stat Name="DAMAGE_SCAR_ZONE_10" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  1007. <stat Name="DAMAGE_SCAR_HASH_VALUE_10" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  1008. <stat Name="DAMAGE_SCAR_SCALE_10" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  1009. <stat Name="DAMAGE_SCAR_ROTATION_10" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  1010. <stat Name="DAMAGE_SCAR_UVPOS_10" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  1011. <stat Name="DAMAGE_SCAR_FORCEFRAME_10" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  1012. <stat Name="DAMAGE_SCAR_AGE_10" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  1013. <!-- Scar index 11 -->
  1014. <stat Name="DAMAGE_SCAR_ZONE_11" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  1015. <stat Name="DAMAGE_SCAR_HASH_VALUE_11" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  1016. <stat Name="DAMAGE_SCAR_SCALE_11" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  1017. <stat Name="DAMAGE_SCAR_ROTATION_11" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  1018. <stat Name="DAMAGE_SCAR_UVPOS_11" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  1019. <stat Name="DAMAGE_SCAR_FORCEFRAME_11" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  1020. <stat Name="DAMAGE_SCAR_AGE_11" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  1021. <!-- Scar index 12 -->
  1022. <stat Name="DAMAGE_SCAR_ZONE_12" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  1023. <stat Name="DAMAGE_SCAR_HASH_VALUE_12" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  1024. <stat Name="DAMAGE_SCAR_SCALE_12" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  1025. <stat Name="DAMAGE_SCAR_ROTATION_12" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  1026. <stat Name="DAMAGE_SCAR_UVPOS_12" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  1027. <stat Name="DAMAGE_SCAR_FORCEFRAME_12" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  1028. <stat Name="DAMAGE_SCAR_AGE_12" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  1029. <!-- Scar index 13 -->
  1030. <stat Name="DAMAGE_SCAR_ZONE_13" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  1031. <stat Name="DAMAGE_SCAR_HASH_VALUE_13" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  1032. <stat Name="DAMAGE_SCAR_SCALE_13" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  1033. <stat Name="DAMAGE_SCAR_ROTATION_13" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  1034. <stat Name="DAMAGE_SCAR_UVPOS_13" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  1035. <stat Name="DAMAGE_SCAR_FORCEFRAME_13" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  1036. <stat Name="DAMAGE_SCAR_AGE_13" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  1037. <!-- Scar index 14 -->
  1038. <stat Name="DAMAGE_SCAR_ZONE_14" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  1039. <stat Name="DAMAGE_SCAR_HASH_VALUE_14" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  1040. <stat Name="DAMAGE_SCAR_SCALE_14" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  1041. <stat Name="DAMAGE_SCAR_ROTATION_14" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  1042. <stat Name="DAMAGE_SCAR_UVPOS_14" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  1043. <stat Name="DAMAGE_SCAR_FORCEFRAME_14" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  1044. <stat Name="DAMAGE_SCAR_AGE_14" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  1045. <!-- Scar index 15 -->
  1046. <stat Name="DAMAGE_SCAR_ZONE_15" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - ePedDamageZones zone" />
  1047. <stat Name="DAMAGE_SCAR_HASH_VALUE_15" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Name hashed" />
  1048. <stat Name="DAMAGE_SCAR_SCALE_15" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - scale" />
  1049. <stat Name="DAMAGE_SCAR_ROTATION_15" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - rotation" />
  1050. <stat Name="DAMAGE_SCAR_UVPOS_15" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - uv Position" />
  1051. <stat Name="DAMAGE_SCAR_FORCEFRAME_15" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - force frame" />
  1052. <stat Name="DAMAGE_SCAR_AGE_15" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Damage Scar Data - Age" />
  1053.  
  1054. <!-- STATS TRACKED IN SCRIPT -->
  1055. <!--MP CHARS -->
  1056.  
  1057. <stat Name="CHAR_PREFERRED_CREW" Type="u64" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="preferred crew" />
  1058. <stat Name="CHAR_ISACTIVE" Type="bool" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - Is this slot being used?" />
  1059. <stat Name="CHAR_XP_FM" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" Min="0" Max="40000000" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - XP Value" />
  1060. <stat Name="CHAR_RANK_FM" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" Min="0" Max="1001" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - XP Value" />
  1061. <stat Name="NEXT_RANKXP_FM" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" Min="0" Max="1001" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - XP Value" />
  1062. <stat Name="PREV_RANKXP_FM" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" Min="0" Max="1001" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - XP Value" />
  1063.  
  1064. <stat Name="CHAR_NAME" Type="string" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - XP Value" />
  1065. <stat Name="CHAR_WEAPON1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Weapon 1" />
  1066. <stat Name="CHAR_WEAPON2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Weapon 2" />
  1067. <stat Name="CHAR_EQUIPPED_ADDONS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Equipped addons" />
  1068. <stat Name="CHAR_WEAP_UNLOCKED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Weapons unlocked bitset" />
  1069. <stat Name="CHAR_WEAP_UNLOCKED2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Weapons unlocked bitset 2" />
  1070. <stat Name="CHAR_WEAP_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Weapons unlocked bitset" />
  1071. <stat Name="CHAR_WEAP_VIEWED2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Weapons unlocked bitset 2" />
  1072. <stat Name="CHAR_WEAP_ADDON_1_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Addons unlocked bitset 1" />
  1073. <stat Name="CHAR_WEAP_ADDON_2_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Addons unlocked bitset 2" />
  1074. <stat Name="CHAR_WEAP_ADDON_3_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Addons unlocked bitset 3" />
  1075. <stat Name="CHAR_WEAP_ADDON_4_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Addons unlocked bitset 4" />
  1076. <stat Name="CHAR_WEAP_ADDON_1_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Addons unlocked bitset 1" />
  1077. <stat Name="CHAR_WEAP_ADDON_2_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Addons unlocked bitset 2" />
  1078. <stat Name="CHAR_WEAP_ADDON_3_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Addons unlocked bitset 3" />
  1079. <stat Name="CHAR_WEAP_ADDON_4_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Addons unlocked bitset 4" />
  1080. <stat Name="CHAR_WEAP_EQUIPPED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Equipped weapons bitset" />
  1081. <stat Name="CHAR_WEAP_EQUIPPED2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Equipped weapons bitset 2" />
  1082. <stat Name="CHAR_WEAP_ADDON_1_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Equipped addons bitset 1" />
  1083. <stat Name="CHAR_WEAP_ADDON_2_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Equipped addons bitset 2" />
  1084. <stat Name="CHAR_WEAP_ADDON_3_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Equipped addons bitset 3" />
  1085. <stat Name="CHAR_WEAP_ADDON_4_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Equipped addons bitset 4" />
  1086. <stat Name="CHAR_WEAP_FREE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Cost Free weapons bitset" />
  1087. <stat Name="CHAR_WEAP_FREE2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Cost Free weapons bitset 2" />
  1088. <stat Name="CHAR_ABILITY_1_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 1" />
  1089. <stat Name="CHAR_ABILITY_2_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 2" />
  1090. <stat Name="CHAR_ABILITY_3_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 2" />
  1091.  
  1092.  
  1093.  
  1094. <stat Name="CHAR_FM_PACKAGE_1_COLLECT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 1" />
  1095. <stat Name="CHAR_FM_PACKAGE_2_COLLECT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 2" />
  1096. <stat Name="CHAR_FM_PACKAGE_3_COLLECT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 2" />
  1097. <stat Name="CHAR_FM_PACKAGE_4_COLLECT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 1" />
  1098. <stat Name="CHAR_FM_PACKAGE_5_COLLECT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 2" />
  1099. <stat Name="CHAR_FM_PACKAGE_6_COLLECT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 2" />
  1100. <stat Name="CHAR_FM_PACKAGE_7_COLLECT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 1" />
  1101. <stat Name="CHAR_FM_PACKAGE_8_COLLECT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 2" />
  1102. <stat Name="CHAR_FM_PACKAGE_9_COLLECT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 2" />
  1103. <stat Name="CHAR_NO_FM_PACKAGES_COL" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 2" />
  1104. <stat Name="CHAR_FM_WEAP_UNLOCKED" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Weapons unlocked bitset" />
  1105. <stat Name="CHAR_FM_WEAP_UNLOCKED2" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Weapons unlocked bitset 2" />
  1106. <stat Name="CHAR_FM_WEAP_ADDON_1_UNLCK" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Addons unlocked bitset 1" />
  1107. <stat Name="CHAR_FM_WEAP_ADDON_2_UNLCK" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Addons unlocked bitset 2" />
  1108. <stat Name="CHAR_FM_WEAP_ADDON_3_UNLCK" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Addons unlocked bitset 3" />
  1109. <stat Name="CHAR_FM_WEAP_ADDON_4_UNLCK" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Addons unlocked bitset 4" />
  1110. <stat Name="CHAR_FM_WEAP_EQUIPPED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Equipped weapons bitset" />
  1111. <stat Name="CHAR_FM_WEAP_EQUIPPED2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Equipped weapons bitset 2" />
  1112. <stat Name="CHAR_FM_WEAP_ADDON_1_EQUIP" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Equipped addons bitset 1" />
  1113. <stat Name="CHAR_FM_WEAP_ADDON_2_EQUIP" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Equipped addons bitset 2" />
  1114. <stat Name="CHAR_FM_WEAP_ADDON_3_EQUIP" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Equipped addons bitset 3" />
  1115. <stat Name="CHAR_FM_WEAP_ADDON_4_EQUIP" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Equipped addons bitset 4" />
  1116. <stat Name="CHAR_FM_WEAP_FREE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Cost Free weapons bitset" />
  1117. <stat Name="CHAR_FM_WEAP_FREE2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Cost Free weapons bitset 2" />
  1118. <stat Name="CHAR_FM_ABILITY_1_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 1" />
  1119. <stat Name="CHAR_FM_ABILITY_2_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 2" />
  1120. <stat Name="CHAR_FM_ABILITY_3_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Ability Unlocked bitset 2" />
  1121.  
  1122. <stat Name="CHAR_KIT_1_FM_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 1" />
  1123. <stat Name="CHAR_KIT_2_FM_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 2" />
  1124. <stat Name="CHAR_KIT_3_FM_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 1" />
  1125. <stat Name="CHAR_KIT_4_FM_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 2" />
  1126. <stat Name="CHAR_KIT_5_FM_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 1" />
  1127. <stat Name="CHAR_KIT_6_FM_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 2" />
  1128. <stat Name="CHAR_KIT_7_FM_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 2" />
  1129. <stat Name="CHAR_KIT_8_FM_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 1" />
  1130. <stat Name="CHAR_KIT_9_FM_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 2" />
  1131. <stat Name="CHAR_KIT_1_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 1" />
  1132. <stat Name="CHAR_KIT_2_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 2" />
  1133. <stat Name="CHAR_KIT_3_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 3" />
  1134. <stat Name="CHAR_KIT_4_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 4" />
  1135. <stat Name="CHAR_KIT_5_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 5" />
  1136. <stat Name="CHAR_KIT_6_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 6" />
  1137. <stat Name="CHAR_KIT_7_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 7" />
  1138. <stat Name="CHAR_KIT_8_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 8" />
  1139. <stat Name="CHAR_KIT_9_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 9" />
  1140. <stat Name="CHAR_KIT_1_FM_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 1" />
  1141. <stat Name="CHAR_KIT_2_FM_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 2" />
  1142. <stat Name="CHAR_KIT_3_FM_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 1" />
  1143. <stat Name="CHAR_KIT_4_FM_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 2" />
  1144. <stat Name="CHAR_KIT_5_FM_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 1" />
  1145. <stat Name="CHAR_KIT_6_FM_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 2" />
  1146. <stat Name="CHAR_KIT_7_FM_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 2" />
  1147. <stat Name="CHAR_KIT_8_FM_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 1" />
  1148. <stat Name="CHAR_KIT_9_FM_VIEWED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 2" />
  1149. <stat Name="CHAR_HEIST_1_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Clothes Unlocked bitset 3" />
  1150.  
  1151. <stat Name="CHAR_CREWUNLOCK_1_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 9" />
  1152. <stat Name="CHAR_CREWUNLOCK_2_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 9" />
  1153.  
  1154. <stat Name="CHAR_CREWUNLOCK_3_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 9" />
  1155.  
  1156. <stat Name="CHAR_CREWUNLOCK_4_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 9" />
  1157.  
  1158. <stat Name="CHAR_CREWUNLOCK_5_FM_EQUIP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit equipped bitset 9" />
  1159.  
  1160.  
  1161.  
  1162.  
  1163. <stat Name="CHAR_FM_CARMOD_1_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player CarMod Unlocked bitset 1" />
  1164. <stat Name="CHAR_FM_CARMOD_2_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player CarMod Unlocked bitset 2" />
  1165. <stat Name="CHAR_FM_CARMOD_3_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player CarMod Unlocked bitset 2" />
  1166. <stat Name="CHAR_FM_CARMOD_4_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player CarMod Unlocked bitset 2" />
  1167. <stat Name="CHAR_FM_CARMOD_5_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player CarMod Unlocked bitset 2" />
  1168. <stat Name="CHAR_FM_CARMOD_6_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player CarMod Unlocked bitset 2" />
  1169. <stat Name="CHAR_FM_CARMOD_7_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player CarMod Unlocked bitset 2" />
  1170.  
  1171.  
  1172. <stat Name="CHAR_FM_HEALTH_1_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Health Unlocked bitset 1" />
  1173. <stat Name="CHAR_FM_HEALTH_2_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Health Unlocked bitset 2" />
  1174. <stat Name="CHAR_FM_VEHICLE_1_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Vehicle Unlocked bitset 1" />
  1175. <stat Name="CHAR_FM_VEHICLE_2_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Vehicle Unlocked bitset 2" />
  1176. <stat Name="CHAR_FM_CLOTHES_1_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Clothes Unlocked bitset 1" />
  1177. <stat Name="CHAR_FM_CLOTHES_2_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Clothes Unlocked bitset 2" />
  1178. <stat Name="CHAR_FM_CLOTHES_3_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Clothes Unlocked bitset 3" />
  1179. <stat Name="CHAR_FM_CLOTHES_4_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Clothes Unlocked bitset 3" />
  1180. <stat Name="CHAR_FM_CLOTHES_5_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Clothes Unlocked bitset 3" />
  1181. <stat Name="CHAR_FM_CLOTHES_6_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Clothes Unlocked bitset 3" />
  1182. <stat Name="CHAR_FM_CLOTHES_7_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Clothes Unlocked bitset 3" />
  1183. <stat Name="CHAR_FM_CLOTHES_8_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Clothes Unlocked bitset 3" />
  1184. <stat Name="CHAR_FM_CLOTHES_9_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Clothes Unlocked bitset 3" />
  1185. <stat Name="CHAR_FM_CLOTHES_10_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Clothes Unlocked bitset 3" />
  1186. <stat Name="CHAR_FM_CLOTHES_11_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Clothes Unlocked bitset 3" />
  1187.  
  1188. <stat Name="CHAR_FM_HAIRCUT_1_UNLCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Clothes Unlocked bitset 3" />
  1189.  
  1190. <stat Name="CHAR_FM_STORED_HAIRDO" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stored player hairdo" />
  1191. <stat Name="CHAR_FM_FORCED_HAIR_ITEM" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Item that force removed players hair" />
  1192. <stat Name="CHAR_FM_FORCED_HAIR_TYPE" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Type that force removed players hair" />
  1193.  
  1194. <stat Name="CHAR_FM_PLAT_AWARD_COUNT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Number Of Platinum Awards a Player has" />
  1195.  
  1196. <stat Name="CHAR_ACH45_TRACKER" Type="int" SaveCategory="1" online="true" profile="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - Bitfield for tracking ACH45 - Enjoy your stay" />
  1197.  
  1198. <stat Name="PLATINUM_INTCHAR_0" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1199. <stat Name="PLATINUM_INTCHAR_1" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1200. <stat Name="PLATINUM_INTCHAR_2" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1201. <stat Name="PLATINUM_INTCHAR_3" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1202. <stat Name="PLATINUM_FLOATCHAR_0" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1203. <stat Name="PLATINUM_FLOATCHAR_1" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1204. <stat Name="PLATINUM_FLOATCHAR_2" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1205. <stat Name="PLATINUM_BOOLCHAR_0" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1206. <stat Name="PLATINUM_BOOLCHAR_1" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1207. <stat Name="PLATINUM_BOOLCHAR_2" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1208.  
  1209. <stat Name="GOLD_INTCHAR_0" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1210. <stat Name="GOLD_INTCHAR_1" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1211. <stat Name="GOLD_INTCHAR_2" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1212. <stat Name="GOLD_INTCHAR_3" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1213.  
  1214. <stat Name="GOLD_FLOATCHAR_0" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1215. <stat Name="GOLD_FLOATCHAR_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1216. <stat Name="GOLD_FLOATCHAR_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1217. <stat Name="GOLD_BOOLCHAR_0" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1218. <stat Name="GOLD_BOOLCHAR_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1219. <stat Name="GOLD_BOOLCHAR_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1220.  
  1221. <stat Name="SILVER_INTCHAR_0" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1222. <stat Name="SILVER_INTCHAR_1" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1223. <stat Name="SILVER_INTCHAR_2" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1224. <stat Name="SILVER_INTCHAR_3" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1225. <stat Name="SILVER_FLOATCHAR_0" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1226. <stat Name="SILVER_FLOATCHAR_1" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1227. <stat Name="SILVER_FLOATCHAR_2" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1228. <stat Name="SILVER_BOOLCHAR_0" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1229. <stat Name="SILVER_BOOLCHAR_1" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1230. <stat Name="SILVER_BOOLCHAR_2" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1231.  
  1232. <stat Name="BRONZE_INTCHAR_0" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1233. <stat Name="BRONZE_INTCHAR_1" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1234. <stat Name="BRONZE_INTCHAR_2" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1235. <stat Name="BRONZE_INTCHAR_3" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1236.  
  1237. <stat Name="BRONZE_FLOATCHAR_0" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1238. <stat Name="BRONZE_FLOATCHAR_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1239. <stat Name="BRONZE_FLOATCHAR_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1240. <stat Name="BRONZE_BOOLCHAR_0" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1241. <stat Name="BRONZE_BOOLCHAR_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1242. <stat Name="BRONZE_BOOLCHAR_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1243.  
  1244. <stat Name="CHAR_WEAP_PURCHASED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1245. <stat Name="CHAR_WEAP_PURCHASED2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1246. <stat Name="CHAR_WEAP_FM_PURCHASE" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1247. <stat Name="CHAR_WEAP_FM_PURCHASE2" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1248.  
  1249.  
  1250. <stat Name="CHAR_KIT_FM_PURCHASE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1251. <stat Name="CHAR_KIT_FM_PURCHASE2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1252. <stat Name="CHAR_KIT_FM_PURCHASE3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1253. <stat Name="CHAR_KIT_FM_PURCHASE4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1254. <stat Name="CHAR_KIT_FM_PURCHASE5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1255. <stat Name="CHAR_KIT_FM_PURCHASE6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1256. <stat Name="CHAR_KIT_FM_PURCHASE7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1257. <stat Name="CHAR_KIT_FM_PURCHASE8" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1258. <stat Name="CHAR_KIT_FM_PURCHASE9" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1259.  
  1260. <stat Name="WEAP_FM_ADDON_PURCH" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1261. <stat Name="WEAP_FM_ADDON_PURCH2" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1262. <stat Name="WEAP_FM_ADDON_PURCH3" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1263. <stat Name="WEAP_FM_ADDON_PURCH4" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  1264.  
  1265. <stat Name="CHAR_DATE_CREATED" Type="date" SaveCategory="1" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - The Date the player created this character" />
  1266. <stat Name="CHAR_DATE_RANKUP" Type="date" SaveCategory="1" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - The Date the player last ranked up" />
  1267. <stat Name="CHAR_TOTAL_TIME_MISSION" Type="u32" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - MISSIONS -Average time spent on missions (time on missions/number of missions completed)" />
  1268. <stat Name="CHAR_CURRENT_HEALTH" Type="int" SaveCategory="1" online="true" profile="false" Min="0" Max="300" Owner="script" characterStat="true" Comment="MP Char 0 - Players current health" />
  1269. <stat Name="CHAR_CURRENT_ARMOUR" Type="int" SaveCategory="1" online="true" profile="false" Min="0" Max="60" Owner="script" characterStat="true" Comment="MP Char 0 - Players current health" />
  1270. <stat Name="CHAR_CURRENT_WANTED" Type="int" SaveCategory="1" online="true" profile="true" Min="0" Max="7" Owner="script" characterStat="true" Comment="MP Char 0 - Players current health" />
  1271. <stat Name="CHAR_LAST_PLAY_TIME" Type="date" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Players current health" />
  1272.  
  1273. <!-- Player vehicle -->
  1274.  
  1275. <stat Name="RACES_WON_PC" Type="float" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Vehicles- Percentage of Races won" />
  1276. <stat Name="RACES_WON" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Vehicles- no of Races won" />
  1277. <stat Name="RACES_LOST" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Vehicles- no of Races LOST" />
  1278. <stat Name="NO_CARS_REPAIR" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Vehicles- No. Cars Repaired" />
  1279. <stat Name="AVERAGE_NO_PASSENGERS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Vehicles- Average number of passengers" />
  1280. <stat Name="TIME_DRIVING_PASSENGER" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Vehicles- Time driving passengers" />
  1281. <stat Name="TOTAL_ACCUM_PASSENGER" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Vehicles- Time driving passengers" />
  1282. <stat Name="VEHICLES_SPRAYED" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Vehicles- No of vehicles resprayed" />
  1283.  
  1284. <stat Name="NO_STOLEN_VEH_SCRIPT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - No cars stolen in script" />
  1285. <!--Shop data -->
  1286. <stat Name="SHOPFM_DEFAULT_INFO_SET" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1287. <stat Name="SHOPFM_TYPES_VISITED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1288. <stat Name="SHOPFM_HAIRDO_01_BH" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1289. <stat Name="SHOPFM_HAIRDO_02_SC" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1290. <stat Name="SHOPFM_HAIRDO_03_V" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1291. <stat Name="SHOPFM_HAIRDO_04_SS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1292. <stat Name="SHOPFM_HAIRDO_05_MP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1293. <stat Name="SHOPFM_HAIRDO_06_HW" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1294. <stat Name="SHOPFM_HAIRDO_07_PB" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1295. <stat Name="SHOPFM_CLOTHES_L_01_SC" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1296. <stat Name="SHOPFM_CLOTHES_L_02_GS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1297. <stat Name="SHOPFM_CLOTHES_L_03_DT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1298. <stat Name="SHOPFM_CLOTHES_L_04_CS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1299. <stat Name="SHOPFM_CLOTHES_L_05_GSD" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1300. <stat Name="SHOPFM_CLOTHES_L_06_VC" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1301. <stat Name="SHOPFM_CLOTHES_L_07_PB" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1302. <stat Name="SHOPFM_CLOTHES_M_01_SM" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1303. <stat Name="SHOPFM_CLOTHES_M_02_PB" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1304. <stat Name="SHOPFM_CLOTHES_M_03_H" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1305. <stat Name="SHOPFM_CLOTHES_M_04_HW" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1306. <stat Name="SHOPFM_CLOTHES_M_05_GOH" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1307. <stat Name="SHOPFM_CLOTHES_H_01_BH" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1308. <stat Name="SHOPFM_CLOTHES_H_02_B" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1309. <stat Name="SHOPFM_CLOTHES_H_03_MW" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1310. <stat Name="SHOPFM_CLOTHES_A_01_VB" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1311. <stat Name="SHOPFM_TATTOO_01_HW" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1312. <stat Name="SHOPFM_TATTOO_02_SS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1313. <stat Name="SHOPFM_TATTOO_03_PB" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1314. <stat Name="SHOPFM_TATTOO_04_VC" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1315. <stat Name="SHOPFM_TATTOO_05_ELS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1316. <stat Name="SHOPFM_TATTOO_06_GOH" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1317. <stat Name="SHOPFM_GUN_01_DT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1318. <stat Name="SHOPFM_GUN_02_SS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1319. <stat Name="SHOPFM_GUN_03_HW" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1320. <stat Name="SHOPFM_GUN_04_ELS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1321. <stat Name="SHOPFM_GUN_05_PB" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1322. <stat Name="SHOPFM_GUN_06_LS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1323. <stat Name="SHOPFM_GUN_07_MW" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1324. <stat Name="SHOPFM_GUN_08_CS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1325. <stat Name="SHOPFM_GUN_09_GOH" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1326. <stat Name="SHOPFM_GUN_10_VWH" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1327. <stat Name="SHOPFM_GUN_11_ID1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1328. <stat Name="SHOPFM_CARMOD_01_AP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1329. <stat Name="SHOPFM_CARMOD_02_ID" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1330. <stat Name="SHOPFM_CARMOD_03_HW" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1331. <stat Name="SHOPFM_CARMOD_04_DT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1332. <stat Name="SHOPFM_CARMOD_05_ID2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1333. <stat Name="SHOPFM_CARMOD_06_BT1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1334. <stat Name="SHOPFM_CARMOD_07_CS1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1335. <stat Name="SHOPFM_CARMOD_08_CS6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Shop Data" />
  1336.  
  1337. <!--Clothes data -->
  1338. <!--AVAILABLE-->
  1339. <stat Name="CLTHS_AVAILABLE_HAIR" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1340. <stat Name="CLTHS_AVAILABLE_HAIR_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1341. <stat Name="CLTHS_AVAILABLE_HAIR_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1342. <stat Name="CLTHS_AVAILABLE_HAIR_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1343. <stat Name="CLTHS_AVAILABLE_HAIR_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1344. <stat Name="CLTHS_AVAILABLE_HAIR_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1345. <stat Name="CLTHS_AVAILABLE_HAIR_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1346. <stat Name="CLTHS_AVAILABLE_HAIR_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1347.  
  1348. <stat Name="CLTHS_AVAILABLE_JBIB" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1349. <stat Name="CLTHS_AVAILABLE_JBIB_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1350. <stat Name="CLTHS_AVAILABLE_JBIB_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1351. <stat Name="CLTHS_AVAILABLE_JBIB_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1352. <stat Name="CLTHS_AVAILABLE_JBIB_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1353. <stat Name="CLTHS_AVAILABLE_JBIB_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1354. <stat Name="CLTHS_AVAILABLE_JBIB_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1355. <stat Name="CLTHS_AVAILABLE_JBIB_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1356.  
  1357. <stat Name="CLTHS_AVAILABLE_LEGS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1358. <stat Name="CLTHS_AVAILABLE_LEGS_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1359. <stat Name="CLTHS_AVAILABLE_LEGS_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1360. <stat Name="CLTHS_AVAILABLE_LEGS_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1361. <stat Name="CLTHS_AVAILABLE_LEGS_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1362. <stat Name="CLTHS_AVAILABLE_LEGS_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1363. <stat Name="CLTHS_AVAILABLE_LEGS_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1364. <stat Name="CLTHS_AVAILABLE_LEGS_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1365.  
  1366. <stat Name="CLTHS_AVAILABLE_FEET" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1367. <stat Name="CLTHS_AVAILABLE_FEET_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1368. <stat Name="CLTHS_AVAILABLE_FEET_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1369. <stat Name="CLTHS_AVAILABLE_FEET_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1370. <stat Name="CLTHS_AVAILABLE_FEET_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1371. <stat Name="CLTHS_AVAILABLE_FEET_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1372. <stat Name="CLTHS_AVAILABLE_FEET_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1373. <stat Name="CLTHS_AVAILABLE_FEET_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1374.  
  1375. <stat Name="CLTHS_AVAILABLE_BERD" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1376. <stat Name="CLTHS_AVAILABLE_BERD_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1377. <stat Name="CLTHS_AVAILABLE_BERD_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1378. <stat Name="CLTHS_AVAILABLE_BERD_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1379. <stat Name="CLTHS_AVAILABLE_BERD_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1380. <stat Name="CLTHS_AVAILABLE_BERD_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1381. <stat Name="CLTHS_AVAILABLE_BERD_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1382. <stat Name="CLTHS_AVAILABLE_BERD_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1383.  
  1384. <stat Name="CLTHS_AVAILABLE_PROPS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1385. <stat Name="CLTHS_AVAILABLE_PROPS_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1386. <stat Name="CLTHS_AVAILABLE_PROPS_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1387. <stat Name="CLTHS_AVAILABLE_PROPS_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1388. <stat Name="CLTHS_AVAILABLE_PROPS_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1389. <stat Name="CLTHS_AVAILABLE_PROPS_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1390. <stat Name="CLTHS_AVAILABLE_PROPS_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1391. <stat Name="CLTHS_AVAILABLE_PROPS_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1392. <stat Name="CLTHS_AVAILABLE_PROPS_8" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1393. <stat Name="CLTHS_AVAILABLE_PROPS_9" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1394. <stat Name="CLTHS_AVAILABLE_PROPS_10" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1395.  
  1396. <stat Name="CLTHS_AVAILABLE_OUTFIT" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes Available" />
  1397.  
  1398.  
  1399. <!--ACQUIRED-->
  1400. <stat Name="CLTHS_ACQUIRED_HAIR" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1401. <stat Name="CLTHS_ACQUIRED_HAIR_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1402. <stat Name="CLTHS_ACQUIRED_HAIR_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1403. <stat Name="CLTHS_ACQUIRED_HAIR_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1404. <stat Name="CLTHS_ACQUIRED_HAIR_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1405. <stat Name="CLTHS_ACQUIRED_HAIR_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1406. <stat Name="CLTHS_ACQUIRED_HAIR_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1407. <stat Name="CLTHS_ACQUIRED_HAIR_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1408.  
  1409. <stat Name="CLTHS_ACQUIRED_JBIB" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1410. <stat Name="CLTHS_ACQUIRED_JBIB_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1411. <stat Name="CLTHS_ACQUIRED_JBIB_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1412. <stat Name="CLTHS_ACQUIRED_JBIB_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1413. <stat Name="CLTHS_ACQUIRED_JBIB_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1414. <stat Name="CLTHS_ACQUIRED_JBIB_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1415. <stat Name="CLTHS_ACQUIRED_JBIB_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1416. <stat Name="CLTHS_ACQUIRED_JBIB_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1417.  
  1418. <stat Name="CLTHS_ACQUIRED_LEGS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1419. <stat Name="CLTHS_ACQUIRED_LEGS_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1420. <stat Name="CLTHS_ACQUIRED_LEGS_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1421. <stat Name="CLTHS_ACQUIRED_LEGS_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1422. <stat Name="CLTHS_ACQUIRED_LEGS_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1423. <stat Name="CLTHS_ACQUIRED_LEGS_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1424. <stat Name="CLTHS_ACQUIRED_LEGS_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1425. <stat Name="CLTHS_ACQUIRED_LEGS_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1426.  
  1427. <stat Name="CLTHS_ACQUIRED_FEET" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1428. <stat Name="CLTHS_ACQUIRED_FEET_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1429. <stat Name="CLTHS_ACQUIRED_FEET_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1430. <stat Name="CLTHS_ACQUIRED_FEET_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1431. <stat Name="CLTHS_ACQUIRED_FEET_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1432. <stat Name="CLTHS_ACQUIRED_FEET_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1433. <stat Name="CLTHS_ACQUIRED_FEET_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1434. <stat Name="CLTHS_ACQUIRED_FEET_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1435.  
  1436. <stat Name="CLTHS_ACQUIRED_BERD" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1437. <stat Name="CLTHS_ACQUIRED_BERD_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1438. <stat Name="CLTHS_ACQUIRED_BERD_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1439. <stat Name="CLTHS_ACQUIRED_BERD_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1440. <stat Name="CLTHS_ACQUIRED_BERD_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1441. <stat Name="CLTHS_ACQUIRED_BERD_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1442. <stat Name="CLTHS_ACQUIRED_BERD_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1443. <stat Name="CLTHS_ACQUIRED_BERD_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1444.  
  1445. <stat Name="CLTHS_ACQUIRED_PROPS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1446. <stat Name="CLTHS_ACQUIRED_PROPS_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1447. <stat Name="CLTHS_ACQUIRED_PROPS_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1448. <stat Name="CLTHS_ACQUIRED_PROPS_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1449. <stat Name="CLTHS_ACQUIRED_PROPS_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1450. <stat Name="CLTHS_ACQUIRED_PROPS_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1451. <stat Name="CLTHS_ACQUIRED_PROPS_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1452. <stat Name="CLTHS_ACQUIRED_PROPS_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1453. <stat Name="CLTHS_ACQUIRED_PROPS_8" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1454. <stat Name="CLTHS_ACQUIRED_PROPS_9" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1455. <stat Name="CLTHS_ACQUIRED_PROPS_10" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1456.  
  1457. <stat Name="CLTHS_ACQUIRED_OUTFIT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes ACQUIRED" />
  1458.  
  1459. <!--NEW-->
  1460. <stat Name="CLTHS_USED_HAIR" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1461. <stat Name="CLTHS_USED_HAIR_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1462. <stat Name="CLTHS_USED_HAIR_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1463. <stat Name="CLTHS_USED_HAIR_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1464. <stat Name="CLTHS_USED_HAIR_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1465. <stat Name="CLTHS_USED_HAIR_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1466. <stat Name="CLTHS_USED_HAIR_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1467. <stat Name="CLTHS_USED_HAIR_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1468.  
  1469. <stat Name="CLTHS_USED_JBIB" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1470. <stat Name="CLTHS_USED_JBIB_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1471. <stat Name="CLTHS_USED_JBIB_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1472. <stat Name="CLTHS_USED_JBIB_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1473. <stat Name="CLTHS_USED_JBIB_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1474. <stat Name="CLTHS_USED_JBIB_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1475. <stat Name="CLTHS_USED_JBIB_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1476. <stat Name="CLTHS_USED_JBIB_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1477.  
  1478. <stat Name="CLTHS_USED_LEGS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1479. <stat Name="CLTHS_USED_LEGS_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1480. <stat Name="CLTHS_USED_LEGS_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1481. <stat Name="CLTHS_USED_LEGS_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1482. <stat Name="CLTHS_USED_LEGS_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1483. <stat Name="CLTHS_USED_LEGS_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1484. <stat Name="CLTHS_USED_LEGS_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1485. <stat Name="CLTHS_USED_LEGS_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1486.  
  1487. <stat Name="CLTHS_USED_FEET" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1488. <stat Name="CLTHS_USED_FEET_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1489. <stat Name="CLTHS_USED_FEET_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1490. <stat Name="CLTHS_USED_FEET_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1491. <stat Name="CLTHS_USED_FEET_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1492. <stat Name="CLTHS_USED_FEET_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1493. <stat Name="CLTHS_USED_FEET_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1494. <stat Name="CLTHS_USED_FEET_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1495.  
  1496. <stat Name="CLTHS_USED_BERD" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1497. <stat Name="CLTHS_USED_BERD_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1498. <stat Name="CLTHS_USED_BERD_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1499. <stat Name="CLTHS_USED_BERD_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1500. <stat Name="CLTHS_USED_BERD_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1501. <stat Name="CLTHS_USED_BERD_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1502. <stat Name="CLTHS_USED_BERD_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1503. <stat Name="CLTHS_USED_BERD_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1504.  
  1505. <stat Name="CLTHS_USED_PROPS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1506. <stat Name="CLTHS_USED_PROPS_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1507. <stat Name="CLTHS_USED_PROPS_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1508. <stat Name="CLTHS_USED_PROPS_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1509. <stat Name="CLTHS_USED_PROPS_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1510. <stat Name="CLTHS_USED_PROPS_5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1511. <stat Name="CLTHS_USED_PROPS_6" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1512. <stat Name="CLTHS_USED_PROPS_7" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1513. <stat Name="CLTHS_USED_PROPS_8" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1514. <stat Name="CLTHS_USED_PROPS_9" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1515. <stat Name="CLTHS_USED_PROPS_10" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1516.  
  1517. <stat Name="CLTHS_USED_OUTFIT" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Clothes USED" />
  1518.  
  1519. <!--Clothes Storage for each char -->
  1520. <stat Name="HEADBLEND_OVER_BLEMISH_PC" Type="float" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Overlay Texture" />
  1521. <stat Name="HEADBLEND_OVERLAY_BEARD_PC" Type="float" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Overlay Texture" />
  1522. <stat Name="HEADBLEND_OVERLAY_EYEBRW_PC" Type="float" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Overlay Texture" />
  1523. <stat Name="HEADBLEND_OVERLAY_WETHR_PC" Type="float" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Overlay Texture" />
  1524. <stat Name="HEADBLEND_OVERLAY_MAKEUP_PC" Type="float" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Overlay Texture" />
  1525. <stat Name="HEADBLEND_OVERLAY_DAMAGE_PC" Type="float" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Overlay Texture" />
  1526. <stat Name="HEADBLEND_OVERLAY_BASE_PC" Type="float" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Overlay Texture" />
  1527. <stat Name="HEADBLEND_GEOM_BLEND" Type="float" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Geometry Blend" />
  1528. <stat Name="HEADBLEND_TEX_BLEND" Type="float" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Texture Blend" />
  1529. <stat Name="HEADBLEND_VAR_BLEND" Type="float" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Variation Blend" />
  1530. <stat Name="HEADBLEND_DOM" Type="float" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Parent Dominance" />
  1531.  
  1532. <stat Name="CHAR_CREATOR_SLEEP" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Sleep Value" />
  1533. <stat Name="CHAR_CREATOR_FAMILY" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Family Value" />
  1534. <stat Name="CHAR_CREATOR_SPORT" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Sport Value" />
  1535. <stat Name="CHAR_CREATOR_LEGAL" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Legal Value" />
  1536. <stat Name="CHAR_CREATOR_TV" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend TV Value" />
  1537. <stat Name="CHAR_CREATOR_PARTY" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Party Value" />
  1538. <stat Name="CHAR_CREATOR_ILLEGAL" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Illegal Value" />
  1539.  
  1540. <stat Name="TATTOO_FM_UNLOCKS_0" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Unlocked Tattoos 0" />
  1541. <stat Name="TATTOO_FM_UNLOCKS_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Unlocked Tattoos 1" />
  1542. <stat Name="TATTOO_FM_UNLOCKS_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Unlocked Tattoos 2" />
  1543. <stat Name="TATTOO_FM_UNLOCKS_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Unlocked Tattoos 3" />
  1544. <stat Name="TATTOO_FM_UNLOCKS_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Unlocked Tattoos 4" />
  1545.  
  1546. <stat Name="TATTOO_FM_VIEWED_0" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Viewed Tattoos 0" />
  1547. <stat Name="TATTOO_FM_VIEWED_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Viewed Tattoos 1" />
  1548. <stat Name="TATTOO_FM_VIEWED_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Viewed Tattoos 2" />
  1549. <stat Name="TATTOO_FM_VIEWED_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Viewed Tattoos 3" />
  1550. <stat Name="TATTOO_FM_VIEWED_4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Viewed Tattoos 4" />
  1551.  
  1552. <stat Name="TATTOO_FM_CURRENT_0" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Current Tattoos 0" />
  1553. <stat Name="TATTOO_FM_CURRENT_1" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Current Tattoos 1" />
  1554. <stat Name="TATTOO_FM_CURRENT_2" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Current Tattoos 2" />
  1555. <stat Name="TATTOO_FM_CURRENT_3" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Current Tattoos 3" />
  1556. <stat Name="TATTOO_FM_CURRENT_4" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Current Tattoos 4" />
  1557. <stat Name="TATTOO_FM_CURRENT_5" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="MP Char 0 - Current Tattoos 4" />
  1558.  
  1559. <stat Name="HEADBLEND_DAD_HAIR" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Texture Blend" />
  1560. <stat Name="HEADBLEND_MUM_HAIR" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Variation Blend" />
  1561. <stat Name="HEADBLEND_DAD_BEARD" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Texture Blend" />
  1562. <stat Name="HEADBLEND_MUM_MAKEUP" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Variation Blend" />
  1563. <stat Name="HEADBLEND_DAD_HAIR_TEX" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Texture Blend" />
  1564. <stat Name="HEADBLEND_MUM_HAIR_TEX" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Variation Blend" />
  1565. <stat Name="HEADBLEND_DAD_BEARD_TEX" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Texture Blend" />
  1566. <stat Name="HEADBLEND_MUM_MAKEUP_TEX" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Variation Blend" />
  1567. <stat Name="HEADBLEND_DAD_EYEB" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Dads Eyebrow" />
  1568. <stat Name="HEADBLEND_MUM_EYEB" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Head Blend Mums Eyebrow" />
  1569.  
  1570. <!--CHAR ammo used-->
  1571. <stat Name="AMMO_USED_PISTOLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo used for weapon group pistols"/>
  1572. <stat Name="AMMO_USED_SHOTGUNS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo used for weapon group shotgun"/>
  1573. <stat Name="AMMO_USED_SMGS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo used for weapon group SMGS"/>
  1574. <stat Name="AMMO_USED_SNIPERS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo used for weapon group Snipers"/>
  1575. <stat Name="AMMO_USED_RIFLES" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo used for weapon group Rifles"/>
  1576. <stat Name="AMMO_USED_THROWN" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo used for weapon group Thrown"/>
  1577. <stat Name="AMMO_USED_HEAVY" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo used for weapon group Heavy"/>
  1578. <stat Name="AMMO_PURCHASED_PISTOLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo bought for weapon group pistols"/>
  1579. <stat Name="AMMO_PURCHASED_SHOTGUNS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo bought for weapon group shotgun"/>
  1580. <stat Name="AMMO_PURCHASED_SMGS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo bought for weapon group SMGS"/>
  1581. <stat Name="AMMO_PURCHASED_SNIPERS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo bought for weapon group Snipers"/>
  1582. <stat Name="AMMO_PURCHASED_RIFLES" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo bought for weapon group Rifles"/>
  1583. <stat Name="AMMO_PURCHASED_THROWN" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo bought for weapon group Thrown"/>
  1584. <stat Name="AMMO_PURCHASED_HEAVY" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP char 0 - Ammo bought for weapon group Heavy"/>
  1585. <!--General Tracking -->
  1586. <stat Name="CHAR_WANTED_LEVEL_TIME" Type="u64" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Wanted Level Time" />
  1587. <stat Name="CHAR_WANTED_LEVEL_TIME5STAR" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Wanted Level Time" />
  1588. <stat Name="CHAR_FM_RACE_RECORD_TIMES" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Wanted Level Time" />
  1589.  
  1590. <stat Name="HIGHEST_NO_MULTIPLE_KILLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - COMBAT - Highest number of Miltiple Kills (x kills in x seconds)" />
  1591. <stat Name="TOTAL_NO_DISABLED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - COMBAT - Total number of times disabled" />
  1592.  
  1593. <stat Name="TOTAL_NO_WEAPONS_USED" Type="int" SaveCategory="1" online="true" profile="false" Min="0" Max="50" Owner="script" characterStat="true" Comment="MP Char 0 - COMBAT - Total number of weapons used" />
  1594. <stat Name="AV_TIME_COMPLETE_MISSIONS" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - MISSIONS -Average time taken to complete mission(Total time on missions/ total time in game)" />
  1595. <stat Name="SUICIDES" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Total number of times player commited suicide" />
  1596. <stat Name="NO_PHOTOS_TAKEN" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Total number of photos taken" />
  1597. <stat Name="NO_OF_OUTFITS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Total number of outfits" />
  1598. <stat Name="PROSTITUTES_FREQUENTED" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Total number of prostitutes frequented" />
  1599. <stat Name="LAP_DANCED_BOUGHT" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Total number of lap dances bought" />
  1600.  
  1601. <stat Name="NO_KILLS_DURING_MISSION" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Total Kills during missions" />
  1602. <stat Name="MOST_ARM_WRESTLING_WINS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Record of most arm wrestling wins in one arm wrestling sesson" />
  1603. <stat Name="FASTEST_ARM_WRESTLING_WIN" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Record of fastest arm wrestling win" />
  1604.  
  1605. <stat Name="MOST_REVENGE_KILL_GLOBAL" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  1606. <stat Name="MOST_REVENGE_KILL_LOCAL" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  1607. <stat Name="BIGGEST_VICTIM" Type="userid" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  1608. <stat Name="ARCHENEMY" Type="userid" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  1609. <stat Name="BIGGEST_VICTIM_NAME" Type="string" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  1610. <stat Name="ARCHENEMY_NAME" Type="string" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  1611.  
  1612.  
  1613. <stat Name="BIGGEST_VICTIM_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  1614. <stat Name="ARCHENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  1615.  
  1616.  
  1617. <stat Name="CIGARETTES_BOUGHT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  1618.  
  1619. <!--FM General Tracking -->
  1620.  
  1621. <!--MENU CHECKLIST STATS -->
  1622. <stat Name="CL_RACE_MODDED_CAR" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Unlock bitset 0" />
  1623. <stat Name="CL_DRIVE_RALLY" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Unlock bitset 0" />
  1624. <stat Name="CL_PLAY_GTA_RACE" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Unlock bitset 0" />
  1625. <stat Name="CL_PLAY_BOAT_RACE" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Unlock bitset 0" />
  1626. <stat Name="CL_PLAY_FOOT_RACE" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Unlock bitset 0" />
  1627. <stat Name="CL_PLAY_TEAM_DM" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Unlock bitset 0" />
  1628. <stat Name="CL_PLAY_VEHICLE_DM" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Unlock bitset 0" />
  1629. <stat Name="CL_PLAY_MISSION_CONTACT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Unlock bitset 0" />
  1630. <stat Name="CRHEIST" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1631. <stat Name="CL_PLAY_A_PLAYLIST" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1632. <stat Name="CL_PLAY_POINT_TO_POINT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1633. <stat Name="CL_PLAY_ONE_ON_ONE_DM" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1634. <stat Name="CL_PLAY_ONE_ON_ONE_RACE" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1635.  
  1636.  
  1637. <stat Name="CL_SURV_A_BOUNTY" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1638.  
  1639. <stat Name="CL_SET_WANTED_LVL_ON_PLAY" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1640. <stat Name="CL_GANG_BACKUP_GANGS" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1641. <stat Name="CL_GANG_BACKUP_LOST" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1642. <stat Name="CL_GANG_BACKUP_VAGOS" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1643. <stat Name="CL_CALL_MERCENARIES" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1644. <stat Name="CL_PHONE_MECH_DROP_CAR" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1645. <stat Name="CL_GONE_OFF_RADAR" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1646. <stat Name="CL_FILL_TITAN" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1647. <stat Name="CL_MOD_CAR_USING_APP" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1648. <stat Name="CL_BUY_APPARTMENT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1649. <stat Name="CL_BUY_INSURANCE" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP - Stores if player has bought insurance" />
  1650. <stat Name="CL_BUY_GARAGE" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1651. <stat Name="CL_ENTER_FRIENDS_HOUSE" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1652. <stat Name="CL_CALL_STRIPPER_HOUSE" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1653. <stat Name="CL_CALL_FRIEND" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1654. <stat Name="CL_SEND_FRIEND_REQUEST" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1655. <stat Name="CL_W_WANTED_PLAYER_TV" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1656.  
  1657.  
  1658.  
  1659.  
  1660.  
  1661.  
  1662.  
  1663.  
  1664.  
  1665.  
  1666.  
  1667.  
  1668.  
  1669.  
  1670.  
  1671. <!--Unlocks -->
  1672. <stat Name="RANKAP_UNLK_0" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Unlock bitset 0" />
  1673. <stat Name="RANKAP_UNLK_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Unlock bitset 1" />
  1674. <stat Name="RANKAP_UNLK_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Unlock bitset 2" />
  1675. <stat Name="RANKAP_UNLK_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Unlock bitset 3" />
  1676. <stat Name="RANKAP_EQUIP_0" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Equipp bitset 0" />
  1677. <stat Name="RANKAP_EQUIP_1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Equipp bitset 1" />
  1678. <stat Name="RANKAP_EQUIP_2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank Apparel Equipp bitset 2" />
  1679. <stat Name="RANKAP_EQUIP_3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Rank farel Equipp bitset 3" />
  1680. <stat Name="WEAPON_PICKUP_BITSET" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - weapon unlock bitset" />
  1681. <stat Name="WEAPON_PICKUP_BITSET2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - weapon unlock bitset 2" />
  1682. <!--Mission comp stats -->
  1683. <stat Name="CHAR_MISSION_STARTED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player missions started" />
  1684. <stat Name="CHAR_MISSION_PASSED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player missions passed" />
  1685. <stat Name="CHAR_MISSION_FAILED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player missions over" />
  1686. <stat Name="CHAR_MISSION_OVER" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player missions failed" />
  1687. <stat Name="CHAR_MISSION_QUIT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player missions quit" />
  1688.  
  1689. <!--Mission comp stats -->
  1690. <stat Name="CHEAT_MISSION_STARTED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player missions started for cheat tracking" />
  1691. <stat Name="CHEAT_MISSION_PASSED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player missions passed for cheat tracking" />
  1692. <stat Name="CHEAT_MISSION_FAILED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player missions over for cheat tracking" />
  1693. <stat Name="CHEAT_MISSION_OVER" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player missions failed for cheat tracking" />
  1694.  
  1695. <!--Mission comp stats -->
  1696. <stat Name="CHAR_MC_STARTED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player missions started" />
  1697. <stat Name="CHAR_MC_FAILED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player missions failed" />
  1698. <stat Name="CHAR_MC_OVER" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player missions failed" />
  1699.  
  1700. <stat Name="CHAR_JOIN_SOCIAL_CLUB_MSG" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player missions failed" />
  1701.  
  1702.  
  1703.  
  1704.  
  1705. <stat Name="RESPAWN_PICKUP_BITSET0" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - For Neils respawn pickups to see if they are on or off" />
  1706.  
  1707.  
  1708. <!--Script mission attempt stats -->
  1709. <stat Name="CP_STOLEN_TUT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started CP_STOLEN_TUT script" />
  1710. <stat Name="CP_WELCOMETUT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started CP_WELCOMETUT script" />
  1711. <stat Name="CP_WEA_AMBUSH" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1712. <stat Name="CR_HOOKER_TUT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1713. <stat Name="CR_DRUGS_TUT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1714. <stat Name="CR_RIVAL" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1715. <stat Name="CR_SELLCARTUT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1716. <stat Name="CR_HOLDUP_TUT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1717. <stat Name="CR_TRIGGER_TUT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1718. <stat Name="CR_WELCOME" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1719. <stat Name="CR_GUNSHOPTUT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1720. <stat Name="CR_ARMORYTUT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1721. <stat Name="CR_HOSTAGE_STEAL" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1722. <stat Name="CR_STEAL_BIKES" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1723. <stat Name="CR_AIRPORTTAKE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1724. <stat Name="CR_PROP_TUT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1725. <stat Name="CR_RACES" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1726. <stat Name="CR_SHIPMENTSTEAL" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1727. <stat Name="CR_SHOWROOM" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1728. <stat Name="CR_STEALVEHICLE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1729. <stat Name="CR_VANRESCUE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1730. <stat Name="CR_BANKHEIST1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1731. <stat Name="CR_COUNTHEIST1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1732. <stat Name="INCR_DEFAULTMISS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - If the game cannot find a mission to increment this one will do" />
  1733. <stat Name="AM_SECURITYVAN" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1734. <stat Name="CR_GANGATTACK_CITY" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1735. <stat Name="CR_GANGATTACK_COUNTRY" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1736. <stat Name="CR_GANGATTACK_LOST" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1737. <stat Name="CR_GANGATTACK_VAGOS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1738. <stat Name="CR_DIFFERENT_RACES" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1739. <stat Name="CR_DIFFERENT_DM" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  1740.  
  1741.  
  1742.  
  1743.  
  1744.  
  1745.  
  1746. <!--General Mission stats -->
  1747. <stat Name="HEIST_COMPLETION" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - MISSIONS -Heist Missions completed (%)" />
  1748. <stat Name="HEIST_TOTAL_TIME" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - MISSIONS -Total time spent on Heist" />
  1749. <stat Name="AVERAGE_HEIST_TIME_TAKEN" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - MISSIONS -Average time on a Heist Mission" />
  1750. <stat Name="HEISTS_ORGANISED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - MISSIONS -Number of Heists Organised" />
  1751. <stat Name="AVERAGE_KILL_ON_MISSION" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - MISSIONS -Average number of kills on mission" />
  1752. <stat Name="AVERAGE_RANK_GAIN_PER_HOUR" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - MISSIONS -Average Rank/ Respect gained per hour" />
  1753. <stat Name="AVERAGE_XP_ON_MISSION" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - MISSIONS -Average number of XP gained on mission" />
  1754. <stat Name="AVERAGE_WANTED_TIME" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Average wanted level time" />
  1755. <stat Name="HIGHEST_WANTD_LEVEL_ESCAPE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Highest wanted level escaped from" />
  1756. <stat Name="AVERAGE_WANTD_LEVEL_ESCAPE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Average wanted level escaped from" />
  1757. <stat Name="NUMBER_OF_SESSIONS_FM" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Average wanted level escaped from" />
  1758. <stat Name="AVERAGE_TIME_PER_SESSON" Type="u64" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Average time spent per session" />
  1759. <stat Name="TOTAL_XP_EARNED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Total XP accumulated (even after Rank 30)" />
  1760. <stat Name="MISS_XP_EARNED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Total XP accumulated (even after Rank 30)" />
  1761. <stat Name="TOTAL_TIMES_ARRESTED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Total number of times arrested" />
  1762. <stat Name="TOTAL_NO_SHOPS_HELD_UP" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Total number of shops held up" />
  1763. <stat Name="TOTAL_TIME_SPENT_ON_PHONE" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Total time spent on a phone" />
  1764. <stat Name="JOBS_JOINED_ON_PHONE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Total number of jobs joined through the phone" />
  1765. <stat Name="DRUG_DEALING_PROFIT_LOSS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Money made or lost as a drug dealer" />
  1766. <stat Name="AVERAGE_EX_GAIN_PER_MINUTE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Average XP gained per minute" />
  1767. <stat Name="AVERAGE_RESPONSE_TIME" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - COP -Average response time" />
  1768. <stat Name="TIME_LAST_WANTED_LEVEL" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 -The length of time of last wanted level chase" />
  1769. <stat Name="CHEAT_BITSET" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - stores if the player cheated with this character" />
  1770. <stat Name="BAD_SPORT_BITSET" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - stores if the player cheated with this character" />
  1771. <stat Name="CHAR_ONMISSION" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Sets to true when the player is on mission" />
  1772. <stat Name="TIME_ON_LOST_BIKE" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - time on a lost bike" />
  1773. <stat Name="PARACHUTE_BLACK_DEPLOYED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks number of times player deploys coloured smoke while parachuting" />
  1774. <stat Name="PARACHUTE_RED_DEPLOYED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks number of times player deploys coloured smoke while parachuting" />
  1775. <stat Name="PARACHUTE_ORANGE_DEPLOYED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks number of times player deploys coloured smoke while parachuting" />
  1776. <stat Name="PARACHUTE_YELLOW_DEPLOYED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks number of times player deploys coloured smoke while parachuting" />
  1777. <stat Name="PARACHUTE_BLUE_DEPLOYED" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks number of times player deploys coloured smoke while parachuting" />
  1778.  
  1779. <!--VEHICLE ACCESS-->
  1780. <stat Name="DOES_PLAYER_HAVE_VEH_ACCESS" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="True if the player owns a car." />
  1781.  
  1782.  
  1783. <!-- drug dealing-->
  1784. <stat Name="DDEAL_COKE_QUANTITY" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Quantity of coke in mp char 0 possession" />
  1785. <stat Name="DDEAL_HEROIN_QUANTITY" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Quantity of heroin in mp char 0 possession" />
  1786. <stat Name="DDEAL_WEED_QUANTITY" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Quantity of weed in mp char 0 possession" />
  1787. <stat Name="DDEAL_METH_QUANTITY" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Quantity of meth in mp char 0 possession" />
  1788. <stat Name="STASHED_COKE_QUANTITY" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Quantity of coke stashed in mp char 0 personal vehicle" />
  1789. <stat Name="STASHED_HEROIN_QUANTITY" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Quantity of heroin stashed in mp char 0 personal vehicle" />
  1790. <stat Name="STASHED_WEED_QUANTITY" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Quantity of weed stashed in mp char 0 personal vehicle" />
  1791. <stat Name="STASHED_METH_QUANTITY" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Quantity of meth stashed in mp char 0 personal vehicle" />
  1792. <!-- HOLD UPS -->
  1793. <stat Name="HOLDUPS_BITSET" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Which hold ups have been done already" />
  1794. <!-- AMBIENT BS -->
  1795. <stat Name="AMBIENT_MIS_BS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="BS to store if player has completed ambient events such as picking up hitchiker" />
  1796. <!-- HELP TEXT -->
  1797. <stat Name="NON_MISSION_HELP_TEXT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1798. <stat Name="SPECTATOR_CAM_HELP_TEXT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1799. <stat Name="FULLSCREEN_TV_TEXT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1800. <stat Name="NEAR_TV_HELP_TEXT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1801. <stat Name="TV_SEAT_TEXT" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1802.  
  1803.  
  1804. <!-- Last Unlocked Weapon -->
  1805. <stat Name="LAST_UNLOCKED_WEAPON" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1806. <stat Name="LAST_UNLOCKED_FM_WEAPON" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1807.  
  1808. <!-- MISSION CONTACT STATS -->
  1809. <stat Name="CONTACT_MISS_0" Type="string" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - For keith to store Mission contact names" />
  1810. <stat Name="CONTACT_MISS_1" Type="string" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - For keith to store Mission contact names" />
  1811. <stat Name="CONTACT_MISS_2" Type="string" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - For keith to store Mission contact names" />
  1812. <stat Name="CONTACT_MISS_3" Type="string" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - For keith to store Mission contact names" />
  1813. <stat Name="CONTACT_MISS_4" Type="string" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - For keith to store Mission contact names" />
  1814. <stat Name="CONTACT_MISS_5" Type="string" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - For keith to store Mission contact names" />
  1815. <stat Name="CONTACT_MISS_6" Type="string" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - For keith to store Mission contact names" />
  1816. <stat Name="CONTACT_MISS_7" Type="string" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - For keith to store Mission contact names" />
  1817. <stat Name="CONTACT_MISS_8" Type="string" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - For keith to store Mission contact names" />
  1818. <stat Name="CONTACT_MISS_9" Type="string" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - For keith to store Mission contact names" />
  1819.  
  1820. <stat Name="CONTACT_MISS_RANK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="For keith to store Mission contact names" />
  1821.  
  1822. <stat Name="DM_COLLECTED_SHARK_TEST" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Sets the player to spawn in the secondary position (Boss Room or Locker Room)" />
  1823. <stat Name="DM_COLLECTED_POWER_PLAYER" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Sets the player to spawn in the secondary position (Boss Room or Locker Room)" />
  1824.  
  1825. <!-- Tutorial BitSet -->
  1826. <stat Name="TUTORIAL_BITSET" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1827. <!-- Should Use Secondary Tutorial Respawn Position -->
  1828. <stat Name="USE_SECOND_TUT_SPAWN_POS" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Sets the player to spawn in the secondary position (Boss Room or Locker Room)" />
  1829. <!-- Set when character has watched the Freemode Intro -->
  1830. <stat Name="FM_INTRO_CUT_DONE" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="Set when the character has seen the Freemode Intro" />
  1831. <!-- FM HELP TEXT -->
  1832. <stat Name="FM_NON_MISS_HELP_TEXT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1833. <stat Name="FM_NON_MS_HELP_TEXT2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1834. <stat Name="FM_NON_MS_HELP_TEXT3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1835. <stat Name="FM_NON_MS_HELP_TEXT4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1836. <stat Name="FM_NON_MS_HELP_TEXT5" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1837. <stat Name="FM_NON_MS_HELP_GTA1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if GTA help has been displayed" />
  1838. <stat Name="FM_SPAWN_POSITION" Type="pos" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1839. <stat Name="FM_SPAWN_FLAG" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1840. <stat Name="FM_SPAWN_HEADING" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1841.  
  1842. <stat Name="FM_CHAR_STATS1" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1843. <stat Name="FM_CHAR_STATS2" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Tracks if NMH has been displayed" />
  1844.  
  1845. <!-- CELLPHONE -->
  1846. <stat Name="FM_CELLPHONE_VIBRATE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Import export stats" />
  1847. <stat Name="FM_CELLPHONE_RINGTONE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Import export stats" />
  1848.  
  1849.  
  1850. <!-- FM Import Export -->
  1851. <stat Name="FM_IMP_EXP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Import export stats" />
  1852. <!-- FM Intro Mission -->
  1853. <stat Name="FM_INTRO_MISS_DONE" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="Set when the character completes the FM intro mission" />
  1854.  
  1855. <!-- FM Activity Phonecall -->
  1856. <stat Name="FM_ACT_PHN" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Freemode activity phonecall" />
  1857. <stat Name="FM_ACT_PH2" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Freemode activity phonecall" />
  1858. <stat Name="FM_ACT_PH3" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Freemode activity phonecall" />
  1859. <stat Name="FM_ACT_PH4" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Freemode activity phonecall" />
  1860. <stat Name="FM_VEH_TX1" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Freemode activity phonecall" />
  1861.  
  1862. <!-- FM Char Deathmatch Stats -->
  1863. <stat Name="DM_START" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment=" No of death matchs started" />
  1864. <stat Name="DM_END" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment=" No of death matchs ended" />
  1865.  
  1866.  
  1867. <!-- FM Char Race Stats -->
  1868. <stat Name="RACE_START" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment=" No of races started" />
  1869. <stat Name="RACE_END" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment=" No of races ended" />
  1870.  
  1871. <!-- FM Char Race Stats -->
  1872. <stat Name="MINIGAME_START" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment=" No of races started" />
  1873. <stat Name="MINIGAME_END" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment=" No of races ended" />
  1874.  
  1875. <!-- FM trigger Tut -->
  1876. <stat Name="FM_TRIGTUT_DONE" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="Set when the character completes the FM trigger tutorial" />
  1877.  
  1878. <!-- FM Hold Up Tut -->
  1879. <stat Name="FM_HOLDTUT_DONE" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Set when the character completes the FM Hold Up tutorial" />
  1880.  
  1881. <!-- FM Car Mod Tut -->
  1882. <stat Name="FM_CMODTUT_DONE" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Set when the character completes the FM Car Mod tutorial" />
  1883.  
  1884. <!-- FM No Tut -->
  1885. <stat Name="FM_NOTUT_DONE" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="Set when the character chooses not to do the tutorials" />
  1886.  
  1887. <!-- FM Race Tut -->
  1888. <stat Name="FM_RACETUT_DONE" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="Set when the character completes the FM race tutorial" />
  1889. <stat Name="FM_RACEPOSITION" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Set when the character completes the FM race tutorial" />
  1890.  
  1891. <!-- FM garage cut -->
  1892. <stat Name="FM_BUYGAR_DONE" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Set when the character completes the FM race tutorial" />
  1893.  
  1894. <!--- HELP TEXT STATS -->
  1895.  
  1896. <stat Name="HELP_THUMB_VOTE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment=" No of times help has been displayed" />
  1897. <stat Name="HELP_BASEJUMP_TEXT" Type="int" SaveCategory="1" online="true" profile="false" Min="0" Max="10" Owner="script" characterStat="true" Comment=" No of times help has been displayed" />
  1898. <stat Name="HELP_RACES_TEXT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment=" No of times help has been displayed" />
  1899.  
  1900. <!--- FM ask the player to change character once -->
  1901. <stat Name="FM_CHANGECHAR_ASKED" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="Set when the character completes the FM race tutorial" />
  1902.  
  1903. <stat Name="PLAYER_ANIM_TYPE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment=" No of times help has been displayed" />
  1904.  
  1905.  
  1906.  
  1907. <!--- HELPERS FOR TIMED AWARDS -->
  1908.  
  1909. <stat Name="TIMEINHELI" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Time spent being a passenger in Milliseconds " />
  1910. <stat Name="TIMEWITHOUTCRASHING" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Time spent being a passenger in Milliseconds " />
  1911. <stat Name="TIME_AS_A_PASSENGER" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - - Vehicles-Time spent as a passenger" />
  1912. <stat Name="TIME_AS_A_DRIVER" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Vehicles- Time spent as a driver" />
  1913. <stat Name="TIME_SPENT_FLYING" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 -Vehicles- Time spent flying an aircraft" />
  1914. <stat Name="TIME_IN_CAR" Type="u64" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 -Vehicles- Time spent inside your car" />
  1915.  
  1916. <!-- Character Creator Stats -->
  1917. <stat Name="CHAR_CREATOR_STAMINA" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment=" Character creator stamina" />
  1918. <stat Name="CHAR_CREATOR_SHOOTING" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment=" Character creator shooting" />
  1919. <stat Name="CHAR_CREATOR_STRENGTH" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment=" Character creator strength" />
  1920. <stat Name="CHAR_CREATOR_STEALTH" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment=" Character creator stealth" />
  1921. <stat Name="CHAR_CREATOR_FLYING" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment=" Character creator flying" />
  1922. <stat Name="CHAR_CREATOR_BIKE" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment=" Character creator bike" />
  1923. <stat Name="CHAR_CREATOR_LUNG" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment=" Character creator lung" />
  1924. <stat Name="CHAR_CREATOR_MECHANIC" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment=" Character creator mechanic" />
  1925.  
  1926. <!-- UNLOCKS STATS -->
  1927. <stat Name="NO_WEAPONS_UNLOCK" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" Min="0" Max="50" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment=" No of items unlocked" />
  1928. <stat Name="NO_WEAPON_MODS_UNLOCK" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" Min="0" Max="400" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="No of items unlocked" />
  1929. <stat Name="NO_WEAPON_CLR_MOD_UNLOCK" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" Min="0" Max="400" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="No of items unlocked" />
  1930.  
  1931. <stat Name="NO_VEHICLE_MODS_UNLOCK" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" Min="0" Max="200" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment="No of items unlocked" />
  1932. <stat Name="NO_CLOTHES_UNLOCK" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment=" No of items unlocked" />
  1933. <stat Name="NO_HAIR_UNLOCK" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment=" No of items unlocked" />
  1934. <stat Name="NO_TATTOOS_UNLOCK" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment=" No of items unlocked" />
  1935. <stat Name="NO_PROPERTIES_UNLOCK" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment=" No of items unlocked" />
  1936. <stat Name="NO_AWARDS_UNLOCK" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment=" No of items unlocked" />
  1937. <stat Name="NO_DRUG_CAPACITY_UNLOCK" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" Comment=" No of items unlocked" />
  1938.  
  1939. <stat Name="NO_MASKS_UNLOCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment=" No of items unlocked" />
  1940. <stat Name="NO_MAKEUP_UNLOCK" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment=" No of items unlocked" />
  1941.  
  1942.  
  1943.  
  1944.  
  1945.  
  1946.  
  1947. <!-- AWARDS -->
  1948. <stat Name="AWD_PASSENGERTIME" Type="u64" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - Time spent being a passenger in minutes Award" Denominator="360000" Desc = "282" Label = "282"/>
  1949. <stat Name="AWD_100_KILLS_PISTOL" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - 100 Kills with a pistol - VAGOS - Award LOST MC - Award COP- N/A " Denominator="100" Desc = "506" Label = "506"/>
  1950. <stat Name="AWD_100_KILLS_SNIPER" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - 100 Kills with a sniper rifle - VAGOS - Award LOST MC - Award COP- N/A " Denominator="100" Desc = "585" Label = "585" />
  1951. <stat Name="AWD_50_KILLS_GRENADES" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - 50 Kills with grenades - VAGOS - Award LOST MC - Award COP- N/A " Denominator="1" Desc = "541" Label = "541" />
  1952. <stat Name="AWD_100_KILLS_SHOTGUN" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - 100 Kills with a shotgun rifle - VAGOS - Award LOST MC - Award COP- N/A " Denominator="100" Desc = "584" Label = "584" />
  1953. <stat Name="AWD_100_KILLS_SMG" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - 100 Kills with an SMG - VAGOS - Award LOST MC - Award COP- N/A " Denominator="1" Desc = "540" Label = "540" />
  1954. <stat Name="AWD_50_KILLS_ROCKETLAUNCH" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - 50 Kills with a Rocketlauncher - VAGOS - Award LOST MC - Award COP- N/A " Denominator="1" Desc = "539" Label = "539" />
  1955. <stat Name="AWD_25_KILLS_STICKYBOMBS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - 50 Kills with sticky bombs - VAGOS - Award LOST MC - Award COP- N/A " Denominator="1" Desc = "538" Label = "538" />
  1956. <stat Name="AWD_20_KILLS_MELEE" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - 20 Kills with melee weapons - VAGOS - N/A LOST MC - Award COP- N/A " Denominator="1" Desc = "537" Label = "537" />
  1957. <stat Name="AWD_100_HEADSHOTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - 100 headshot kills - VAGOS - N/A LOST MC - Award COP- N/A " Denominator="1" Desc = "536" Label = "536"/>
  1958. <stat Name="AWD_50_VEHICLES_BLOWNUP" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - 50 vehicles blownup - VAGOS - N/A LOST MC - Award COP- N/A " Denominator="50" Desc = "583" Label = "583" />
  1959. <stat Name="AWD_VEHICLES_JACKEDR" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - award given reaching 10/25/50/100 vehicles jacked - VAGOS -AWARD LOST MC - N/A COP- N/A " Denominator="100" Desc = "582" Label = "582" />
  1960. <stat Name="AWD_ENEMYDRIVEBYKILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - award given reaching 10 enemy driveby kills - VAGOS -AWARD LOST MC - AWARD COP- N/A " Denominator="100" Desc = "581" Label = "581" />
  1961. <stat Name="AWD_COPS_KILLED" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - award given reaching 10/25/50/100/200 enemy driveby kills - VAGOS -AWARD LOST MC - AWARD COP- N/A " Denominator="200" Desc = "580" Label = "580" />
  1962. <stat Name="AWD_BUY_EVERY_GUN" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 -Award when buying every gun - VAGOS -AWARD LOST MC - AWARD COP- N/A " Denominator="100" Desc = "521" Label = "521" />
  1963. <stat Name="AWD_HOLD_UP_SHOPS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 -Award for holding up all shops award given reaching 1/6/12/19 - VAGOS -Tattoo LOST MC - Patch COP- N/A " Denominator="20" Desc = "566" Label = "566" />
  1964. <stat Name="AWD_LAPDANCES" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 -Award for no. Lapdances paid for - VAGOS -Award LOST MC - Award COP- NA " Denominator="20" Desc = "559" Label = "559" />
  1965. <stat Name="AWD_DRIVE_ALL_COP_CARS" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 -Award for driving all cop cars - VAGOS -NA LOST MC - NA COP- AWARD " Denominator="1" Desc = "551" Label = "551" />
  1966. <stat Name="AWD_TIME_IN_HELICOPTER" Type="u64" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 -Awards for time spent in helicopter Denomitators of 10/25/50/- VAGOS -AWARD LOST MC - AWARD COP- AWARD " Denominator="3000000" Desc = "550" Label = "550" />
  1967. <stat Name="AWD_CARS_EXPORTED" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 -Awards for number of car deliveries at car export Denomitators of 1/5/10/25/50 VAGOS -AWARD LOST MC - AWARD COP- NA" Denominator="50" Desc = "535" Label = "535" />
  1968. <stat Name="AWD_SECURITY_CARS_ROBBED" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 -Awards for number of security cars robbed Denomitators of 1/5/10/25/50 VAGOS -AWARD LOST MC - AWARD COP- NA" Denominator="50" Desc = "571" Label = "571" />
  1969. <stat Name="AWD_5STAR_WANTED_AVOIDANCE" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 -Awards for number of times avoiding 5 star wanted level Denomitators of 1/5/10/25/50/100 VAGOS -AWARD LOST MC - AWARD COP- NA" Denominator="100" Desc = "534" Label = "534" />
  1970.  
  1971. <stat Name="AWD_VEHICLE_JUMP_OVER_40M" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 -Awards for number of times jumping a vehicle over 40 metres Denomitators of 1/5/10/25/50 VAGOS -AWARD LOST MC - AWARD COP- AWARD" Denominator="1" Desc = "509" Label = "509" />
  1972. <stat Name="AWD_RACES_WON" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 -Awards for number of times player wins a race Denomitators of 1/5/10/25/50/100 VAGOS -TATTOO LOST MC - PATCH COP- MEDAL" Denominator="100" Desc = "586" Label = "586" />
  1973. <stat Name="AWD_NO_ARMWRESTLING_WINS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 -Awards for number of times you killed every member of a gang in one mission of 1/5/10/20 VAGOS -TATTOO LOST MC - PATCH COP- MEDAL" Denominator="20" Desc = "589" Label = "589" />
  1974.  
  1975. <stat Name="AWD_WIN_AT_DARTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 1 - Number of dart wins 1 10 25 50 VAGOS -TAT LOST MC - PATCH COP- NA" Denominator="20" Desc = "610" Label = "610" />
  1976. <stat Name="AWD_CAR_BOMBS_ENEMY_KILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="MP Char 1 - Number of enemies killed using car bombs 1 5 10 25 VAGOS -TAT LOST MC - PATCH COP- NA" Denominator="20" Desc = "611" Label = "611" />
  1977. <stat Name="AWD_KILLS_ASSAULT_RIFLE" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 1 - Award for kills with assualt rifle 10 25 50 100 VAGOS -TAT LOST MC - PATCH COP- NA" Denominator="20" Desc = "631" Label = "631" />
  1978. <stat Name="AWD_KILLS_MACHINEGUN" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 1 - Award for machine gun kills 10 25 50 100 VAGOS -TAT LOST MC - PATCH COP- NA" Denominator="20" Desc = "632" Label = "632" />
  1979.  
  1980.  
  1981. <stat Name="AWD_NO_HAIRCUTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 1 - Number of haircuts 1 5 10 25 VAGOS -TAT LOST MC - PATCH COP- MEDAL" Denominator="20" Desc = "639" Label = "639" />
  1982. <stat Name="AWD_PARACHUTE_JUMPS_50M" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="MP Char 1 - Number of parachute jumps over 50m 1 10 25 50 VAGOS -TAT LOST MC - PATCH COP- MEDAL" Denominator="20" Desc = "640" Label = "640" />
  1983. <stat Name="AWD_PARACHUTE_JUMPS_20M" Type="int" SaveCategory="1" online="true" profile="true" Owner="coder" characterStat="true" Comment="MP Char 1 - Number of parachute jumps below 20m" Denominator="20" Desc = "640" Label = "640" />
  1984.  
  1985. <!--FM AWARDS -->
  1986. <stat Name="AWD_FM_GOLF_HOLE_IN_1" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  1987. <stat Name="AWD_FM_GOLF_BIRDIES" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  1988. <stat Name="AWD_FM_GOLF_WON" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  1989. <stat Name="AWD_FM_SHOOTRANG_TG_WON" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  1990. <stat Name="AWD_FM_SHOOTRANG_RT_WON" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  1991. <stat Name="AWD_FM_SHOOTRANG_CT_WON" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  1992. <stat Name="AWD_FM_SHOOTRANG_GRAN_WON" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  1993.  
  1994.  
  1995. <stat Name="AWD_FM_TENNIS_WON" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  1996. <stat Name="AWD_FM_TENNIS_ACE" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  1997. <stat Name="AWD_FM_TENNIS_5_SET_WINS" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  1998. <stat Name="AWD_FM_TENNIS_STASETWIN" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  1999.  
  2000. <stat Name="AWD_FM_GTA_RACES_WON" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2001. <stat Name="AWD_FM_RACES_FASTEST_LAP" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2002. <stat Name="AWD_FM_RACE_LAST_FIRST" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2003.  
  2004.  
  2005. <stat Name="AWD_FM_DM_WINS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2006. <stat Name="AWD_FM_TDM_WINS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2007. <stat Name="AWD_FM_TDM_MVP" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2008. <stat Name="AWD_FM_DM_KILLSTREAK" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2009. <stat Name="AWD_FM_DM_TOTALKILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2010. <stat Name="AWD_FM_DM_3KILLSAMEGUY" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2011. <stat Name="AWD_FM_DM_STOLENKILL" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2012.  
  2013.  
  2014. <stat Name="AWD_FMATTGANGHQ" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Clear all gang hideouts in one game day" />
  2015. <stat Name="AWD_FMBASEJMP" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Land away from the target centre times" />
  2016. <stat Name="AWD_FMHORDWAVESSURVIVE" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Reach wave without dying." />
  2017. <stat Name="AWD_FMBBETWIN" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Earn amount of cash from betting" />
  2018. <stat Name="AWD_FMCRATEDROPS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2019. <stat Name="AWD_FM6DARTCHKOUT" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2020.  
  2021. <stat Name="AWD_FMWINEVERYGAMEMODE" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2022. <stat Name="AWD_FMPICKUPDLCCRATE1ST" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2023. <stat Name="AWD_FMWINALLRACEMODES" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2024. <stat Name="AWD_FMRACEWORLDRECHOLDER" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2025. <stat Name="AWD_FMRALLYWONDRIVE" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2026. <stat Name="AWD_FMRALLYWONNAV" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2027. <stat Name="AWD_FM25DIFITEMSCLOTHES" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2028. <stat Name="AWD_FMFULLYMODDEDCAR" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2029. <stat Name="AWD_FMWINCUSTOMRACE" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2030. <stat Name="AWD_FM25DIFFERENTDM" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2031. <stat Name="AWD_FM25DIFFERENTRACES" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2032. <stat Name="AWD_FMMOSTKILLSGANGHIDE" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2033. <stat Name="AWD_FMMOSTKILLSSURVIVE" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2034. <stat Name="AWD_FMSHOOTDOWNCOPHELI" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2035. <stat Name="AWD_FMKILLCHEATER" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2036. <stat Name="AWD_FMKILL3ANDWINGTARACE" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2037. <stat Name="AWD_FMTATTOOALLBODYPARTS" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2038. <stat Name="AWD_FMWINRACETOPOINTS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2039. <stat Name="AWD_FMKILLBOUNTY" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2040. <stat Name="AWD_FMOVERALLKILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2041. <stat Name="AWD_FMWINSEARACE" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2042. <stat Name="AWD_FMWINAIRRACE" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2043. <stat Name="AWD_FMREVENGEKILLSDM" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2044. <stat Name="AWD_FMKILLSTREAKSDM" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2045.  
  2046. <stat Name="AWD_FMTIME5STARWANTED" Type="u64" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2047. <stat Name="AWD_FMFURTHESTWHEELIE" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2048. <stat Name="AWD_FMDRIVEWITHOUTCRASH" Type="u64" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2049. <stat Name="AWD_FMMOSTFLIPSINONEVEHICLE" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2050. <stat Name="AWD_FMMOSTSPINSINONEVEHICLE" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Get all the services" />
  2051.  
  2052.  
  2053. <stat Name="BOUNTTARG" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Bounties placed on other players by you" />
  2054.  
  2055. <stat Name="BOUNTSONU" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Bounties placed on other players by you" />
  2056. <stat Name="BOUNTPLACED" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Bounties placed on you " />
  2057. <stat Name="VEHEXPORTED" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Cars exported" />
  2058. <stat Name="BETAMOUNT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  2059. <stat Name="GHKILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  2060. <stat Name="HORDELVL" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  2061. <stat Name="HORDKILLS" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  2062. <stat Name="UNIQUECRATES" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  2063. <stat Name="BJWINS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  2064. <stat Name="HORDEWINS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - PERSONAL -Number of silent kills" />
  2065. <stat Name="MCMWINS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MIssion created mission Wins" />
  2066. <stat Name="GANGHIDWINS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MIssion created mission Wins" />
  2067.  
  2068. <stat Name="CRARMWREST" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2069. <stat Name="CRBASEJUMP" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2070. <stat Name="CRDARTS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2071. <stat Name="CRDM" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2072. <stat Name="CRGANGHIDE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2073. <stat Name="CRGOLF" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2074. <stat Name="CRHORDE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2075. <stat Name="CRMISSION" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2076. <stat Name="CRSHOOTRNG" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2077. <stat Name="CRTENNIS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2078.  
  2079. <!--FM XP REWARD TRACKING STATS -->
  2080. <stat Name="REW_DAILY_DM" Type="date" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2081. <stat Name="REW_DAILY_RACE" Type="date" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2082. <stat Name="REW_DAILY_MISS" Type="date" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2083. <stat Name="REW_DAILY_DM_WIN" Type="date" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2084. <stat Name="REW_DAILY_RACE_WIN" Type="date" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2085. <stat Name="REW_DAILY_MISS_WIN" Type="date" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2086.  
  2087. <stat Name="REW_DAILY_5_MISS" Type="date" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2088. <stat Name="REW_DAILY_5_MISS_COUNTER" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2089.  
  2090. <stat Name="REW_10_CREATOR_MISS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2091. <stat Name="REW_RSTAR_VER_COMP_COUNT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2092. <stat Name="REW_PLAY_OWN_MISS_COUNT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2093. <stat Name="REW_PLAY_OTHER_MISS_COUNT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2094. <stat Name="REW_PLAY_CREATE_1_TYPE" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2095. <stat Name="REW_BOOL_PLAY_OTHER_MISS" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2096. <stat Name="REW_BOOL_PLAY_RSTAR_MISS" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Stores how many times the player has started mission script" />
  2097.  
  2098. <!--FM VEHICLE ACCESS STATS -->
  2099. <stat Name="PLANE_ACCESS" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Says if the player has access to a Plane for Heists." />
  2100. <stat Name="BOAT_ACCESS" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Says if the player has access to a Boat for Heists." />
  2101. <stat Name="HELI_ACCESS" Type="bool" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Says if the player has access to a Heli for Heists." />
  2102.  
  2103. <!--FM RACE MOOD FACE -->
  2104. <stat Name="CHAR_MOOD_NORMAL" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Says if the player has access to a Heli for Heists." />
  2105. <stat Name="CHAR_MOOD_RACES" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Says if the player has access to a Heli for Heists." />
  2106. <stat Name="CHAR_MOOD_DM" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Says if the player has access to a Heli for Heists." />
  2107. <!--FM SNACKS -->
  2108. <stat Name="NO_BOUGHT_YUM_SNACKS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Says if the player has access to a Heli for Heists." />
  2109. <stat Name="NO_BOUGHT_HEALTH_SNACKS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Says if the player has access to a Heli for Heists." />
  2110. <stat Name="NO_BOUGHT_EPIC_SNACKS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Says if the player has access to a Heli for Heists." />
  2111.  
  2112. <!-- Property Stats -->
  2113. <stat Name="PROPERTY_HOUSE" Type="int" SaveCategory="1" Default="0" online="true" profile="FALSE" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="Stores what house player has purchased" />
  2114.  
  2115. <stat Name="AWD_TEMPAWARDINT" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2116. <stat Name="AWD_TEMPAWARDFLOAT" Type="float" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2117. <stat Name="AWD_TEMPAWARDBOOL" Type="bool" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Assassination attempts stopped" />
  2118.  
  2119.  
  2120. <stat Name="DM_CURRENT_KILLS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Deathmatch - Total DM KILLS the player has" />
  2121. <stat Name="DM_CURRENT_ASSISTS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Deathmatch - Total DM ASSISTS player has" />
  2122. <stat Name="DM_CURRENT_DEATHS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Deathmatch - Total DM DEATHS player has" />
  2123. <stat Name="DM_HIGHEST_KILLSTREAK" Type="int" SaveCategory="1" online="true" profile="true" Owner="script" characterStat="true" Comment="Deathmatch - HIGHEST DM KILLSTREAK the player has" />
  2124. <stat Name="DM_TOTAL_CASH" Type="int" SaveCategory="1" online="true" profile="true" FlushPriority="15" Owner="script" characterStat="true" Comment="Deathmatch - Total DM CASH player has" />
  2125. <stat Name="DM_TOTAL_ASSISTS" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Deathmatch - Total DM ASSISTS player has" />
  2126. <stat Name="FM_PRIM_COLOUR" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Colour the player set the car at" />
  2127. <stat Name="FM_SECO_COLOUR" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Colour the player set the car at" />
  2128. <stat Name="SHOOTINGRANGE_GRID_SCORE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MPPLAYER - Best score achieved in the Shooting Range GRID round" />
  2129. <stat Name="SHOOTINGRANGE_RAND_SCORE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MPPLAYER - Best score achieved in the Shooting Range RANDOM round" />
  2130. <stat Name="SHOOTINGRANGE_COV_SCORE" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MPPLAYER - Best score achieved in the Shooting Range COVERED round" />
  2131.  
  2132. <!-- CREW UNLOCKS -->
  2133. <stat Name="CHAR_CREWUNLOCK_1_UNLCK" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MP Char 0 - Player Kit Unlocked bitset 1" />
  2134. <stat Name="FRONT_END_JIP_UNLOCKED" Type="bool" SaveCategory="0" online="true" profile="true" Owner="script" characterStat="true" Comment="True when the character has gotten through the tutorial" />
  2135.  
  2136.  
  2137.  
  2138.  
  2139. <!--GAME SPECIFIC MISSION STATS -->
  2140. <stat Name="MPPLY_FM_CINEMA_CORONA_HELP" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Help text the first time the player enters a cinema corona in freemode" />
  2141. <stat Name="MPPLY_FM_DONE_MISS_CORONA_HELP" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Help text the first time the player enters a mission corona in freemode" />
  2142. <stat Name="MPPLY_FM_DONE_ARMW_CORONA_HELP" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Help text the first time the player enters an arm wrestling corona in freemode" />
  2143. <stat Name="MPPLY_FM_DONE_DARTS_CORONA_HELP" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Help text the first time the player enters a darts corona in freemode" />
  2144. <stat Name="MPPLY_FM_DONE_SHOOT_CORONA_HELP" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Help text the first time the player enters a shooting range corona in freemode" />
  2145. <stat Name="MPPLY_FM_DONE_TNS_CORONA_HELP" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Help text the first time the player enters a tennis corona in freemode" />
  2146. <stat Name="MPPLY_FM_DONE_GOLF_CORONA_HELP" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Help text the first time the player enters a golf corona in freemode" />
  2147. <stat Name="MPPLY_FM_DONE_HRD_CORONA_HELP" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Help text the first time the player enters a horde corona in freemode" />
  2148. <stat Name="MPPLY_FM_DONE_RC_CORONA_HELP" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Help text the first time the player enters a race corona in freemode" />
  2149. <stat Name="MPPLY_FM_DONE_DM_CORONA_HELP" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Help text the first time the player enters a DM corona in freemode" />
  2150. <stat Name="MPPLY_DONE_RACE_CREATOR_TUT" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - PERSONAL -Has player completed the race-creator tutorial" />
  2151. <stat Name="MPPLY_TOTAL_TIME_SPENT_DEATHMAT" Type="u64" SaveCategory="0" online="true" profile="true" Owner="script" Comment="MP Char 0 - PERSONAL -Total time spent in Deathmatch" />
  2152. <stat Name="MPPLY_TOTAL_TIME_SPENT_FREEMODE" Type="u64" SaveCategory="0" online="true" profile="true" Owner="script" Comment="MP Char 0 - PERSONAL -Total time spent in Freemode" />
  2153. <stat Name="MPPLY_TOTAL_TIME_MISSION_CREATO" Type="u64" SaveCategory="0" online="true" profile="true" Owner="script" Comment="MP Char 0 - PERSONAL -Total time spent in Mission Creator" />
  2154. <stat Name="MPPLY_TOTAL_TIME_SPENT_RACES" Type="u64" SaveCategory="0" online="true" profile="true" Owner="script" Comment="MP Char 0 - PERSONAL -Total time spent in Races" />
  2155. <stat Name="MPPLY_TOTAL_TIME_SPENT_ON_MISS" Type="u64" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - PERSONAL -Total time spent on mission" />
  2156. <stat Name="MPPLY_TOTAL_RACES_WON" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="Total Races won" />
  2157. <stat Name="MPPLY_TOTAL_RACES_LOST" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="Total Races won" />
  2158. <stat Name="MPPLY_TOTAL_CUSTOM_RACES_WON" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Total Races won in a custom vehicle" />
  2159. <stat Name="MPPLY_TOTAL_DEATHMATCH_LOST" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="Total DM won" />
  2160. <stat Name="MPPLY_TOTAL_DEATHMATCH_WON" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="Total DM won" />
  2161. <stat Name="MPPLY_TOTAL_TDEATHMATCH_LOST" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="Total DM won" />
  2162. <stat Name="MPPLY_TOTAL_TDEATHMATCH_WON" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="Total DM won" />
  2163.  
  2164. <stat Name="MPPLY_LAST_REPORT_PENALTY" Type="u32" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="The last time a player took a report strength penalty" />
  2165. <stat Name="MPPLY_LAST_COMMEND_PENALTY" Type="u32" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="The last time a player took a commend strength penalty" />
  2166. <stat Name="MPPLY_LAST_REPORT_RESTORE" Type="u32" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="The last time a player took a report strength penalty" />
  2167. <stat Name="MPPLY_LAST_COMMEND_RESTORE" Type="u32" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="The last time a player took a report strength penalty" />
  2168. <stat Name="MPPLY_REPORT_STRENGTH" Type="int" SaveCategory="0" Default="16" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="The amount to be added to the report stats (default of 16)" />
  2169. <stat Name="MPPLY_COMMEND_STRENGTH" Type="int" SaveCategory="0" Default="16" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="The amount to be added to the commend stats (default of 16)" />
  2170. <stat Name="MPPLY_GRIEFING" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" triggerEventValueChanged="true" Comment="Total reports of Griefing" />
  2171. <stat Name="MPPLY_VC_ANNOYINGME" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="Voice Chat: Annoying Me reports" />
  2172. <stat Name="MPPLY_VC_HATE" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="Voice Chat: Using Hate reports" />
  2173. <stat Name="MPPLY_OFFENSIVE_LANGUAGE" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" triggerEventValueChanged="true" Comment="Total reports of Offensive Language" />
  2174. <stat Name="MPPLY_OFFENSIVE_TAGPLATE" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" triggerEventValueChanged="true" Comment="Total reports for offensive emblem, crew, or UGC" />
  2175. <stat Name="MPPLY_OFFENSIVE_UGC" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" triggerEventValueChanged="true" Comment="Total reports for offensive emblem, crew, or UGC" />
  2176. <stat Name="MPPLY_BAD_CREW_NAME" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="Total reports of offensive crew name" />
  2177. <stat Name="MPPLY_BAD_CREW_MOTTO" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="Total reports for offensive crew motto" />
  2178. <stat Name="MPPLY_BAD_CREW_STATUS" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="Total reports for offensive crew status" />
  2179. <stat Name="MPPLY_BAD_CREW_EMBLEM" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="Total reports for offensive emblem" />
  2180. <stat Name="MPPLY_GAME_EXPLOITS" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" triggerEventValueChanged="true" Comment="Total reports for offensive emblem, crew, or UGC" />
  2181. <stat Name="MPPLY_EXPLOITS" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="Total reports for use of exploits" />
  2182. <stat Name="MPPLY_PLAYERMADE_TITLE" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="Total reports for player made titles (missions)" />
  2183. <stat Name="MPPLY_PLAYERMADE_DESC" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="Total reports for Player made description (missions)" />
  2184. <stat Name="MPPLY_FRIENDLY" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" triggerEventValueChanged="true" Comment="Total commends for being Friendly" />
  2185. <stat Name="MPPLY_HELPFUL" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" triggerEventValueChanged="true" Comment="Total commends for being Helpful" />
  2186. <stat Name="MPPLY_STARTED_MP" Type="date" SaveCategory="0" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" Comment="Date the player started playing MP" />
  2187. <stat Name="MPPLY_KILLS_PLAYERS_CHEATER" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="Players Kill for cheater ratio" />
  2188. <stat Name="MPPLY_DEATHS_PLAYERS_CHEATER" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="coder" Comment="Players Deaths for cheater ratio" />
  2189. <stat Name="MPPLY_NON_CHEATER_CASH" Type="date" SaveCategory="0" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" Comment="Date the player started playing MP" />
  2190.  
  2191. <stat Name="MPPLY_DONE_DM_CREATOR_TUT" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - PERSONAL -Has player completed the DM-creator tutorial" />
  2192. <stat Name="MPPLY_DONE_MISS_CREATOR_TUT" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - PERSONAL -Has player completed the DM-creator tutorial" />
  2193. <stat Name="MPPLY_FM_ACTIVITY_HELP" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Help text for freemode activities" />
  2194. <stat Name="MPPLY_MISSIONS_CREATED" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MP Char 0 - PERSONAL -Has player completed the DM-creator tutorial" />
  2195. <stat Name="MPPLY_FM_NONMISS_HELP" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Help text for non-mission freemode activities" />
  2196. <stat Name="MPPLY_FM_RACE_MENU_HELP" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Help text for race menu" />
  2197.  
  2198. <!--General Player Stats -->
  2199. <stat Name="MPPLY_ISPUNISHED" Type="bool" SaveCategory="0" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" Comment="Sets to true when the player is on mission - used for reliability check" />
  2200. <stat Name="MPPLY_LAST_MP_CHAR" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="15" ServerAuthoritative="false" community="false" Min="0" Max="5" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" Comment="stores the last character the player went in mp" />
  2201. <stat Name="MPPLY_FM_INTRO_CUT_DONE" Type="bool" SaveCategory="0" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" Comment="Sets to True when the player has watched the Freemode Intro Cutscene" />
  2202. <stat Name="MPPLY_FM_MISSION_LIKES" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" Comment="Sets to True when the player has watched the Freemode Intro Cutscene" />
  2203.  
  2204. <!--FM Race Cars Stats -->
  2205. <stat Name="MPPLY_VEHSUPER" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2206. <stat Name="MPPLY_VEHSPORTS" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2207. <stat Name="MPPLY_VEHMUSCLE" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2208. <stat Name="MPPLY_VEHEXEC" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2209. <stat Name="MPPLY_VEHCLASS" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2210. <stat Name="MPPLY_VEHIMPORT" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2211. <stat Name="MPPLY_VEHIARMO" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2212. <stat Name="MPPLY_VEHISWAG" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2213. <stat Name="MPPLY_VEHIOFFRD" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2214. <stat Name="MPPLY_VEHIVANS" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2215. <stat Name="MPPLY_VEHIBIKES" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2216. <stat Name="MPPLY_VEHICYC" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2217. <stat Name="MPPLY_VEHIPLN" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2218. <stat Name="MPPLY_VEHIHELI" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2219. <stat Name="MPPLY_VEHIBOAT" Type="int" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="Freemode - Shop Data" />
  2220.  
  2221. <!--Permanent Stats -->
  2222. <stat Name="MPPLY_CHAR_DIST_TRAVELLED" Type="float" SaveCategory="0" online="true" profile="true" Owner="script" Comment="MP Char 0 - Total distance travelled. On Foot, car, boat, bike etc" />
  2223. <stat Name="MPPLY_DEATHS_PLAYER" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="coder" Comment="Number of deaths caused by other players" />
  2224. <stat Name="MPPLY_KILLS_PLAYERS" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="coder" Comment="Number of players killed" />
  2225. <stat Name="MPPLY_DM_TOTAL_KILLS" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Deathmatch - Total DM KILLS the player has" />
  2226. <stat Name="MPPLY_DM_TOTAL_DEATHS" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Deathmatch - Total DM DEATHS player has" />
  2227.  
  2228. <stat Name="MPPLY_GLOBALXP" Type="int" SaveCategory="0" online="true" profile="true" Owner="script" Comment="Players Globals XP" />
  2229.  
  2230. <!-- Player Cash -->
  2231. <stat Name="MPPLY_CARAPP_DATA_SENT_0" Type="bool" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="MPPLAYER - CarApp data has been setup for character slot" />
  2232. <stat Name="MPPLY_CARAPP_DATA_SENT_1" Type="bool" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="MPPLAYER - CarApp data has been setup for character slot" />
  2233. <stat Name="MPPLY_CARAPP_DATA_SENT_2" Type="bool" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="MPPLAYER - CarApp data has been setup for character slot" />
  2234. <stat Name="MPPLY_CARAPP_DATA_SENT_3" Type="bool" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="MPPLAYER - CarApp data has been setup for character slot" />
  2235. <stat Name="MPPLY_CARAPP_DATA_SENT_4" Type="bool" SaveCategory="0" Default="-1" online="true" profile="false" Owner="script" Comment="MPPLAYER - CarApp data has been setup for character slot" />
  2236.  
  2237. <!-- Player Cash -->
  2238. <stat Name="MPPLY_TOTAL_SPENT" Type="int" SaveCategory="0" online="true" profile="true" Owner="script" Comment="Players Globals XP" />
  2239. <stat Name="MPPLY_TOTAL_EARNED" Type="int" SaveCategory="0" online="true" profile="true" Owner="script" Comment="Players Globals XP" />
  2240.  
  2241.  
  2242. <!-- Player Awards -->
  2243.  
  2244. <stat Name="MPPLY_AWD_FM_CR_RACES_MADE" Type="int" SaveCategory="0" online="true" profile="true" Owner="script" Comment="Assassination attempts stopped" />
  2245. <stat Name="MPPLY_AWD_FM_CR_DM_MADE" Type="int" SaveCategory="0" online="true" profile="true" Owner="script" Comment="Assassination attempts stopped" />
  2246. <stat Name="MPPLY_AWD_FM_CR_PLAYED_BY_PEEP" Type="int" SaveCategory="0" online="true" profile="true" Owner="script" Comment="Assassination attempts stopped" />
  2247. <stat Name="MPPLY_AWD_FM_CR_MISSION_SCORE" Type="int" SaveCategory="0" online="true" profile="true" Owner="script" Comment="Assassination attempts stopped" />
  2248.  
  2249.  
  2250. <!-- Player Gun Club Stats -->
  2251. <stat Name="MPPLY_SHOOTINGRANGE_WINS" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Best score achieved in the Shooting Range RANDOM round" />
  2252. <stat Name="MPPLY_SHOOTINGRANGE_LOSSES" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Best score achieved in the Shooting Range COVERED round" />
  2253. <stat Name="MPPLY_SHOOTINGRANGE_TOTAL_MATCH" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Total Shooting Games Played" />
  2254. <stat Name="SHOOTINGRANGE_SEEN_TUT" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MPPLAYER - Checks that the player has seen the Range Tutorial" />
  2255.  
  2256. <!-- Player Tennis Stats -->
  2257. <stat Name="TENNIS_SEEN_TUTORIAL" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MPPLAYER - Checks that the player has seen the Tennis Tutorial." />
  2258. <stat Name="MPPLY_TENNIS_MATCHES_WON" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MPPLAYER - Total tennis matches won" />
  2259. <stat Name="MPPLY_TENNIS_MATCHES_LOST" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MPPLAYER - Total tennis matches lost" />
  2260.  
  2261. <!-- Player Golf Stats -->
  2262. <stat Name="MPPLY_GOLF_WINS" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MPPLAYER - Distance of longest putt that went in the cup" />
  2263. <stat Name="MPPLY_GOLF_LOSSES" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MPPLAYER - Distance of longest putt that went in the cup" />
  2264.  
  2265. <!-- Player Darts Stats -->
  2266. <stat Name="DARTS_SEEN_TUTORIAL" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MPPLAYER - Checks that the player has seen the darts Tutorial." />
  2267. <stat Name="MPPLY_DARTS_TOTAL_WINS" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MPPLAYER - Total number of Dart game wins " />
  2268. <stat Name="MPPLY_DARTS_TOTAL_MATCHES" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MPPLAYER - Total number of Dart matches " />
  2269.  
  2270. <!-- Player Arm Wrestling Stats -->
  2271. <stat Name="ARMWRESTLING_SEEN_TUTORIAL" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="MPPLAYER - Checks that the player has seen the arm wrestling Tutorial." />
  2272. <stat Name="MPPLY_ARMWRESTLING_TOTAL_WINS" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Total number of Arm Wrestling wins " />
  2273. <stat Name="MPPLY_ARMWRESTLING_TOTAL_MATCH" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Total number of Arm Wrestling matches " />
  2274.  
  2275. <!-- Crew Challenge Stats -->
  2276. <stat Name="MPPLY_CREW_CHALLENGE_WIN" Type="int" SaveCategory="0" online="true" profile="true" Owner="script" Comment="MPPLAYER - Total number of Arm Wrestling matches " />
  2277. <stat Name="MPPLY_CREW_HEAD2HEAD_WIN" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Total number of Arm Wrestling matches " />
  2278.  
  2279.  
  2280. <!-- CREW XP STATS -->
  2281. <stat Name="MPPLY_CREW_LOCAL_XP_0" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" triggerEventValueChanged="true" Comment="MPPLAYER 0 - Players local crew xp for team 0" />
  2282. <stat Name="MPPLY_CREW_LOCAL_XP_1" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" triggerEventValueChanged="true" Comment="MPPLAYER 0 - Players local crew xp for team 1" />
  2283. <stat Name="MPPLY_CREW_LOCAL_XP_2" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" triggerEventValueChanged="true" Comment="MPPLAYER 0 - Players local crew xp for team 2" />
  2284. <stat Name="MPPLY_CREW_LOCAL_XP_3" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" triggerEventValueChanged="true" Comment="MPPLAYER 0 - Players local crew xp for team 3" />
  2285. <stat Name="MPPLY_CREW_LOCAL_XP_4" Type="int" SaveCategory="0" Default="0" online="true" profile="true" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" triggerEventValueChanged="true" Comment="MPPLAYER 0 - Players local crew xp for team 4" />
  2286. <stat Name="MPPLY_XP_REWARD_PLAYER_IN_CREW" Type="bool" SaveCategory="0" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" Comment="MPPLAYER 0 - Players local crew xp for team 4" />
  2287.  
  2288. <!-- JOB STATS -->
  2289. <stat Name="MPPLY_TIMES_FINISH_RACE_TOP_3" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MPPLAYER - Distance of longest putt that went in the cup" />
  2290. <stat Name="MPPLY_TIMES_FINISH_RACE_LAST" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MPPLAYER - Distance of longest putt that went in the cup" />
  2291. <stat Name="MPPLY_TIMES_RACE_BEST_LAP" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MPPLAYER - Distance of longest putt that went in the cup" />
  2292.  
  2293. <stat Name="MPPLY_TIMES_FINISH_DM_TOP_3" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MPPLAYER - Distance of longest putt that went in the cup" />
  2294. <stat Name="MPPLY_TIMES_FINISH_DM_LAST" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MPPLAYER - Distance of longest putt that went in the cup" />
  2295.  
  2296. <stat Name="MPPLY_CRMISSION" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Distance of longest putt that went in the cup" />
  2297. <stat Name="MPPLY_MCMWIN" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Distance of longest putt that went in the cup" />
  2298.  
  2299. <stat Name="MPPLY_CRHORDE" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Distance of longest putt that went in the cup" />
  2300. <stat Name="MPPLY_HORDEWINS" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Distance of longest putt that went in the cup" />
  2301.  
  2302. <stat Name="MPPLY_CURRENT_CREW_RANK" Type="int" SaveCategory="0" online="true" profile="true" Owner="script" Comment="Rank in the primary crew." />
  2303. <stat Name="MPPLY_NEXT_CREW_RANK" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="The next rank in the primary crew." />
  2304.  
  2305.  
  2306. <stat Name="MPPLY_VOTED_OUT" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="The next rank in the primary crew." />
  2307. <stat Name="MPPLY_VOTED_OUT_DELTA" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="The next rank in the primary crew." />
  2308. <stat Name="MPPLY_VOTED_OUT_QUIT" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="The next rank in the primary crew." />
  2309.  
  2310. <stat Name="MPPLY_WAS_I_BAD_SPORT" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="The next rank in the primary crew." />
  2311. <stat Name="MPPLY_WAS_I_CHEATER" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="The next rank in the primary crew." />
  2312.  
  2313. <stat Name="MPPLY_NEW_CONTENT" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Store the content hash so it can be checked for a difference." />
  2314.  
  2315. <!--
  2316.  
  2317. <stat Name="MPPLY_CREW_GLOBAL_XP_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER 0 - Players GLOBAL crew xp for team 0" />
  2318. <stat Name="MPPLY_CREW_GLOBAL_XP_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER 0 - Players GLOBAL crew xp for team 1" />
  2319. <stat Name="MPPLY_CREW_GLOBAL_XP_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER 0 - Players GLOBAL crew xp for team 2" />
  2320. <stat Name="MPPLY_CREW_GLOBAL_XP_3" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER 0 - Players GLOBAL crew xp for team 3" />
  2321. <stat Name="MPPLY_CREW_GLOBAL_XP_4" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER 0 - Players GLOBAL crew xp for team 4" />
  2322. -->
  2323. <stat Name="MPPLY_CREW_0_ID" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" triggerEventValueChanged="true" Comment="MPPLAYER 0 - Players GLOBAL crew xp for team 0" />
  2324. <stat Name="MPPLY_CREW_1_ID" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" triggerEventValueChanged="true" Comment="MPPLAYER0 - Players GLOBAL crew xp for team 1" />
  2325. <stat Name="MPPLY_CREW_2_ID" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" triggerEventValueChanged="true" Comment="MPPLAYER0 - Players GLOBAL crew xp for team 2" />
  2326. <stat Name="MPPLY_CREW_3_ID" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" triggerEventValueChanged="true" Comment="MPPLAYER 0 - Players GLOBAL crew xp for team 3" />
  2327. <stat Name="MPPLY_CREW_4_ID" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" triggerEventValueChanged="true" Comment="MPPLAYER 0 - Players GLOBAL crew xp for team 4" />
  2328.  
  2329. <stat Name="MPPLY_CREW_LOCAL_TIME_0" Type="u64" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2330. <stat Name="MPPLY_CREW_LOCAL_TIME_1" Type="u64" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2331. <stat Name="MPPLY_CREW_LOCAL_TIME_2" Type="u64" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2332. <stat Name="MPPLY_CREW_LOCAL_TIME_3" Type="u64" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2333. <stat Name="MPPLY_CREW_LOCAL_TIME_4" Type="u64" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2334.  
  2335. <stat Name="CREW_LOCAL_TIME_0" Type="u64" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="Time in a crew" />
  2336. <stat Name="CREW_LOCAL_TIME_1" Type="u64" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="Time in a crew" />
  2337. <stat Name="CREW_LOCAL_TIME_2" Type="u64" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="Time in a crew" />
  2338. <stat Name="CREW_LOCAL_TIME_3" Type="u64" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="Time in a crew" />
  2339. <stat Name="CREW_LOCAL_TIME_4" Type="u64" SaveCategory="0" online="true" profile="false" Owner="script" characterStat="true" Comment="Time in a crew" />
  2340.  
  2341. <stat Name="MPPLY_CREW_NO_HEISTS_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2342. <stat Name="MPPLY_CREW_NO_HEISTS_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2343. <stat Name="MPPLY_CREW_NO_HEISTS_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2344. <stat Name="MPPLY_CREW_NO_HEISTS_3" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2345. <stat Name="MPPLY_CREW_NO_HEISTS_4" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2346.  
  2347.  
  2348.  
  2349.  
  2350. <stat Name="MPPLY_CREW_HEIST_CASH_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2351. <stat Name="MPPLY_CREW_HEIST_CASH_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2352. <stat Name="MPPLY_CREW_HEIST_CASH_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2353. <stat Name="MPPLY_CREW_HEIST_CASH_3" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2354. <stat Name="MPPLY_CREW_HEIST_CASH_4" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time in a crew" />
  2355.  
  2356. <stat Name="SPAWN_LOCATION_SETTING" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP setting, players spawn location" />
  2357. <stat Name="PLAYER_TITLE_SETTING" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP setting, players title" />
  2358. <stat Name="PLAYER_ANIM_SETTING" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP setting, players quick animation" />
  2359. <stat Name="PLAYER_ANIM_VEH_SETTING" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="MP setting, players quick animation" />
  2360.  
  2361. <stat Name="LAST_PLAYED_CORONA_ANIM_TY" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Last type of animation played in corona" />
  2362. <stat Name="LAST_PLAYED_CORONA_ANIM" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Last animation played in corona" />
  2363.  
  2364. <stat Name="LAST_PLAYED_CORONA_RADIO" Type="int" SaveCategory="1" online="true" profile="false" Owner="script" characterStat="true" Comment="Last radio station selected in corona" />
  2365.  
  2366.  
  2367. <!-- BASEJUMP Stats -->
  2368. <stat Name="MPPLY_BJ_WINS" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MPPLAYER - Lowest Score for a Round - Delta vs. Par" />
  2369. <stat Name="MPPLY_BJ_LOST" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MPPLAYER - Distance of longest drive that stopped on the fairway" />
  2370.  
  2371. <!-- RACE TO POINT Stats -->
  2372. <stat Name="MPPLY_RACE_2_POINT_WINS" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Lowest Score for a Round - Delta vs. Par" />
  2373. <stat Name="MPPLY_RACE_2_POINT_LOST" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Distance of longest drive that stopped on the fairway" />
  2374.  
  2375. <!-- Player award -->
  2376. <stat Name="MPPLY_BRONZE_INTPLY_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2377. <stat Name="MPPLY_BRONZE_INTPLY_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2378. <stat Name="MPPLY_BRONZE_INTPLY_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2379. <stat Name="MPPLY_BRONZE_INTPLY_3" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2380.  
  2381. <stat Name="MPPLY_BRONZE_FLOATPLY_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2382. <stat Name="MPPLY_BRONZE_FLOATPLY_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2383. <stat Name="MPPLY_BRONZE_FLOATPLY_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2384.  
  2385. <stat Name="MPPLY_SILVER_INTPLY_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2386. <stat Name="MPPLY_SILVER_INTPLY_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2387. <stat Name="MPPLY_SILVER_INTPLY_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2388. <stat Name="MPPLY_SILVER_INTPLY_3" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2389.  
  2390. <stat Name="MPPLY_SILVER_FLOATPLY_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2391. <stat Name="MPPLY_SILVER_FLOATPLY_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2392. <stat Name="MPPLY_SILVER_FLOATPLY_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2393.  
  2394. <stat Name="MPPLY_GOLD_INTPLY_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2395. <stat Name="MPPLY_GOLD_INTPLY_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2396. <stat Name="MPPLY_GOLD_INTPLY_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2397. <stat Name="MPPLY_GOLD_INTPLY_3" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2398.  
  2399. <stat Name="MPPLY_GOLD_FLOATPLY_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2400. <stat Name="MPPLY_GOLD_FLOATPLY_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2401. <stat Name="MPPLY_GOLD_FLOATPLY_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2402.  
  2403. <stat Name="MPPLY_PLATINUM_INTPLY_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2404. <stat Name="MPPLY_PLATINUM_INTPLY_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2405. <stat Name="MPPLY_PLATINUM_INTPLY_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2406. <stat Name="MPPLY_PLATINUM_INTPLY_3" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2407.  
  2408. <stat Name="MPPLY_PLATINUM_FLOATPLY_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2409. <stat Name="MPPLY_PLATINUM_FLOATPLY_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2410. <stat Name="MPPLY_PLATINUM_FLOATPLY_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2411.  
  2412.  
  2413. <stat Name="MPPLY_FM_VEH_COLOUR_TYPE" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - The type of colour last picked by player" />
  2414. <stat Name="MPPLY_FM_VEH_COLOUR" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Colour the player set the car at" />
  2415.  
  2416. <stat Name="MPPLY_DM_CHEAT_START" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="CHEAT TRACKING No of death matchs started" />
  2417. <stat Name="MPPLY_DM_CHEAT_END" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="CHEAT TRACKING No of death matchs ended" />
  2418. <stat Name="MPPLY_DM_CHEAT_QUIT" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="CHEAT TRACKING No of death matchs ended" />
  2419. <stat Name="MPPLY_RACE_CHEAT_START" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="CHEAT TRACKING No of races started" />
  2420. <stat Name="MPPLY_RACE_CHEAT_END" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="CHEAT TRACKING No of races ended" />
  2421. <stat Name="MPPLY_RACE_CHEAT_QUIT" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="CHEAT TRACKING No of races quit" />
  2422. <stat Name="MPPLY_MC_CHEAT_START" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="CHEAT TRACKING No of missions started" />
  2423. <stat Name="MPPLY_MC_CHEAT_END" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="CHEAT TRACKING no of missions ended" />
  2424. <stat Name="MPPLY_MC_CHEAT_QUIT" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="CHEAT TRACKING no of missions quit" />
  2425. <stat Name="MPPLY_MGAME_CHEAT_START" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="No of races started" />
  2426. <stat Name="MPPLY_MGAME_CHEAT_END" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="No of races ended" />
  2427. <stat Name="MPPLY_MGAME_CHEAT_QUIT" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="No of races ended" />
  2428.  
  2429. <stat Name="MPPLY_AVERAGE_RTT" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Average client RTT with the host." />
  2430.  
  2431. <stat Name="MPPLY_OVERALL_CHEAT" Type="float" SaveCategory="0" online="true" profile="true" Owner="script" Comment="Number of times cheated" />
  2432. <stat Name="MPPLY_OVERALL_BADSPORT" Type="float" SaveCategory="0" online="true" profile="true" Owner="script" Comment="Number of times cheated" />
  2433. <stat Name="MPPLY_CHAR_IS_BADSPORT" Type="bool" SaveCategory="0" online="true" profile="false" Owner="coder" Comment="Track when a player has been flaged as a cheater" />
  2434.  
  2435. <stat Name="MPPLY_BECAME_BADSPORT_NUM" Type="int" SaveCategory="0" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" Comment="Number of times cheated" />
  2436. <stat Name="MPPLY_BECAME_CHEATER_NUM" Type="int" SaveCategory="0" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" triggerEventValueChanged="true" Comment="Number of times cheated" />
  2437.  
  2438. <stat Name="MPPLY_BECAME_CHEATER_DT" Type="date" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Number of times cheated" />
  2439. <stat Name="MPPLY_BECAME_BADSPORT_DT" Type="date" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Number of times cheated" />
  2440.  
  2441. <stat Name="MPPLY_ACTIVITY_STARTED" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Number of times cheated" />
  2442. <stat Name="MPPLY_ACTIVITY_ENDED" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Number of times cheated" />
  2443. <stat Name="MPPLY_ACTIVITY_QUIT" Type="int" SaveCategory="0" online="true" profile="true" Owner="script" Comment="Number of times cheated" />
  2444.  
  2445. <stat Name="MPPLY_OVERALL_SESSION_COUNT" Type="int" SaveCategory="0" online="true" profile="true" Owner="script" Comment="Number of times cheated" />
  2446.  
  2447. <stat Name="MPPLY_BADSPORT_MESSAGE" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Number of times cheated" />
  2448.  
  2449.  
  2450. <stat Name="MPPLY_DESTROYED_PVEHICLES" Type="int" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="Number of times cheated" />
  2451.  
  2452.  
  2453.  
  2454. <!-- Multiplayer Settings -->
  2455.  
  2456. <stat Name="MPPLY_BETTING_ODDS_SETTING" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP setting, players betting odds format" />
  2457. <stat Name="MPPLY_CREW_SETTINGS" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="If settings are set while in a crew" />
  2458.  
  2459.  
  2460. <!-- General award -->
  2461. <stat Name="MPGEN_BRONZE_INTGEN_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2462. <stat Name="MPGEN_BRONZE_INTGEN_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2463. <stat Name="MPGEN_BRONZE_INTGEN_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2464. <stat Name="MPGEN_BRONZE_FLOATGEN_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2465. <stat Name="MPGEN_BRONZE_FLOATGEN_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2466. <stat Name="MPGEN_BRONZE_FLOATGEN_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2467.  
  2468. <stat Name="MPGEN_SILVER_INTGEN_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2469. <stat Name="MPGEN_SILVER_INTGEN_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2470. <stat Name="MPGEN_SILVER_INTGEN_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2471. <stat Name="MPGEN_SILVER_FLOATGEN_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2472. <stat Name="MPGEN_SILVER_FLOATGEN_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2473. <stat Name="MPGEN_SILVER_FLOATGEN_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2474.  
  2475. <stat Name="MPGEN_GOLD_INTGEN_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2476. <stat Name="MPGEN_GOLD_INTGEN_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2477. <stat Name="MPGEN_GOLD_INTGEN_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2478. <stat Name="MPGEN_GOLD_FLOATGEN_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2479. <stat Name="MPGEN_GOLD_FLOATGEN_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2480. <stat Name="MPGEN_GOLD_FLOATGEN_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2481.  
  2482. <stat Name="MPGEN_PLATINUM_INTGEN_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2483. <stat Name="MPGEN_PLATINUM_INTGEN_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2484. <stat Name="MPGEN_PLATINUM_INTGEN_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2485. <stat Name="MPGEN_PLATINUM_FLOATGEN_0" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2486. <stat Name="MPGEN_PLATINUM_FLOATGEN_1" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2487. <stat Name="MPGEN_PLATINUM_FLOATGEN_2" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP Char 0 - Player Int Char Awards Platinum Level bitset" />
  2488.  
  2489.  
  2490. <!-- Spawn Vectors Stats -->
  2491. <stat Name="MPPLY_SPAWN_POSITION_1" Type="pos" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Spawn position" />
  2492. <stat Name="MPPLY_SPAWN_POSITION_2" Type="pos" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Spawn position" />
  2493. <stat Name="MPPLY_SPAWN_POSITION_3" Type="pos" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Spawn position" />
  2494. <stat Name="MPPLY_SPAWN_POSITION_4" Type="pos" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Spawn position" />
  2495. <stat Name="MPPLY_SPAWN_POSITION_5" Type="pos" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Spawn position" />
  2496. <stat Name="MPPLY_SPAWN_POSITION_6" Type="pos" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Spawn position" />
  2497. <stat Name="MPPLY_SPAWN_POSITION_7" Type="pos" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Spawn position" />
  2498. <stat Name="MPPLY_SPAWN_POSITION_8" Type="pos" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Spawn position" />
  2499. <stat Name="MPPLY_SPAWN_POSITION_9" Type="pos" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Spawn position" />
  2500. <stat Name="MPPLY_SPAWN_POSITION_10" Type="pos" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Spawn position" />
  2501.  
  2502. <stat Name="MPPLY_AUTOMUTE_MESSAGE" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Real money player has spent in store" />
  2503.  
  2504. <stat Name="MPPLY_INGAMESTORE_MONEYSPENT" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MPPLAYER - Real money player has spent in store" />
  2505.  
  2506. <stat Name="MPPLY_KILL_DEATH_RATIO" Type="float" SaveCategory="0" online="true" profile="true" FlushPriority="15" Owner="script" Comment="MP player 0 - COP -kill death percentage ratio." />
  2507.  
  2508. <stat Name="MPPLY_NEED_TO_UPDATE_HEADSHOT" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="MP player 0 - COP kill death percentage ratio." />
  2509.  
  2510. <!-- FM cutscene stat -->
  2511. <stat Name="FM_CUT_DONE" Type="int" SaveCategory="1" Default="0" online="true" profile="false" FlushPriority="0" ServerAuthoritative="false" community="false" UserData="STAT_FLAG_NEVER_SHOW" Owner="script" characterStat="true" triggerEventValueChanged="true" Comment="Track which cutscenes have beend done" />
  2512.  
  2513. <!-- DO NOT DELETE THESE! They are required to test the infulstructure of the the stat system -->
  2514. <stat Name="MPPLY_AWD_TEMPAWARD" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Assassination attempts stopped" Denominator="5" Desc = "001" Label = "025"/>
  2515. <stat Name="MPPLY_AWD_TEMPAWARDFLOAT" Type="float" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Assassination attempts stopped" />
  2516. <stat Name="MPPLY_AWD_TEMPAWARDBOOL" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Assassination attempts stopped" />
  2517. <stat Name="MPPLY_AWD_TEMPAWARDDATE" Type="date" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Assassination attempts stopped" />
  2518.  
  2519. <stat Name="MPGEN_AWD_TEMPAWARDINT" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Assassination attempts stopped" />
  2520. <stat Name="MPGEN_AWD_TEMPAWARDFLOAT" Type="float" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Assassination attempts stopped" />
  2521. <stat Name="MPGEN_AWD_TEMPAWARDBOOL" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Assassination attempts stopped" />
  2522. <stat Name="MPGEN_AWD_TEMPAWARDDATE" Type="date" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Assassination attempts stopped" />
  2523.  
  2524. <stat Name="MPPLY_TEMPSTATINT" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2525. <stat Name="MPPLY_TEMPSTATFLOAT" Type="float" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2526. <stat Name="MPPLY_TEMPSTATBOOL" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2527. <stat Name="MPPLY_TEMPSTATLABEL" Type="label" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2528. <stat Name="MPPLY_TEMPSTATSTRING" Type="string" SaveCategory="0" Default="Test" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2529. <stat Name="MPPLY_TEMPSTATVEC" Type="pos" SaveCategory="0" Default="Test" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2530. <stat Name="MPPLY_TEMPSTATDATE" Type="date" SaveCategory="0" Default="Test" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2531.  
  2532. <stat Name="MPGEN_TEMPSTATINT" Type="int" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2533. <stat Name="MPGEN_TEMPSTATFLOAT" Type="float" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2534. <stat Name="MPGEN_TEMPSTATBOOL" Type="bool" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2535. <stat Name="MPGEN_TEMPSTATLABEL" Type="label" SaveCategory="0" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2536. <stat Name="MPGEN_TEMPSTATSTRING" Type="string" SaveCategory="0" Default="Test" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2537. <stat Name="MPGEN_TEMPSTATVEC" Type="pos" SaveCategory="0" Default="Test" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2538. <stat Name="MPGEN_TEMPSTATDATE" Type="date" SaveCategory="0" Default="Test" online="true" profile="false" Owner="script" Comment="Time mp char 4 weapon in inventory(S)" />
  2539. <stat Name="TEMPSTATVEC" Type="pos" SaveCategory="0" Default="Test" online="true" profile="false" Owner="script" characterStat="true" Comment="Time mp char 4 weapon in inventory(S)" />
  2540.  
  2541. <stat Name="PLAYER_MUTED_TALKERS_MET" Type="u32" SaveCategory="0" online="true" profile="true" ServerAuthoritative="true" Owner="coder" Comment="Nmber of voice talkers met in game sessions"/>
  2542. <stat Name="PLAYER_MUTED" Type="u32" SaveCategory="0" online="true" profile="true" ServerAuthoritative="true" Owner="coder" Comment="Number of times player has been muted"/>
  2543.  
  2544. </stats>
  2545.  
  2546. </StatsSetup>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement