Advertisement
ExIIL

(All Games) Edit Zones

Jun 8th, 2019
453
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.32 KB | None | 0 0
  1. //by soul@offsetrelease
  2.  
  3. public static void EditZone(uint Offset, int Red, int Green, int Blue)
  4.         {
  5.             PS3.Extension.WriteFloat(Offset, (float)Red / 255);
  6.             PS3.Extension.WriteFloat(Offset + 4, (float)Green / 255);
  7.             PS3.Extension.WriteFloat(Offset + 8, (float)Blue / 255);
  8.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement