Jump to content

TipicoDev

Members
  • Posts

    32
  • Joined

  • Last visited

  • Days Won

    6

Posts posted by TipicoDev

  1. On 8/21/2023 at 10:14 PM, TipicoDev said:

    As an update, my ticket has been viewed 4 times by 3 different accounts, and the exploit is not fixed still. They could just remove the page temporarily, but who knows huh. For you players, avoid opening any links taking you to the clan system on their website, it's a scam. Also just don't use the clan system page for now, fortunately there is no reason for you to use it at the moment. You account can be compromised by doing so, since other people are abusing it already.

    And yes, the need to bring this to the public is quite sad.

    Update: This has been fixed. Since the servers are offline I couldn't test it 100%, but you should be safe to use the clan page now.

    There is still an issue about it but it shouldn't cause any harm at all.

    They also fixed setting invalid ids for the logo/bg, which I didn't even need to mention on the ticket, nice 🙂

    • Like 2
  2. On 8/17/2023 at 8:34 PM, TipicoDev said:

    XSS exploit

    Recently I have opened the ticket #1091495 regarding a XSS exploit I found. If you don't know what's that, please search it on google since we can't post links. I have made a proof-of-concept about how you can steal or delete accounts of anyone in the game. This should be fixed asap, and luckly it's also an easy fix.

    As an update, my ticket has been viewed 4 times by 3 different accounts, and the exploit is not fixed still. They could just remove the page temporarily, but who knows huh. For you players, avoid opening any links taking you to the clan system on their website, it's a scam. Also just don't use the clan system page for now, fortunately there is no reason for you to use it at the moment. You account can be compromised by doing so, since other people are abusing it already.

    And yes, the need to bring this to the public is quite sad.

    • Like 1
    • Thanks 1
  3. 22 hours ago, sw1ndle said:

    about anticheat they've already implemented heartbeat a week ago, anyway they're still not using xigncode at its full potential, i've reversed before old games that were using full potential of xigncode and i would say tbh that it would be for the best considering most of them still struggle with it at current state of anticheat which only difference between it and toyheroe's custom usermode ac is xigncode's xhunter1 kernel driver that strips handle access and communicates with mapped modules by x3.xem and also has checks against kernel iat hooks against xhunter1 which is decent ig considering everything is still easily to emulate if u have few neurons with experience.

    I'm glad to hear that, haven't checked it in a while. Hopefully they will improve it soon, before it's too late.

    20 hours ago, mIKA- said:

    Feedback is okay, but sniper should never one hit under any circumstance. Sniper in this game is low risk high reward, high zoom speed, high damage, reloads when you unequip it, game is 3rd person so you can line up shots without having to peek.

    It's a no brain weapon and there's absolutely no risk just taking out your sniper and quick scoping/pre firing with a lineup and if you hit congrats you got an instant kill and if not not a big deal. This also makes every fight a coinflip cus you can play perfectly and bring someone down to very low hp and they can just insta kill you. You get the point, snipers are low key being used  as shotguns for a while now. The weapon has very little downside, considering all the other guns have much higher ttk.

    The only games that have snipers one hit are also the games where you are one hittable with other weapons too. No other similar type of game has snipers be so powerful without a huge drawback.

    I both agree and disagree with you. I can remember some FPS games that have snipers and shotguns as the only one-hit capable weapons, and I don't think that's an issue. I do agree that snipers are unbalanced right now in terms of zoom speed and reload, I got really surprised on how easy quickscoping is on the beta. It's okay to have different opinions, and I won't go too much in details since talking specifically about weapon balance should be a topic apart. But thanks for bringing those points, will be helpful in the future 🙂

    17 hours ago, wavywavy said:

     

    You have no idea what you're talking about in this regard and it shows. What you're suggesting essentially amounts to a complete rewrite of the cast server to introduce logic that has never been there before. You're asking a small development team to rethink how everything should work. 

     

    Let me give you one simple example so that you hopefully see why this makes no sense on so many levels. Suppose you've just hit someone with a rifle bullet. In the current state of things, the game sends a packet to the cast server which then forwards it to the room's host. Upon receival of that packet, the host processes it and sends a packet to the cast server that will be broadcast to all playing users in the room, notifying them of that bullet hit with information on how much damage was dealt.

     

    This is obviously a very flawed design that leaves a pretty large attack surface, so let's think of a way we could partially solve this. Maybe the host should verify that the player who fired the bullet was actually aiming at the target (and is within their line of sight)? This is definitely not an option because it would mean that hit registration now depends on the host's simulation of the game. If the host sees something slightly different the hit won't register and it's going to make the gameplay feel terrible at best for everyone else. The fact movement packets are not handled by the host but only by the cast server itself is pretty much incontrovertible evidence of this.

     

    So then maybe the cast server should handle hit registration? Surely if the cast server is the only source of truth and maintains a simulation of the game, it can take all of these decisions and the host becomes a non-factor. Another way to phrase this: you've just asked a very small team to tackle one of the most complex issues in game development using an engine that doesn't support networking. Even though there's been quite a bit of literature on the subject ever since Quake 3 pioneered it, these days it's more than unlikely you wouldn't use something like Unreal Engine that already has a battle-tested server authoritative networking model.

     

    The first roadblock you hit if you want to make the cast server simulate the game is that all MV servers run on Linux, and Gamebryo is a Windows-only engine. So you'd need to recompile the cast server for Windows, which will result in a ton of side effects on the deployment infrastructure. The second roadblock you hit is a programming issue: you would have to refactor the all the code that deals with simulating the game into a different library that the cast server can link to. You then have to implement a snapshot delta system and set up tooling that allows you to compare what's happening on the server with what's happening on the client. And you also have to rewrite a significant portion of the game client to account for these changes. 

     

    You can't let a single cast server handle every single room (think of it as running one MV client per room in a single process) so you need a fleet of cast servers now. Every time you join a game you may have to connect to a different one, which means even more rewrites on the client and server side. 

     

    I've barely scratched the surface here but if you still think doing away with cheating on MV is a viable endeavor I don't know what to tell you. It's just unimaginable levels of delusion. You can always implement these soft file integrity checks but it only takes one person with half a brain and too much free time on their hands will bypass these and release a public cheat that can completely ruin the game. I would assume the devs figured out how deep rooted these issues are and settled with a more pragmatic approach - a report system and an anticheat they already have a wrapper for.

    You are not wrong in some networking concepts, but you are overreacting way too much. I'm obviously not asking for a server rewrite, neither I think it's a doable thing even if we have more devs working on the game.

    What I meant is that there are possibilities to detect cheats before waiting for a report to be reviewed by the team. For example, players directly calling game functions that should be called only when a specific packet is received, or that they shouldn't be able to, like changing their name anytime. Players killing an entire room in one second using melee from their base. Processing a room that lasted for 10 seconds and a player has 255 kills.

    There are plenty of examples I could give, some being easy to implement and others being complex. There is no way to make a perfect game that has no cheats, that's just living in a fantasy world. What you can do is increase your defenses and detects to increase the complexity of developing cheats, so that your report system can do the rest.

    Obviously a lot of that can be bypassed or avoided by experienced cheat creators, but as I said, it's about constantly increasing security. This is a long-term vision.

    You should take a look at how League of Legends have in-game checks to detect specific behaviors, retaddr checks, and so on.

    6 hours ago, Bogaxd said:

    what's the name change exploit ? never heard of it

    I would rather not share it more than it has been already shared, but you can easily find videos about it's damage using the title of that point.

  4. 2 hours ago, TipicoDev said:

    The Clan button in-game opens an internet explorer browser with the clan page which is just funny considering we are at 2023.

    in*

    I forgot to mention but that also crashes the game. Here are the crash logs:
     

    CreateRenderer fail - 0
    <file:d:\masang\mv_dev\program\client\frameworks\game\core\Video.cpp, line:696>
    <file:d:\masang\mv_dev\program\client\frameworks\game\core\Video.cpp, line:701>
  5. Hi there, it's me again with another giant topic. I'm a bit late on this but here I'll be reporting my final feedbacks about the game on it's beta phase, and draw attention to some really important points, bugs and exploits. I'll try my best to keep it short and easy to read.
    If it's the first time you are seeing me around, hi, I used to work with (not for) NQGames on the SA server, and I don't think the game is ready to be released just yet. Here are the reasons why:

     

    RT/MP/Coins/Battery/etc exploit

    I have reported this exploit in the ticket #1039329, 9 months ago. It's still not fixed and I didn't even get a reply. This is a known exploit by the community, the so called "name change exploit".

    It's really easy to fix, even if you just make a temporary solution. It will ruin the game (again) if the game gets released without that being fixed, though.

     

    XSS exploit

    Recently I have opened the ticket #1091495 regarding a XSS exploit I found. If you don't know what's that, please search it on google since we can't post links. I have made a proof-of-concept about how you can steal or delete accounts of anyone in the game. This should be fixed asap, and luckly it's also an easy fix.

    exploits_of_a_mom.png.d5df16120ffff73d1948f32383a4092d.png

     

    File integrity

    You really need to add a file integrity on the game. It's 2023, and people have been messing with your game for way more time than you expect. cgd.dip, .dat files and so on need to be checked before the game runs, specially if you want to make the game competitive. People can literally use hacks by editing the game files, and yes the do know how to. There is also a way to mess with .cdb files without touching the cgd.dip that most people don't know about, but it also would be nice to have a check for that.

     

    Anticheat & server-side checks

    Nice, we have an anticheat now! But... that's just not enough. There is no perfect AC and there will never be one. I don't think this current version have the heartbeat feature running, but it would be very cool to have it, since it's another wall for cheaters to break.

    But... That is still not enough. If you really want to make the game competitive, you should start working on server-side checks to detect cheats. There are plenty of hacks that can easily be detected just by checking player positions on the server, weapon damage and so on. MV handles too much responsability in the client and you really should start changing that. The room's host can "mold" the game the way he wants, and you just can't be fair to players if you don't add proper checks to try avoiding that.

     

    Game modes
    I hope the rest of the game modes get released in the full release. There makes no sense to me that you didn't allow us to test those on the beta phase. I personally tested almost all of them, and they seem to be working just fine, but it's a waste that people weren't able to give feedback about those. I couldn't test item match and super item match (this one was disabled in the official game before, fwiw), so I'm assuming you disabled those propositally.

     

    Weird beta?

    Talking about game modes, the same applies to the rest of the game. It feels really weird that we weren't able to test a complete version of the game. We couldn't test RT/Coupon store, the capsule (not even the normal MP capsule!), no clans/clan wars... We don't really have a roadmap about what to expect in the full release. I would rather have an open beta for like a week with everything the game has to offer before an actual release.

     

    Clans

    One of the best things about microvolts is the clan system. That said, it will be really awkward if the game gets released with no integration between the clans in the website with the clans in-game. The Clan Score being related to the member's levels instead of the Clan Wars is really weird as well. The Clan button in-game opens an internet explorer browser with the clan page which is just funny considering we are at 2023. Also please make sure to reset the clans before the official release.

     

    Levels

    I'm sure you noticed it already, but the levels are messed up between the client and the server. The EXP requirements are probably different, resulting in an inaccurate level display, exp gains, exp left to lvl up... Also the levels are not fully implemented to 2000. Since you are marketing this as a feature, we expect them to be ready in the full release.
    Regarding the lvl icons, I'm glad you mentioned you are going to revert back to the old ones. But.. Why did it take you so long? People are complaining about them since the very first day of the beta phase 1. There is also a lot of different icons split between the game versions (mvs, tw, mvsa, etc), it would be nice if we could vote on which ones we prefer. Let the community choose 🙂

     

    Grind

    I can't talk about levels without talking about grinding. There is literally no incentive to grind right now, people can easily max upgrade their weapons in 1 day, you get no rewards by leveling up, and we don't have a ranking. And I'm not even considering membership has unlimited battery. The only incentive I can see is getting level 20 so you can join a clan, but what after that? I'm not sure if the limited capsule is going to fill that hole.

    I'm pretty sure the majority of the players agree that weapons should at least have 1~5 (or even 1~9, but personally I think 1~5 a sweetspot) levels back. Once again, that's something you could vote to let the community decide. If that happens, having unlimited battery would be just way too OP. Having decent rewards per level would also be cool.

     

    Ranking

    Most MV versions had a ranking available. I think it's a classic thing at this point. It would be really cool to have a ranking again, with total / daily EXP, kills, kills per weapon and so on. It's also a form of competitiveness if you think about it. This also helps the "Grind" point, but not for casual players.

     

    Steam store page

    Why have you upload such low quality screenshots in there? 😞 The game just doesn't look good and since you are aiming for new players,  I don't think that's very appealing. There are a LOT of good content creators in the community who would love to help with that. Either get some good looking screenshots, or make a contest for a promotional gameplay video + pictures so people can participate during the open beta. Make it so we can vote on the best one and reward the creator with 2k RT or something, I'm sure a lot of people would love to participate.

     

    Discord

    I love the idea of making a discord server for the game - we also had one for the SA version. But really, you just can't make a server without any moderation. The server is a mess, people are just toxic/trolls/breaking rules every single day since the creation and there is just no active moderation. I know Masang don't wanna "hire" outsiders, but if you don't have people to take care of the server, I would rather not have a discord server at all. We won't blame you for that. Imagine being a new player and joining the server from the steam page and seeing this mess, I wouldn't consider downloading the game at all.
     

    Membership

    I think the membership system is actually a nice idea(consider the Grind point), both for the players as for the devs. However, please fix the it's UI. I'm sure it shouldn't look that bad...

     

    Weapons

    I'm sure you got a lot of feedback about weapons already. I'll try to be specific in mine, so I wont repeat what everyone else already said.

    - Weapon balance

    I appreciate the fact that you care about weapon balancing and such. That said, I don't think you are taking the best approach to it.

    What made MV a p2w game was the fact the RT/Coupon weapons were too OP. NQ just kept pushing updates with new weapons and each update had a better weapon than before, so the newest weapons were absurdely strong.

    What I love about MV is the variation about the weapons. Some are good overall, some are good for a specific style of gameplay, other were just fun weapons (I'm looking at you, ak-47). IMO, forcing the weapons to be cosmetic-only kills the variety of combinations we had, and the uniquiness about MV.

    I would rather have weapons as actual weapons, and actually balance them instead of locking players to 3 specific styles. Just go play a match of Arms Race and see how different styles of weapons we have...

    - Cosmetic weapons

    We haven't seen any implementation of the weapons being cosmetic yet. How is that gonna work? Are we gonna have the 3~4 default weapons with different styles and weapons will be skins, so we don't need to upgrade them? Or will we have a different style for each weapon we can possibly get? We really don't know what to expect. If you go for the second option, we are going to have, for example:
    Gold Rifle (A Style) | Gold Rifle (B Style) | Gold Rifle (C Style)

    Silver Rifle (A Style) | Silver Rifle (B Style) | Silver Rifle (C Style)

    Bronze Rifle (A Style) | Bronze Rifle (B Style) | Bronze Rifle (C Style)

    And that just looks terrible. Imagine trying to get a weapon in the capsule with your specific color + specific style?

    - Rifles
    I'm sure you saw a lot of feedback about the rifle, so I will just point this: Rifles should be the easiest weapon in the game. Most people haven't played a 3rd person shooter, but have played a FPS before. Having such a bad accuracy on the rifles just enlarges the gap between new players and old players. There is a reason you spawn in a room holding your rifle. Also you shouldn't NEED to upgrade your rifle in accuracy just to be able to use it.

    - Damage

    Either weapon's damage are way too weak or the tank is too strong. Some weapons feel extremally weak and slows down the game. How can't you kill someone with a sniper headshot? Sniper should be the high risk/high reward weapon, and at the moment that is not the case. You aren't able to one-hit most of the players in a room with a chest hit. Playing FFA matches on larger maps is annoying because your sniper won't kill anyone and someone will probably steal your kill.

     

    Ranked & Presets

    I actually wrote a highly detailed ranked system suggestion for NQ back in 2015, but sadly they were not interested back then. Since I'm assuming you guys have it figured out, I will just leave some suggestions.

    1. If you take my previous suggestions about the weapons, there is an easy way to keep the game competitive. Just limit the weapons people can use on the ranked mode. Either limit them to the MP weapons, or the basic weapons we have right now (after some adjustments). Take a look at what "csd" or "exa" was back then.

    Since you made the presets implementation, that shouldn't be too hard to implement - just add Ranked Presets where you can only select said items. Just please make a server-side check for that.

    When joining the ranked queue, make a dropdown where players select their ranked preset and that should be it.

    2. It also would be really nice to have a ranked-like mode added to the game modes we already have, where people could only select their ranked presets but without gaining/lossing any points, so people could train.

    3. With the current preset implementation, it gets really confusing to understand which items you have equipped. Please add a visual way of us to know which ones we have equiped in the inventory.

     

    I have made this 2 minutes paint PoC about points 1 and 2. Blue means equipped, for example.
    1895669054_mvinv.thumb.png.59b2d24aca7b204860f7fc0d67879b71.png

     

     

    And I think that's about it. Obviously there are some critical problems here that should be addressed before the game releases, and some that can be fixed "later on". I would love to hear any feedback about everything mentioned here, so feel free to show me if you agree or disagree with anything.

    For the staff, I hope you understand how critical those problems are and fix them before the game releases, or it may be too late. Giving some attention to the important tickets wouldn't be too bad, as well 😉

    • Like 18
    • Thanks 9
  6. 3 hours ago, Buppet said:

    anime/asian themed skins are not well regarded by the western community

    It's funny to say that when a lot(probably the majority) of the community wanted unreleased items they saw on toywars/game files 😛
    For example, my fav melee:
     image.png.7e8184ab2aa943530756c81ee761f074.png

    Other versions didn't have more anime/asian themed items because NQ Games didn't have the rights to relase most of them outside specific versions, due to contractual terms, unfortunately. For me, it makes no sense to judge the success of MV based on culture thematics... Just don't spin the capsule on items you don't like..?

    • Like 2
    • Thanks 2
  7. On 9/15/2022 at 11:40 PM, TipicoDev said:

    I also have identified a few critical game problems on the closed beta that could be exploited. Unfortunately, talking about it here would just spread the news for potentially abusers/hackers, so I'd rather report it on a private section on the forums, or using the ticket system. Having those fixed is essential before the game launches. (Devs, could you please take a look at the #1039329 ticket? Thanks!)

    As an update, sadly those problems are still present on the current beta 2 phase. It's been 3 months since I've opened my ticket and I still haven't be able to contact devs properly 😛

  8. 22 hours ago, armanivers said:

    Devs leave this as a feature, we need more movie making features anyway hahaha

    I would rather ask them to fix the ctrl+U during a sniper interface and fix this unintended bug that may affect new players, but I get your point 😛 Perhaps making the observer camera speed a public setting would be cool as well.

     

    4 hours ago, Leo said:

    It's a secret though, that Naomi watching you under the desk was me 😏

    If that's the case, you sure have nice dance moves. Haha

  9. On 10/3/2022 at 3:50 AM, Braga11 said:

    I feel divided in relation to the rankeds, for me they will take the essence of the game away that was the clan war or the accounts levels. On the other hand, having ranked system is also good (if its a solo queu) for the more tryhard people. I personally will only play to reach a rank who was the reward i want and continue to play casual.
    I would like to have more people feedback, so i could form a better opinion for ranked mode!

    Since we know nothing about it yet, it's common to feel like that. I wouldn't mind having a solo/duo ranked mode and a separated ranked only for CW, for example. Only time will tell...

    On 10/3/2022 at 6:47 AM, SeaWasp said:

    Assembling a team to record and search for cheaters shouldn't be a challenging task, but for it to be effective, we have to discuss multiple facts to come into agreement:

    • The chosen members of this team should first play the game and get to know it for a while; otherwise, players will end up with false punishments. 

    I'm sorry, but you can't bring a player who only plays melee and ask for their judgment in cases where it's unclear whether a possible offender is using a trigger-bot or an aim-bot. Though the member role might have more time to fulfill this task, rewarding them with gifts wouldn't be wise. That would generate an excessive number of misleading reports.

    • I'm unsure what you mean by "internal tools". There's absolutely nothing that facilitates inspection for moderators. If a moderator joins the observer mode, the chat system will broadcast a message in the room. Cheaters will then take precautions.
    • Adding different camera modes will significantly help in some cases.
    • That might not be in my field of knowledge, but saving replays of the matches might seem a little expensive. Players should help by recording if no staff is online.
    • We are unsure how many staff there are right now. It might be necessary to recruit additional helpers from the member role if it's needed. After all, this is the least expensive option for the current state.

    I think you're digressing from my points, and I don't really think I should be explaining confidential informations about moderators and tools, so I won't reply to any of that. 

    My biggest concern about the game right now is this:

    On 9/15/2022 at 11:40 PM, Tipico said:

    I also have identified a few critical game problems on the closed beta that could be exploited. Unfortunately, talking about it here would just spread the news for potentially abusers/hackers, so I'd rather report it on a private section on the forums, or using the ticket system. Having those fixed is essential before the game launches. (Devs, could you please take a look at the #1039329 ticket? Thanks!)

  10. 14 hours ago, SeaWasp said:

    Answering at this time will leave hints that could lead to the changes they implement, which look undesired at the current state. The game manager's statements strongly support that conclusion. Also, if they constantly provide us with information about the changes, that will put the team in a dilemma if they get both positive and negative feedback.

    We've waited for years. A couple more weeks should be endurable. Hopefully, we will be satisfied with the changes. 🙂

    I don't really mind waiting, I even made a post telling people to chill out =P I was specifically referring to the "Game problems and cheaters" section of my original post, sorry if that wasn't clear. Unfortunately this isn't something that can wait for the release and be handled afterwards.

    2 hours ago, miwafoxl said:

    I'm not sure about that. The original MV was about grinding as well; It did work (?) but, personally, I don't think this system works nowadays. See, old players will always have the so called "good" weapons because they grinded for it, that makes sense. However, since the game doesn't have any sort of matchmaking, it will be a nightmare to new players to get this going. It is not fun to be killed over and over again not from skill issue, not because you are bad at aiming or using your weapons, it's because you haven't grinded yet, "foolish of you trying to have fun in MV without grinding!!!" New players will leave the game out of short-term frustation. Of course there is a lot of people to tell them along the way and there's also the tutorial gift boxes, still not very convenient either. I already sent suggestions about it making the weapons stats uniform here, don't think they will do it as the community is more over the opposite side (more authenticity from the original).

    It will have some kind of matchmaking tho. The original game (or at least the SA version, not sure about the others) had a "newbie" server which you could only play if you were level 10/15 or less, so that would avoid new players getting farmed. As for the new game, since there will be a ranked system, the "normal" games will likely be more enjoyable than usual, since mostly people will be playing it casually/for fun.
    Not that I don't get your point, but I think your concern is more about leveled weapons being broken than the grind itself.

    • Like 1
  11. 2 hours ago, SeaWasp said:

    I suggest automatic vote kicks initiated by a system against players with strange behavior, for instance, killing more than five players with a melee weapon in a second.

    Exceptions shouldn't be treated as rules. It's much more efficient to add server-side checks for strange behaviors like that.

    2 hours ago, SeaWasp said:

    Encourage players to consider saving their votes for a chance when faced with true rule breakers rather than rivals, by limiting the number of votes a player can initiate per day.

    Agreed, but that number should be somewhat dynamic. There isn't a magic number that will fit players who play 1h/day and players who play 10h/day.

    2 hours ago, SeaWasp said:

    No-killing: problems usually arise in rooms where players shouldn't be fighting against each other. Non-compliance will promote hatred among the pers, resulting in cursing and insults in the chat.

    Solution: make use of the existing game mode where dying is impossible and modify it to reward players with points based on the time they stayed active in the room.

    The square mode (plaza) is made for that. I see no point in rewarding players for "playing" it, though.

    2 hours ago, SeaWasp said:

    Conditionally titled rooms:

    Titles like CSD, no-kill, no tank. Just as with the previous situation, non-compliance may lead to vote kicks.

    Solution: provide a statement that clarifies whether conditionally titled rooms should be adhered to.

    The best solution for that would be "room templates/rules", since those titles leave room for interpretation. Some players think you can use accessories on CSD, others think golden-god weapons are allowed on "non-god" rooms, etc. Sure, we can explain what you can or can't use, but new players would have no idea what those titles mean, since they wouldn't bother reading the forum before trying the game.
    Having templates would be visual for every player on the room, and if they have any item that does not match the rules, it would be changed to the default item in-game.

     

    Overall, good points, though IMO some need dev work to be well-handled.

    • Like 1
  12. Hi there!

    First things first, a quick introduction. I'm TipicoDev, and I was part of the staff for MicroVolts on the South America version. I've played the game since the very first closed beta, on 2010.

    Since I got a key for the closed beta on the second wave, I decided that I should try it and now I'll write down my conclusions, feedback and suggestions regarding specific closed beta changes, as well as general gameplay/ecosystem and suggestions to make the life of the new staff much easier (and that's why I'm not posting this on the CBT topic). Here we go, and sorry for the wall of text.

    - Weapons

    Honestly I'm a bit divided because of this. Yes, there were insanely unbalanced weapons in the game, and I'm really grateful that the team decided to change that. However, MV had very unique weapons, which were kinda special. For example, the red/pink AC-ME was one of the best shotguns in the game, but some players chose to use the Aqua Blaze, because it was a decent weapon and had nice design and sounds. Some players preferred picking Venom for the double zoom, and other players hated it. The Gold Rifle was one of the best rifles in the game, but players who had Silver/Black Rifles (which had a little less damage) used them simply because they were rare weapons. AK-47 was a terrible rifle because of the recoil, but players were using it because it was fun to use it once a month or so (and it had too much power, tbh).
    What I'm trying to say here is that weapons were indeed unbalanced and need balancing, but quite a few weapons were unique not because of being overpowered, but because of other factors. In my opinion, keeping that uniqueness is essential to keep the "nostalgic" feeling the devs seem to be aiming for.

    - Snipers

    Not sure if it's because it's been a while since I last played, but I felt like the normal sniper zoom was increased, almost like the default value was the original Venom's zoom with 2x scope. If so, please revert it back to normal, and either leave the 2x zoom for Venom, or make it a global setting that you can turn on/off. Talking about settings, a few that would be nice to have:
    1. Turn on/off the re-scope after a sniper shot;
    2. Scoped-in sensibility;
    3. (Room setting) Turn on/off the no-scoped damage on the Sniper Mode (just for fun).

    - Weapon upgrades

    Getting and upgrading weapons is part of the game's grind. I'm not sure if the closed beta was intentionally made easy to test the weapons, but having a single level for upgrading kills the grind towards upgrading your weapons. I'm not saying the old system was great, but having at least 5 levels should keep players engaged on a late-game goal. If you wanna keep the possibility to allow players to easily switch between upgrades, maybe add an item in the store for swaping the current upgrade on an item, but keeping the upgrade level. Also, bring back the glowing effects and make it toggleable by weapon or weapon type. Unfortunately, the glow gives away your location when you're holding a sniper on a wall for example, but I would love to have it on every other weapon. I'm still divided on clothings/sets/accessories upgrades, so I'll leave that for later.

    - Game problems and cheaters

    No matter what you do, there will be cheaters around. The best way to do with them is making their life harder. Since you're going with xigncode3, which isn't as bad as many people here are saying, make sure to get the latest version possible and have the heartbeat on. Having an active team looking for cheaters in-game and making good use of the internal tools is also really helpful, but that requires human work, and I'm not sure if there are enough resources available for that right now.
    Since the game is now going for a competitive style, please consider adding a 1:1 observer mode where you can see the exact moviment of the player's camera, aim, etc, so people can record better clips of cheaters and report them. Replays also would be great (for reportings and highlights), but I get that this require much more work. Maybe for later on.

    I also have identified a few critical game problems on the closed beta that could be exploited. Unfortunately, talking about it here would just spread the news for potentially abusers/hackers, so I'd rather report it on a private section on the forums, or using the ticket system. Having those fixed is essential before the game launches. (Devs, could you please take a look at the #1039329 ticket? Thanks!)

    - Moderation suggestions

    Add a menu for mods/gms to interact with the players inside a room, like kicking, muting and so on, even for players outside the match (like players using the inventory). This will make the life of the new staff much easier, mainly during events.

    - Achievements

    Add the in-game achievements on steam. That's it.

    - Trade System

    Considering items will be mostly cosmetics, I don't really think having the trade system is necessary. It was good for "changing" item stats, so trading a 1:1 speed item for a hp one, for example. But, if you ever bring it back, be sure to make ranked reward items or special event ones untradeable.

    - Let the community decide

    There are some things that just can't please everyone. But, you can let the majority of the players decide some updates/changes. For example, the new icons for the level. Some players prefer the old ones, some prefer the JP ones, others prefer the MW ones, and so on. Make a poll system in-game with some requirement to avoid bots (level/playtime) and present the icons available, and let the community vote on which one they prefer. This is just an example, and I don't think the community should be able to decide everything.

     

    I think those are my main suggestions/feedback for now. I will be glad to discuss or dive into any of those, if needed.

    • Like 7
    • Thanks 3
×