Skip to main content

TOP 10 Things Pro Players NEVER DO!



Table of Content
  1. Never reload without cover 
  2. Never challenge gunfights without cover
  3. Never enter corners without sliding or jumping
  4. Never play with thumbs only
  5. Never ignore the mini map
  6. Never challenge gunfights with low hp
  7. Never post up in buildings without a trophy system
  8. Never tunnel visioning
  9. Never use a laser sight
  10. Never move front and back
No.1: Always reload with a cover : I have seen so many new players reloading without a cover or just running around from place to place without a cover, due to this the enemies can easily target you. Take a look out one of the best player in CODMobile , iFreg, look how he always reloads with a cover and avoid pointless shots. ( Link for the video )
Fig.1. iFreg reloading with a cover
No.2: You + Gunfights + Cover = 100% Winner : I cannot stress on this on, gentlemen when you are taking on an opponent always remember to take a cover and then shoot, if you don't have a cover, it's okay for your teammates with better cover to do the job. Always remember to become the best player you must bring out best in your teammates. I have observed pro players very closely, and I m always amazed by how they take their opponents down so quickly and calmly.Take a loot at this screenshot: ( Link for the video )
Fig.2. iFreg taking gunfights with a cover

No.3: Practice Slide Jumping around corners : If there was no slide in this game, many players would struggle (let's just get real). Sliding + Jumping is one of the skills you MUST master if you want to survive at LEGENDARY rank. Players are quick and always sliding, with there accuracy and movement skills they are able to secure kills easily. Take a look at this gif:( Link for the video )



No.4: Try 3 or 4 fingers claw setup : I and you are very well aware that there might some really AWESOME thumbs player out there, but that doesn't mean we can't argue about the fact that 4 finger claw system has a elite advantage against thumbs only player. If you are just starting or trying to adapt this setup, good for you. If you are skeptical of your abilities then don't worry about, your brain is an adaptable machine. You can improve a lot. Take a look at this screenshot, it's from NoahFromYoutube - Mobile, he plays on iPad ( Link for the video ), he is an offical CoDMobile partner, go check out his channel: Link.
 

No.5: Pay Attention to the MiniMap : The mini map is the single MOST essential part of this game. Make sure you scale that bad boy up to 150ish. The mini map helps a lot when you are trying to increase your game senses. The mini map helps you to locate the enemies and give necessary calls to your teammates. But there might be a problem counter UAV is up :P. Image Courtesy.
Call of Duty®: Mobile Map Snapshot: Crossfire

No.6: Low HP ? Take a COVER : There is this tendency we all have to finish what we started unless you are lazy like me ( HIGH-FIVE, from a distance, don't wanna get up). This tendency is observable when you are fighting an opponent and you get massacre but you still want to kill your opponent. This is your no.1 mistake you should fix first, taking a cover, healing up, and then taking on the fight can be beneficial because you might encounter two opponents instead of one, and then you can just kill them with your restored HP. Don't be like this guy: Image Courtesy
Call of Duty® Mobile In Depth: The Classes of Battle Royale

No.7: In a building, place that TROPHY SYSTEM NOW!
Trophy system is such a MVP when it comes to defending yourself from bombs and missiles. This baby is so good when I first unlocked I thought I would never need it but boy, I was wrong. This baby is so useful in domination, hardpoint and search destroy, you just place in somewhere near the capture point, and enemies can't throw their bombs or missile ( doesn't work against Hunter Killer Drone ) you. If you are using a sniper from a building or a shack and then placing down a trophy system will actually save your sniping career and unlock those scorestreaks faster. Image courtesy
A guide to grenades in Call of Duty: Mobile | Digit

No.8: Never Tunnel vision : What I mean by tunnel vision is that don't focus on one side of the map, it's pretty natural for us to look for more in one direction than look in several directions. Top legendary players are always checking flanks ( sides ) to make sure they aren't snooped on. Always always check your flanks after you secure a kill, this skill might take some time to get good at, but it's the most essential one.


No.9 is stupid, if you are using laser sight I don't know what's wrong with you.

No.10: Move sideways more: Top players have their movement skills at a elite level. Always try to move sideways than moving front and back because doing so, the enemy will still be able to lock on you and hit you, but if you move sideways he has keep moving his crosshair and he might end up having a bad crosshair placement.

Tips Courtesy : BobbyPlays

Comments

Popular posts from this blog

How to use Chess com API using Python

  How to use Chess com API using Python Chess is an amazing strategy-based game and if you have been following the recent boom of online chess then welcome to the chess club. Online chess is amazing since it allows you to play with a random stranger at your level or stockfish (computer). There are many popular online chess websites like lichess.org, chess.com, playchess.com, and newly created kasparovchess.com. Today we will be seeing how to use chess.com API for getting players' stats. You can create software and get affiliates from them (check out the link below), so share it with them if you are planning to create something. Before you start make sure you have the following things: Pre-requirements Postman Anaconda or mini conda or Python idle Any text editor of your choice Pretty good? Now let’s download the JSON file that chess com developers have already made for us from here and then you import it to the Postman. This just helps you with prewritten get methods so that ...

Create your own YouTube video and playlist downloader using QT designer in Python

Create your own YouTube video and playlist downloader using QT designer in Python The code for this software is available on my GitHub, the link is given below. Create your own YouTube video and playlist downloader using QT designer in Python This is the thing we are trying to make today for this article The code for this software is available on my GitHub, the link is given below. If you haven’t checked out my previous article on the same topic but not the GUI version, please check it out. 3 ways to download YouTube playlists at once using Python Have you guys ever wanted to download your entire youtube playlist? rahulbhatt1899.medium.com So before starting to code let's check if you have all the requirements beforehand: Pre-requirements : Qt designer Anaconda or mini conda or python 3.7 compiler Any text editor of your choice Libraries to download: Pytube Ffmpy PyQt5 This would be sectioned into the following structure: Creating the UI in Qt designer Converting UI file int...

Authentication Using Passport JS

Authentication is big and most complicated part of an application, but it is also the  preponderance  part of any web app/software in general. Passport JS Passport JS is a widely popular authentication module for  Node js.  The sole purpose is to authenticate requests and is based on the idea of pluggable authentication strategies ( including local strategy, there are more than 500 strategies currently  available  ). When using third party application Your app never receives your password  thus freeing the developer from the burden of security related to handling and storing passwords. The Passport authentication and its strategy will include protection against attacks like “man in the middle” and other vectors an attacker might exploit. We are going to use Facebook strategy, for now, to install Passport and Facebook strategy type in the following command: Next, we are going to write the authentication code, and we’ll be creating a different module cal...