Jump to content

[C#] How to add controller support to your mod


Azorah

Recommended Posts

Hi, so I was wondering this, and I know others were, so I asked around and found how to do this, so I thought I might as well make this to help others.

 

STEP ONE:

Place this code in Tick

bool UsingKeyboard = Function.Call<bool>(Hash._GET_LAST_INPUT_METHOD, 2);

STEP TWO:

Then, place this under Tick, this where you will choose what control does what

if (Game.IsControlPressed(2, GTA.Control.ScriptPadLeft) && UsingKeyboard == false) {//Do whatever}

STEP THREE:

Change the

 GTA.Control.ScriptPadLeft 

to whatever you want the control to be,

here is the list of available game pad controls: http://pastebin.com/5um8q0rd

so, if you wanted DPadRight, it would be

GTA.Control.ScriptPadRight

it's fairly obvious which control is which, but if you need to know

just ask around, me or others can help.

 

Once that is all done and you put what you want to open, aka a menu, etc. you're done... if you have any problems just ask in the comments

or contact me, I'm always willing to help.

 

Credit to stillhere for sharing this with me.

 

Link to comment
Share on other sites

MrGTAmodsgerman

How can i create a key difference between holding a key or normally push a key?

Link to comment
Share on other sites

I haven't looked into that but click here for a topic someone made on this.

How can i create a key difference between holding a key or normally push a key?

Link to comment
Share on other sites

  • 4 weeks later...
Weirdoutworld

Why not just use ds4windows? It has a toggle shift modifier function to navigate (map) anything. It even knows the difference between numberpad and number row... Amazing program. I've been navigating all my scripts and multiple mod menus and I never have to touch my keyboard.

  • Like 1
Link to comment
Share on other sites

  • 2 weeks later...
unknown modder

you know you can just use Game.CurrentInputMode to find out if keyboard/gamepad is being used

  • Like 1
Link to comment
Share on other sites

  • 2 weeks later...
sollaholla

This is not working for me:

if ((Game.IsControlPressed(2, GTA.Control.Context) || Game.IsControlPressed(2, GTA.Control.ScriptPadRight))

Wouldn't that be more logical to write, and it doesn't actually work at all, I have a mission and when you press that it starts the mission.

Link to comment
Share on other sites

  • 3 weeks later...
MrGTAmodsgerman

I cant get it to work, i try to change

if ((Game.IsControlPressed(2, GTA.Control.VehicleExit)

To

if ((Game.IsControlJustPressed(2, GTA.Control.VehicleExit)

for testing, but it doesnt matter! It always run the function whatever how i press the key on my controller!

Link to comment
Share on other sites

  • 1 month later...

I cant get it to work, i try to change

if ((Game.IsControlPressed(2, GTA.Control.VehicleExit)

To

if ((Game.IsControlJustPressed(2, GTA.Control.VehicleExit)

for testing, but it doesnt matter! It always run the function whatever how i press the key on my controller!

This is VERY old, and may be outdated. I'll try and fix it when I make my way back to coding.

  • Like 1
Link to comment
Share on other sites

MrGTAmodsgerman

 

I cant get it to work, i try to change

if ((Game.IsControlPressed(2, GTA.Control.VehicleExit)

To

if ((Game.IsControlJustPressed(2, GTA.Control.VehicleExit)

for testing, but it doesnt matter! It always run the function whatever how i press the key on my controller!

This is VERY old, and may be outdated. I'll try and fix it when I make my way back to coding.

 

Tell me once you back

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • 1 User Currently Viewing
    0 members, 0 Anonymous, 1 Guest

×
×
  • Create New...

Important Information

By using GTAForums.com, you agree to our Terms of Use and Privacy Policy.