Last active
February 17, 2021 09:08
-
-
Save shtrih/ce6e3b767fcc36ac0a72f6a49cf91c62 to your computer and use it in GitHub Desktop.
GTA IV (steam version) ScriptHook .net Script. Drop it to "scripts" folder in game install folder. Press M to quick switch to IndependanceFM.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Windows.Forms; | |
using GTA; | |
using GTA.@base; | |
public class InvincibilityScript: Script { | |
public InvincibilityScript() { | |
BindKey(Keys.M, new KeyPressDelegate(ToggleInvincibility)); | |
} | |
private void ToggleInvincibility() { | |
// new IndependanceFM index is 21. But ScriptHook uses an old value 18. | |
//Game.RadioStation = RadioStation.IndependanceFM; | |
Game.RadioStation = (RadioStation)21; | |
Game.DisplayText("Switched to IndependenceFM"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment