![]() |
[SOLVED] How to configure long press buttons? - Printable Version +- Xonotic Forums (https://forums.xonotic.org) +-- Forum: Support (https://forums.xonotic.org/forumdisplay.php?fid=3) +--- Forum: Xonotic - Help & Troubleshooting (https://forums.xonotic.org/forumdisplay.php?fid=4) +--- Thread: [SOLVED] How to configure long press buttons? (/showthread.php?tid=2870) |
How to configure long press buttons? - Micha - 04-10-2012 I wonder if it's possible to map different functions to a short press and a long press of a button. E.g. in Overkill: short press alternate fire = laser, long press alternate fire = execute laser jump script. Or in Minsta|Hook: short press fire = fire, long press fire = hook. Controls are quite complex in Xonotic, I'm trying to make things a bit easier for me. Related to this topic another question: Why does the following script work in local games but not on an actual server (Nexuiz 2.5.2)? alias +my "+attack;wait:-attack;wait;+hook" alias -my "-hook" bind mouse1 +my In a local game this script fires the minsta on a short press. If I keep mouse1 pressed, it also shoots the hook. On the server it only shoots the hook. Thanks for your help! RE: How to configure long press buttons? - Mr. Bougo - 04-10-2012 Your script probably doesn't work because "wait" waits one client frame. It's probably too fast to be sent to the server at all. Use defer 0.1 -attack instead of wait; -attack. Please be aware that the kind of thing you're trying to achieve might end up looking suspicious to a spectator. You might be accused of cheating. There is no long press / short press. That would probably be hackable in cfg though. However, we have builtin weapon list capabilities. You can assign several weapons in a list and have a key cycle through that list. I don't know if that's documented. Check out the cl_weaponpriority0 to cl_weaponpriority9 cvars. Their description explains how to use them. RE: How to configure long press buttons? - Micha - 04-10-2012 Thanks Mr. Bougo. Makes sense. I'll try defer 0.1 when I'm back home. What do you mean with "cycle through that list"? Does this mean a single press will e.g. fire the nex, switch to mortar, fire mortar and switch back to nex? This would be very effective! RE: How to configure long press buttons? - Halogene - 04-10-2012 I would strongly advise against using a script that does automatic laser jumps or weapon combos for you, especially by using "long press" key binds. The concerns I would have are:
If controls are confusing for you, try to figure out a keyboard layout that you can work with, this already helps a lot after a short while of learning. The gameplay basics may be more complicated than some other games' controls, but complexity allows for versatility, too. I would like to encourage you to experiment with weapon binds and practice a bit more, maybe take part in a short personalized tutorial many advanced players will be happy to do for you (if not, find me on IRC, I'll do it). But please don't try to script yourself an autopilot for the game, then it would be easier to just spec a bot and pretend you're playing. ![]() Edit: IF you want to spec bots, make sure you spec bots such as [BOT]Mirio, [BOT]Grunt, [BOT]kuniuthefrogg or [BOT]naryl. Speccing them can be a very rewarding experience, but unfortunately you can do that only on special servers. Despite frantic attempts I have not been able so far to enable those bots on local servers. I think you need to do some custom compiling in order to get such advanced bots locally, dunno why Xonotic doesn't ship with the code. Maybe it includes some proprietary code or something. Also I have heard that maps may need to be compiled with special waypoints so those bots work properly, but I can't personally verify that one. To me, they seem to work almost on any map pretty well. Anyway, that was a bit off topic. Sorry. RE: How to configure long press buttons? - Mr. Bougo - 04-10-2012 (04-10-2012, 04:56 AM)Micha Wrote: Thanks Mr. Bougo. Makes sense. I'll try defer 0.1 when I'm back home. Yep, that's it. Each of the ten lists has three impulse codes associated with it, that you can bind to a key. There's the next/prev keys that navigate through the list, and the "best" key that switches to the first weapon from the list that's in your inventory. Give it a try! Here's the relevant section of defaultXonotic.cfg, reformatted a bit for readability: Code: //"use impulse 200 for prev gun from this list, 210 for best gun, 220 for next gun. Default value: explosives" |