Advertisement
Abel_Software

GTA IV C# Modding: On-Screen Text

Nov 28th, 2015
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.29 KB | None | 0 0
  1. //With this code you can add text on screen! In the code, I provided it with a key press, but you can do it how you wish! I will later //be adding a full tutorial on modding GTA IV!
  2.  
  3. if (Keys.F12 == e.Key)
  4.             {
  5.                 Game.DisplayText("Add Text Here", 90000);
  6.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement