DayZ

DayZ

查看统计:
DayZ WITH Playstation 4 CONTROLLER!
最后由 TheHeartlessAlchemist 编辑于; 2014 年 1 月 8 日 下午 8:10
< >
正在显示第 16 - 30 条,共 40 条留言
TheHeartlessAlchemist 2014 年 1 月 8 日 下午 8:35 
引用自 I JustBob I
Gotta watch this once I get home from work. What program did you use for the controller?.

I just plugged it in and it read the Playstaion 4 Controller automatically but I spent hours just trying to make the controller feel just right while playing the game.
I JustBob I 2014 年 1 月 8 日 下午 8:42 
引用自 DeathSentence123
引用自 I JustBob I
Gotta watch this once I get home from work. What program did you use for the controller?.

I just plugged it in and it read the Playstaion 4 Controller automatically but I spent hours just trying to make the controller feel just right while playing the game.
Thanks. Sounds good I'll have to try. But you didn't use pinnacle or the other program which I can't think of the name for key mapping?.
TemplarGFX 2014 年 1 月 8 日 下午 8:44 
GlovePie is a great application is you are a little programmatically minded.

You can make any controller emulate any other controller device you can possibly think of. You can make your controller have all sorts of super special macros and options and features the drivers do not give you. Its the best joystick custom configuration application Ive ever used
TheHeartlessAlchemist 2014 年 1 月 8 日 下午 8:54 
引用自 I JustBob I
引用自 DeathSentence123

I just plugged it in and it read the Playstaion 4 Controller automatically but I spent hours just trying to make the controller feel just right while playing the game.
Thanks. Sounds good I'll have to try. But you didn't use pinnacle or the other program which I can't think of the name for key mapping?.

No, I am using Windows 8.
The developer of PS4 said that the controller was going to support PC. I tried it with other games and the aiming moves to the sides by itself. I couldn't figure it out to fix that, I guess Sony has to make an update for it or something.
TheHeartlessAlchemist 2014 年 1 月 8 日 下午 8:56 
引用自 TemplarGFX
GlovePie is a great application is you are a little programmatically minded.

You can make any controller emulate any other controller device you can possibly think of. You can make your controller have all sorts of super special macros and options and features the drivers do not give you. Its the best joystick custom configuration application Ive ever used

I would have to try that, it sounds pretty amazing. Will it bind actions into 1 button? Like any FPS game where you can Stand up, Crouch, and Prone with one button?
mrkingz 2014 年 1 月 8 日 下午 9:34 
引用自 TF160Dully
Fake.
1.Someone can be in the backround with a keyboard and mouse.
2.You can bind keys with a controller -.-.
3.Early Alpha, Going to consol is rockets last concern
4.Consols cannot run dayz standalone.

Can be done w/ an Xbox Controller and Xpadder... no big deal... PS4 controller should be easier, due to bluetooth capability of the plug and play feature (drivers in the controller).
Teedo 2014 年 1 月 8 日 下午 9:42 
why bother with a controller? You can use xbox stick for dayz now. But why do it? mouse and keyboard ftw!
IRL SCAV 2014 年 1 月 8 日 下午 9:47 
ps4 controller is ♥♥♥♥ tier though..
mrkingz 2014 年 1 月 8 日 下午 9:50 
Console gamers may want to play the Alpher with a controller. why not? I have always used keyboard + mouse, but enjoy playing with a controller (less ♥♥♥♥ to remember, if your key binding)...
TemplarGFX 2014 年 1 月 8 日 下午 9:56 
引用自 DeathSentence123
引用自 TemplarGFX
GlovePie is a great application is you are a little programmatically minded.

You can make any controller emulate any other controller device you can possibly think of. You can make your controller have all sorts of super special macros and options and features the drivers do not give you. Its the best joystick custom configuration application Ive ever used

I would have to try that, it sounds pretty amazing. Will it bind actions into 1 button? Like any FPS game where you can Stand up, Crouch, and Prone with one button?


It is as powerful as you can code it to be. For example, I made a script for GlovePie that allowed you to hold a button on your keyboard to turn your mouse into a trackIR input device so you could use trackIR features without having trackIR.

For your example yes, completely possible. I would do something like :

Press Button : Stand to Crouch, or Crouch to Prone
Hold Button 1 second : Prone to Crouch, Crouch to Stand

You could have a single button that cycles stand>crouch>prone>crouch>stand
but if you were crouched for a long time, you may forget if you were coming up or going down, and pressing again may put you prone instead of standing and get you killed.

2 buttons would be better, one for getting up and one for getting down.


to actually achieve things like this in Glovepie you declare a variable in the script which you use to represent the current stance of the player. Along with sending the appropriate key to the game when you push the button, the value of this variable is changed so that Glovepie can keep track of your stance
to decide on which key to send, you do something like
if stance_var = 0 send.key "z"
if stance_var = 1 send.key "x"
if stance_var = 2 send.key "c"

its been along time since Ive coded it so that's not accurate code
TheHeartlessAlchemist 2014 年 1 月 8 日 下午 10:04 
引用自 TemplarGFX
引用自 DeathSentence123

I would have to try that, it sounds pretty amazing. Will it bind actions into 1 button? Like any FPS game where you can Stand up, Crouch, and Prone with one button?


It is as powerful as you can code it to be. For example, I made a script for GlovePie that allowed you to hold a button on your keyboard to turn your mouse into a trackIR input device so you could use trackIR features without having trackIR.

For your example yes, completely possible. I would do something like :

Press Button : Stand to Crouch, or Crouch to Prone
Hold Button 1 second : Prone to Crouch, Crouch to Stand

You could have a single button that cycles stand>crouch>prone>crouch>stand
but if you were crouched for a long time, you may forget if you were coming up or going down, and pressing again may put you prone instead of standing and get you killed.

2 buttons would be better, one for getting up and one for getting down.


to actually achieve things like this in Glovepie you declare a variable in the script which you use to represent the current stance of the player. Along with sending the appropriate key to the game when you push the button, the value of this variable is changed so that Glovepie can keep track of your stance
to decide on which key to send, you do something like
if stance_var = 0 send.key "z"
if stance_var = 1 send.key "x"
if stance_var = 2 send.key "c"

its been along time since Ive coded it so that's not accurate code

I don't know much about doing scripts but I can figure it out little by little. I'm looking at the tutorial videos that developer made to get an idea on how to use it. I assume you know C+ and all that stuff huh? I always wanted to learn to do that but neverfigure out how to start. I use this program I can learn a little about writing scripts.
TemplarGFX 2014 年 1 月 8 日 下午 10:26 
Its very simple scripting, nothing like writing C. Its more like writing in Visual Basic or LUA.

IF this THEN this ELSE this END is your primary layout

I used to create mods for games. So Im all up in programming. I also make indie games too
-Zimbi 2014 年 1 月 8 日 下午 10:29 
Well i dont know about a playstation controller, but i plugged in my xbox controller and it works fine.
TheHeartlessAlchemist 2014 年 1 月 8 日 下午 10:33 
引用自 Zimbi
Well i dont know about a playstation controller, but i plugged in my xbox controller and it works fine.

When you press the button to attack with the melee weapon,does it work with the controller?
TheHeartlessAlchemist 2014 年 1 月 8 日 下午 10:33 
引用自 TemplarGFX
Its very simple scripting, nothing like writing C. Its more like writing in Visual Basic or LUA.

IF this THEN this ELSE this END is your primary layout

I used to create mods for games. So Im all up in programming. I also make indie games too

I see what you are saying.
What kind of indie games do you make?
< >
正在显示第 16 - 30 条,共 40 条留言
每页显示数: 1530 50

发帖日期: 2014 年 1 月 5 日 下午 1:42
回复数: 40