Advertisement
Abel_Software

GTA IV C# Modding: Change Player Model+Voice

Mar 3rd, 2016
362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.42 KB | None | 0 0
  1. Changing Player Model-
  2. Player.Model = ("PED NAME HERE");
  3.  
  4. Examples-
  5. Player.Model = ("M_Y_SWAT");
  6. Player.Model = ("M_M_FATCOP_01");
  7. Player.Model = ("M_Y_COP");
  8. (Ped names can be found at this link http://www.gtamodding.com/wiki/List_of_models_hashes)
  9.  
  10. Changing Player Voice-
  11. Player.Character.Voice = ("VOICE NAME HERE");
  12.  
  13. Example-
  14. Player.Character.Voice = ("M_Y_COP_WHITE");
  15. (Voice names can be found in OpenIV)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement