crazfulla Posted February 21, 2020 Share Posted February 21, 2020 As above. Some are completely missing, those that aren't are all shuffled around. Seems the map voting isn't the only thing messed up by the latest patch. Unless this is a server specific thing? Was playing on FPI just now. Quote Link to comment Share on other sites More sharing options...
GodRider Posted February 21, 2020 Share Posted February 21, 2020 (edited) Some bugs I could find: TAB scoreboard doesn't update destroyed buildings, although map overview HUD does. Pause (ESC) cursor has like 5-10 FPS, compared to the main menu which is butterly smooth. Clicking from local to online in the multiplayer tab makes all the servers dissappear. Switching tabs or refreshing doesn't fix it. Silo capture/repair bar is gone. Edited February 21, 2020 by GodRider Quote Link to comment Share on other sites More sharing options...
Totem Arts Staff NodSaibot Posted February 21, 2020 Totem Arts Staff Share Posted February 21, 2020 3 hours ago, crazfulla said: As above. Some are completely missing, those that aren't are all shuffled around. Seems the map voting isn't the only thing messed up by the latest patch. Unless this is a server specific thing? Was playing on FPI just now. Not a bug. Radio commands were removed. My fault for missing it in the patch notes. 1 Quote Link to comment Share on other sites More sharing options...
Madkill40 Posted February 21, 2020 Share Posted February 21, 2020 29 minutes ago, Sarie said: Not a bug. Radio commands were removed. My fault for missing it in the patch notes. And also rearranged Muscle memory is confused, dislike that Move Out was moved to number 2 tbh. Quote Link to comment Share on other sites More sharing options...
Agent Posted February 21, 2020 Share Posted February 21, 2020 An option to retain the classic layout was originally intended; I think it just got lost in the noise. Quote Link to comment Share on other sites More sharing options...
crazfulla Posted February 21, 2020 Author Share Posted February 21, 2020 Why try and fix what ain't broke though? Bet the pug will be filled with miscommunication now... Quote Link to comment Share on other sites More sharing options...
Mystic~ Posted February 21, 2020 Share Posted February 21, 2020 I'm liking my Ctrl+2 now (Affirmative/thanks), much nicer than taking my hand off the mouse. 2 Quote Link to comment Share on other sites More sharing options...
Snow. Posted February 22, 2020 Share Posted February 22, 2020 (edited) most of the radio commands I dont really think about it and just use them, because I use them since the originals Renegade, I would be very happy if the old layout comes back //edit: changed a bit my opinion: some of the commands are not really used and can be removed, but some of the are just used by habit. maybe it is the next step... Edited February 22, 2020 by Snow Quote Link to comment Share on other sites More sharing options...
Totem Arts Staff roweboat Posted February 22, 2020 Totem Arts Staff Share Posted February 22, 2020 I think the new radio commands are a step in the right direction. Personally I think the goal should be to limit it to 5 commands per key combo (eg ctrl+1-5, alt 1-5), because after 5, I have to shift my hands away from the movement keys and in battle... 1 Quote Link to comment Share on other sites More sharing options...
crazfulla Posted February 23, 2020 Author Share Posted February 23, 2020 (edited) Why not just give people the ability to remap the radio command keys if they so desire? Would make more sense than confusing / alienating half of the player base of already dead game... just saying. Edited February 23, 2020 by crazfulla Quote Link to comment Share on other sites More sharing options...
Totem Arts Staff Handepsilon Posted February 23, 2020 Totem Arts Staff Share Posted February 23, 2020 Because that scale would be too enormous for me to come up quickly for the settings menu. When I tried giving HUD option in main menu, I ended up crashing the game several times because of slight mistype, and that was just an on/off button Also the fact that the Main Menu flash file was so sketchy I keep causing the app to freeze continuously whenever I tried to import in the rest of the essentials... 1 Quote Link to comment Share on other sites More sharing options...
Totem Arts Staff NodSaibot Posted February 24, 2020 Totem Arts Staff Share Posted February 24, 2020 On 2/22/2020 at 7:14 PM, crazfulla said: Why not just give people the ability to remap the radio command keys if they so desire? Would make more sense than confusing / alienating half of the player base of already dead game... just saying. If changing some radio command hotkeys are enough to "alienate" half of the game, I would be very surprised. I think you are blowing this out of proportion. People don't like change sometimes. That's human nature. It will be awkward initially, that always comes with change. But as humans do, we will adapt and nothing will change in the end. Quote Link to comment Share on other sites More sharing options...
Totem Arts Staff LavaDr4gon Posted February 24, 2020 Totem Arts Staff Share Posted February 24, 2020 7 minutes ago, Sarie said: People don't like change sometimes. That's human nature. It will be awkward initially, that always comes with change. But as humans do, we will adapt and nothing will change in the end. Take the UI change as an example 1 Quote Link to comment Share on other sites More sharing options...
Moderator Quinc3y Posted February 24, 2020 Moderator Share Posted February 24, 2020 It is a waste of muscle memory though. It took me quite a while to learn all the radio commands and I tried using them regularly. I've been pressing CTRL+7 for "Affirmative" for 3 years of classic Ren + 5 years of Ren X. Now I don't know anything anymore... except for "I need repairs" which kept its place. And why were some of the commands removed altogether? If the opinion is that they are not useful / obsolete, we could move them to high numbers. I enjoyed using goofy ones like "Watch where you're pointing that". That one was fun and always had that old Ren feeling. What is the benefit of these changes anyway? Easier access to "affirmative" and "negative"? I guess... but it's not worth it IMO. At the least, players should be able to keep the old radio commands setup if they will. 1 Quote Link to comment Share on other sites More sharing options...
R315r4z0r Posted February 24, 2020 Share Posted February 24, 2020 Just an FYI, they created a poll on this topic back in January: 1 Quote Link to comment Share on other sites More sharing options...
Agent Posted February 25, 2020 Share Posted February 25, 2020 Yeah, at the time of patch I believe support was > 60%. Like I said, it was originally planned to add an option to be able to use the classic layout -- part of the refactoring I did was to allow support for any theoretical bindings for radio commands, and to also allow for radio command localization. A function already exists to switch radio commands to the original bindings, it just wasn't ever bound to any UI piece or any exec function (console command). Programatically, it's very to rearrange radio commands now, so I'm sure we can change it or even move it to a config in the future. Just as an example, here's the code sitting in Rx_HUD that actually changes it back to the old layout: function SetRadioCommandsClassic() { local int index; // Populate Ctrl for (index = 0; index < 10; ++index) { RadioCommandsCtrl[index] = index; } // Populate Alt for (index = 0; index < 10; ++index) { RadioCommandsAlt[index] = index + 10; } // Populate Ctrl + Alt for (index = 0; index < 10; ++index) { RadioCommandsCtrlAlt[index] = index + 20; } } An option or command or config setting will be added. 1 Quote Link to comment Share on other sites More sharing options...
Reivax Posted March 6, 2020 Share Posted March 6, 2020 "muscle memory is confused" ah? eh.. because it only took me 10 minutes to learn where is Affirmative, Negative, i'm in position and I need repairs (i rarely use other radio commands) i guess, if you learned where was the old command hotkeys, you can learn where are news - excepts if you're too old for that Affirmative on Ctrl+2 is way better than Ctrl+7, now i can say affirmative while moving instead of being standing under sniper fire for 1 second - the necessary time for a sniper to send his ramjet bullet to your head - keep I need repairs for Alt+1 is good, because this command is one of the most used at my opinion, these new radio commands are better but i've still a question... Ayaya radio command when? 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.