godzcheater

RDR

Apr 21st, 2013
571
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 11.99 KB | None | 0 0
  1.     public enum SaveType : int
  2.     {
  3.         Options = 5,//RDR2OPTIONS.SAV
  4.         SP = 7,//RDR2SAVEx.SAV, 0 auto otherwise index.
  5.         MP = 14,//RDR2MPSAVE.SAV
  6.     }
  7.  
  8.     public enum StatIndex : int
  9.     {
  10.         Money = 0,
  11.         //
  12.         DaysPassed = 6,
  13.         //
  14.         MissionsCompleated = 9,
  15.         MissionsCancelled = 10,
  16.         //
  17.         NewAustenMissions = 12,
  18.         NuevoParaisoMissions = 13,
  19.         WestElizabthMissions = 14,
  20.         HomesteadMissions = 15,
  21.         AmbushesSurvived = 16,
  22.         TripsSkipped = 17,
  23.         //
  24.         AnimalsKilled = 26,
  25.         PeopleKilled = 27,
  26.         CiviliansKilled = 28,
  27.         USLawmenKilled = 29,
  28.         USMarchals = 30,
  29.         USArmyKills = 31,
  30.         MexicanLawKilled = 32,
  31.         MexicanArmyKilled = 33,
  32.         UnaffiliatedCriminalsKilled = 34,
  33.         BollardTwinsGangKilled = 35,
  34.         WaltonsGangKilled = 36,
  35.         TreasureHuntersKilled = 37,
  36.         BanditosKilled = 38,
  37.         RebelsKilled = 39,
  38.         DutchsGangKilled = 40,
  39.         EnemyHorsesKilled = 41,
  40.         HeadShots = 42,
  41.         Knockouts = 43,
  42.         Excutions = 44,
  43.         HatShots = 45,
  44.         Disarms = 46,
  45.         LongestHeadShotStreak = 47,
  46.         LongestDisarmStreak = 48,
  47.         //
  48.         GameCompleated = 61,
  49.         //
  50.         VictimsRunOver = 129,
  51.         VictimsRunOverWithHorse = 130,
  52.         VictimsRunOverWithCart = 131,
  53.         VictimsRunOverWithWagon = 132,
  54.         VictimsRunOverWithStagecoach = 133,
  55.         ShotsFiredWhileCrouching = 134,
  56.         ShotsFiredFromCover = 135,
  57.         ShotsFiredFromHourseBack = 136,
  58.         ShotsFiredFromVehicle = 137,
  59.         AnimalsKilledWhileRidingTrain = 138,
  60.         PeopleKilledWhileRidingTrain = 139,
  61.         VolcanicPistolHeadshots = 140,
  62.         SemiAutomaticPistolHeadshots = 141,
  63.         HighPowerPistolHeadshots = 142,
  64.         MauserPistolHeadshots = 143,
  65.         CattelmanRevolverHeadshots = 144,
  66.         ScofieldRevolverHeadshots = 145,
  67.         DoubleActionRevolverHeadshots = 146,
  68.         LematRevolverHeadshots = 147,
  69.         RepeaterCarbineHeadshots = 148,
  70.         WinchesterRepeaterHeadshots = 149,
  71.         HenryRepeaterHeadshots = 150,
  72.         EvansRepeaterHeadshots = 151,
  73.         SpringfielsRifleHeadshots = 152,
  74.         BoltActionRifleHeadshots = 153,
  75.         BuffaloRifleHeadshots = 154,
  76.         SawedOffShotgunHeadshots = 155,
  77.         DoubleBarreledShotgunHeadshots = 156,
  78.         PumpactionShotgunHeadshots = 157,
  79.         SemiAutomaticShotgunHeadshots = 158,
  80.         RollingBlockRifleHeadshots = 159,
  81.         CarcanoRifleHeadshots = 160,
  82.         LassoHeadshots = 161,
  83.         KnifeHeadshots = 162,
  84.         FireBottleHeadshots = 163,
  85.         DynamiteHeadshots = 164,
  86.         ThrowingKnifeHeadshots = 165,
  87.         GatlingGunHeadshots = 166,
  88.         BrowningGunHeadshots = 167,
  89.         CannonHeadshots = 168,
  90.         //
  91.         PeopleKilledWithVolcanicPistol = 183,
  92.         PeoplekilledWithSemiAutomaticPistol = 184,
  93.         PeopleKilledWithHighPowerPistol = 185,
  94.         PeopleKilledWthMauserPistol = 186,
  95.         PeopleKilledWithCattelmanRevolver = 187,
  96.         PeopleKilledWithScofieldRevolver = 188,
  97.         PeopleKilledWithDoubleActionRevolver = 189,
  98.         PeopleKilledWithLematRevolver = 190,
  99.         PeopleKilledWithRepeaterCarbine = 191,
  100.         PeopleKilledWithWinchesterRepeater = 192,
  101.         PeopleKilledWithHenryRepeater = 193,
  102.         PeopleKilledWithEvansRepeater = 194,
  103.         PeopleKilledWithSpringfielsRifle = 195,
  104.         PeopleKilledWithBoltActionRifle = 196,
  105.         PeopleKilledWithBuffaloRifle = 0197,
  106.         PeopleKilledWithSawedOffShotgun = 198,
  107.         PeopleKilledWithDoubleBarreledShotgun = 199,
  108.         PeopleKilledWithPumpactionShotgun = 200,
  109.         PeopleKilledWithSemiAutomaticShotgun = 201,
  110.         PeopleKilledWithRollingBlockRifle = 202,
  111.         PeopleKilledWithCarcanoRifle = 203,
  112.         PeopleKilledWithLasso = 204,
  113.         PeopleKilledWithKnife = 205,
  114.         PeopleKilledWithFireBottle = 206,
  115.         PeopleKilledWithDynamite = 207,
  116.         PeopleKilledWithThrowingKnife = 208,
  117.         PeopleKilledWithGatlingGun = 209,
  118.         PeopleKilledWithBrowningGun = 210,
  119.         PeopleKilledWithCannon = 211,
  120.         //
  121.         ActiveBountyTotal = 222,
  122.         USBounty = 223,
  123.         MexicoBounty = 224,
  124.         TimeInJail = 225,
  125.         CountsOfVandalism = 226,
  126.         CountsOfVehicleVandalism = 227,
  127.         CountsOfPropertyDestruction = 228,
  128.         CountsOfVehicleDestruction = 229,
  129.         CountsOfArson = 230,
  130.         CountsOfAssult = 231,
  131.         CountsOfLawOfficerAssault = 232,
  132.         CountsOfHorseAssault = 233,
  133.         CountsOfLivestockAssault = 234,
  134.         CountsOfCrueltyToAnimals = 235,
  135.         CountsOfMurder = 236,
  136.         CountsOfLawOfficerMurder = 237,
  137.         CountsOfHorseSlaughter = 238,
  138.         CountsOfLivestockSlaughter = 239,
  139.         CountsOfAnimalSlaughter = 240,
  140.         CountsOfHorseTheft = 241,
  141.         CountsOfVehicleTheft = 242,
  142.         CountsOfAbduction = 243,
  143.         CountsOfLawOfficerAbduction = 244,
  144.         CountsOfSafeCracking = 245,
  145.         CountsOfTrespassing = 247,
  146.         CountsOfRobbery = 248,
  147.         CountsOfCheating = 249,
  148.         CountsOfLawOfficerThreatening = 250,
  149.         FastestSafeCracking = 251,
  150.         BiggestBounty = 252,
  151.         BribesPaid = 253,
  152.         BigestBountyPaid = 254,
  153.         BiggestBribePaid = 255,
  154.         BiggestBountyPardoned = 256,
  155.         PassesSentOfterYou = 257,
  156.         LongestPursuitByLocalSheriffs = 258,
  157.         LongestPursuitByMarshals = 259,
  158.         TimesMostWanted = 260,
  159.         CrimesCommittedDuringMarshalPursuite = 261,
  160.         LongestKidnappingStreak = 262,
  161.         PricklyPear = 263,
  162.         DesertSage = 264,
  163.         ButterflyWeed = 265,
  164.         PrairiePuppy = 266,
  165.         GoldenCurrant = 267,
  166.         WoollyBlueCurls = 268,
  167.         HummingSage = 269,
  168.         VioletSnowdrop = 270,
  169.         RedSage = 271,
  170.         WildFevetfew = 272,
  171.         ValueOfHerbsCollected = 273,
  172.         ArmadillosSkinned = 274,
  173.         BatsSkinned = 275,
  174.         BearsSkinned = 276,
  175.         BeaversSkinned = 277,
  176.         BighornSkinned = 278,
  177.         BoarsSkinned = 279,
  178.         BobcatsSkinned = 280,
  179.         BuckSkinned = 281,
  180.         BuffaloSkinned = 282,
  181.         ChickedFeathers = 283,
  182.         CougarsSkinned = 284,
  183.         CowsSkinned = 285,
  184.         CoyotesSkinned = 286,
  185.         CrowFeathers = 287,
  186.         DeerSkinned = 288,
  187.         DogsSkinned = 289,
  188.         DuckFeathers = 290,
  189.         EagleFeathers = 291,
  190.         ElkSkinned = 292,
  191.         FoxesSkinned = 293,
  192.         GoatsSkinned = 294,
  193.         SeagullFrathers = 295,
  194.         HawkFeathers = 296,
  195.         MulesSkinned = 297,
  196.         //
  197.         OwlFeathers = 302,
  198.         PigsSkinned = 303,
  199.         RabbitsSkinned = 304,
  200.         RaccoonsSkinned = 305,
  201.         SheepSkinned = 306,
  202.         SkunksSkinned = 307,
  203.         SnakesSkinned = 308,
  204.         SongbirdFeathers = 309,
  205.         VultureFeathers = 310,
  206.         WolvesSkinned = 311,
  207.         HorsesSkinned = 312,
  208.         AemadillosKilled = 313,
  209.         BatsKilled = 314,
  210.         BearsKilled = 315,
  211.         BeaversKilled = 316,
  212.         BighornKilled = 317,
  213.         BoarsKilled = 318,
  214.         BobcatsKilled = 319,
  215.         BuffaloKilled = 320,
  216.         ChickensKilled = 321,
  217.         CougersKilled = 322,
  218.         CowsKilled = 323,
  219.         CoyoteKilled = 324,
  220.         CrowsKilled = 325,
  221.         DeerKilled = 326,
  222.         DogsKilled = 327,
  223.         DucksKilled = 328,
  224.         EaglesKilled = 329,
  225.         ElkKilled = 330,
  226.         FoxesKilled = 331,
  227.         GoatsKilled = 332,
  228.         HawkKilled = 333,
  229.         DomesticatedHorsesKilled = 334,
  230.         WildHorsesKilled = 335,
  231.         MulesKilled = 336,
  232.         OwlKilled = 337,
  233.         PigsKilled = 338,
  234.         RabbitsKilled = 339,
  235.         RaccoonsKilled = 340,
  236.         SeagullsKilles = 341,
  237.         SheepKilled = 342,
  238.         SkunksKilled = 343,
  239.         SnakesKilled = 344,
  240.         SongbirdKilled = 345,
  241.         VultureKilled = 346,
  242.         WolvesKilled = 347,
  243.         TotalPoundsOfMeatHarvested = 348,
  244.         SocialClubAnamal1sKilles = 349,
  245.         SocialClubAnamal2sKilles = 350,
  246.         SocialClubAnamal3sKilles = 351,
  247.         SocialClubAnamal4sKilles = 352,
  248.         SocialClubAnamal5sKilles = 353,
  249.         WildAnumalSpeciesKilled = 354,
  250.         CowsHerded = 355,
  251.         HorsesHerded = 356,
  252.         TreasuresCollected = 357,
  253.         BountiesDead = 358,
  254.         BountiesAlive = 359,
  255.         BountyHunterNewAustin = 360,
  256.         BountyHunterNuevoParaiso = 361,
  257.         BountyHunterWestElizabeth = 362,
  258.         BountyHunterNewAustinLocations = 363,
  259.         BountyHunterNuevoParaisoLoations = 364,
  260.         BountyHunterWestElizabethLocations = 365,
  261.         DeathsFromFalling = 379,
  262.         HorseDeathsFromFalling = 380,
  263.         //
  264.         TotalSpentOnStagecoachRides = 384,
  265.         RollsPerformedOnFoot = 385,
  266.         TransportsCompleaed = 366,
  267.         PassersbyAttacked = 367,
  268.         PassersbyDefended = 368,
  269.         TravelersEscorted = 369,
  270.         //
  271.         PeopleKilledInDeadEye = 391,
  272.         MostPeopleKilledInOneDeadEye = 392,
  273.         MostDisarmsInOneDeadEye = 393,
  274.         TotalDeadEyeTime = 394,
  275.         TotalObjectsHitInDeadEye = 395,
  276.         //
  277.         VictemsHogtied = 398,
  278.         HottieVictemsFreed = 399,
  279.         //
  280.         JobLocationsDiscovered = 400,
  281.         NightwatchJobsCompleated = 402,
  282.         HorseBreakingJobsCompleated = 403,
  283.         HorsesBroken = 405,
  284.         StrangersMeh = 406,
  285.         TasksCompleatedForStrangersMet = 407,
  286.         WorldEventsEncountered = 408,
  287.         UniqueWorldEventsEncountered = 409,
  288.         DiffrentMiniGamesWon = 410,
  289.         PokerWinnings = 411,
  290.         PokerGamesLost = 412,
  291.         BiggestPokerPotWon = 413,
  292.         PokerHandsWonWithHighHittingCard = 414,
  293.         PokerHandsWonWithPaie = 415,
  294.         PokerHandsWonWithTwoPair = 416,
  295.         PokerHandsWonWithThreeOfAKind = 417,
  296.         PokerHandsWonWithStraight = 418,
  297.         PokerHandsWonWithFullHouse = 419,
  298.         PokerHandsWonWithFlush = 420,
  299.         PokerHandsWonWithFourOfAKind = 421,
  300.         PokerHandsWonWithStraightFlush = 422,
  301.         PokerHandsWonWithRoyalFlush = 423,
  302.         PokerHandsWonWithABluff = 424,
  303.         TimeSpentPlayingPoker = 425,
  304.         TimesCaughtCheating = 426,
  305.         TimesGottenAwayWithCheating = 427,
  306.         LiarsDiceWinnings = 429,
  307.         LiarsDiceGamesLost = 430,
  308.         LiarsDiceWinsWithoutLosingADie = 431,
  309.         TimeSpentPlayingLiarsDice = 432,
  310.         HorseshoesWinnings = 433,
  311.         TotalRingers = 434,
  312.         MostRingersInOneHorseshoesGame = 435,
  313.         TimeSpentPlayingHorseshoes = 436,
  314.         FiveFingerFelletWinnings = 437,
  315.         FiveFingerFilletGamesLost = 438,
  316.         LongetsFiveFingerFilletStreak = 439,
  317.         TimeSpentPlayingFiveFingerFillet = 440,
  318.         ArmWrestlingWinnings = 441,
  319.         TimeSpentPlayingArmWrestling = 442,
  320.         ArmWrestlingMatchesLost = 443,
  321.         LongestArmWrestlingMatch = 444,
  322.         BlackjackWinnings = 445,
  323.         MostWinInSingleBlackjackSession = 446,
  324.         BlackjackHandsLost = 447,
  325.         BlackjackHandsPlayed = 448,
  326.         TotalDrinksConsumed = 449,
  327.         TotalGamblingWinnings = 450,
  328.         DuelsWon = 451,
  329.         //
  330.         DuelChallengesTurnedDown = 453,
  331.         DuelsWonByDisarm = 454,
  332.         DuelHatsShotOff = 455,
  333.         //OutfitsDiscovered = 457,//Wut?
  334.         //OutfitsCompleated = 457,//Check!
  335.         GangHideoutCleared = 458,
  336.         ChestsOpened = 467,
  337.         PlayerHouses = 468,
  338.         RareWeapons = 469,
  339.         //
  340.         TimeUsingBinoculars = 471,
  341.         AreasDiscovered = 473,
  342.         MewAustinAreasDiscovered = 474,
  343.         NuevoParaisoAreasDiscovered = 475,
  344.         WestElizabethAreasDescovered = 476,
  345.         SnakeOilUsed = 477,
  346.         MoonshineUsed = 478,
  347.         ChewingTabacco = 479,
  348.         MedicineUsed = 480,
  349.         BaitUsed = 481,
  350.         HorsePillsUsed = 482,
  351.         ApplesUsed = 483,
  352.         PardonLettersUsed = 484,
  353.         VittlesUsed = 485,
  354.         TonicUsed = 486,
  355.         //
  356.     }
Advertisement
Add Comment
Please, Sign In to add comment