Does a "permanently disable phone" mod exist?
-
I'm getting real tired of having to open Menyoo every time I open GTA V to disable the damn phone.
With that comes my question: is there a mod to -permanently- disable the player's phone?
-
Bump, I guess.
-
Try this script. I just now quickly wrote it; it is completely untested.
Install Script Hook V .NET, create a file namedDisablePhone.cs
in thescripts
folder, and copy-paste the following code into the file.using System; using GTA; using GTA.Native; namespace DisablePhone { public class DisablePhone : Script { public DisablePhone() { Interval = 1000; Tick += DisablePhone_Tick; } private void DisablePhone_Tick(object sender, EventArgs e) { if (Function.Call<int>(Hash._GET_NUMBER_OF_INSTANCES_OF_STREAMED_SCRIPT, 0xF292D030) > 0) // cellphone_controller { Function.Call(Hash.TERMINATE_ALL_SCRIPTS_WITH_THIS_NAME, "cellphone_controller"); } } } }
-
@Jitnaught Opening GTA V as we speak, will report back.
EDIT: Yay it's working, thank you!
-
@Rstein Glad it works, you're welcome
-
Hey so i dont know if i did something wrong but i can't seem to get this to work i made a new text document in scripts and named it DisablePhone.cs and put the code in it but when i press the up arrow it still comes up
-
How about you just assign a "Bring phone up" to a key you never, ever use?
I know, dirty solution. But that would basically get the job done.
-