Advertisement
Scarlet

Hyrule Warriors Legends Rupee Editor

Jan 23rd, 2016
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.86 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace ConsoleApplication2
  9. {
  10.     class Program
  11.     {
  12.         static string currentFolder = Directory.GetCurrentDirectory();
  13.  
  14.         static void Main(string[] args)
  15.         {
  16.             using (var fs = new FileStream(currentFolder + "\\zmha.bin", FileMode.Open, FileAccess.ReadWrite))
  17.             {
  18.                 fs.Position = 0xE0;
  19.                 fs.WriteByte(Convert.ToByte(0x98));
  20.  
  21.                 fs.Position = 0xDF;
  22.                 fs.WriteByte(Convert.ToByte(0x96));
  23.  
  24.                 fs.Position = 0xDE;
  25.                 fs.WriteByte(Convert.ToByte(0x7F));
  26.  
  27.                 Console.WriteLine("You should now have 9,999,999 Rupees!");
  28.                 Console.ReadLine();
  29.             }
  30.         }
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement