Skip to content

Instantly share code, notes, and snippets.

@shtrih
Last active February 17, 2021 09:08
Show Gist options
  • Save shtrih/ce6e3b767fcc36ac0a72f6a49cf91c62 to your computer and use it in GitHub Desktop.
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.
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