Skip to main content

Valorant is dead ?

 Its  have been almost 3 years since valorant has been released and we have started to see its down fall, its not dead or near dead but the impact is visible. Players are leaving the game and trying newly released game like overwatch 2. 


We don't have any data of player base but the people involved in the community are declining. And main reason is not any rival game but is covid. Since the lockdown has ended people have got other things to do and now have less time to spend on games. Most of the casual players played valorant because of its release time, it was just perfect, it released just when the lockdown started resulting in a boom in player base but now as the lockdown is ended they have to see the most down fall in player count. 

Another reason is that already existing games like csgo has made their comeback by releasing great updates which valorant couldn't do, when valorant released csgo was in a bad conditions even valve was also not paying much attention on csgo which was making csgo players angry so as valorant released players started to play that game but now there players are going back to there original game that is csgo. 

Valorant is unable to release and add new in game content like game modes and few agents and maps isn't enough to hold players. But even if all this the game is not dying soon because of its eSports side, valorant has a large amount of eSports audience and players which do not have any other game to play or watch . Riot many focus was always on the competitive side and will always be there. 

And because of this valorant will not die soon even if it losses a large amount of casual player base. 

Comments

Popular posts from this blog

Reducer Side Join

package my.org; import java.io.IOException; import org.apache.hadoop.fs.Path; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.io.LongWritable; import org.apache.hadoop.io.Text; import org.apache.hadoop.mapreduce.Job; import org.apache.hadoop.mapreduce.Mapper; import org.apache.hadoop.mapreduce.Reducer; import org.apache.hadoop.mapreduce.lib.input.MultipleInputs; import org.apache.hadoop.mapreduce.lib.input.TextInputFormat; import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat; public class redjoin1036 {     // -------------------- CUSTOMER MAPPER --------------------     public static class CustMapper extends Mapper<LongWritable, Text, Text, Text> {         public void map(LongWritable key, Text value, Context context)                 throws IOException, InterruptedException {             String[] line = value.toString().split(",");   ...

Map Reduce

 /*******************************************************************************************  * BIG DATA LAB – 9  * Name  : 21MIS1029  * Topic : MapReduce Programs – Join Operations & Aggregations  *******************************************************************************************/ /*******************************************************************************************  * (i) MAP SIDE JOIN  * ------------------------------------------------------------------------------------------  * Q1. Develop a Map Reduce Program to display the details of employees using two text files  *     (sample code is given) using Map Side Join.  *  * Input:  *   empdetails.txt → (emp_id, emp_name)  *   empdata.txt    → (emp_id, salary, dept_id)  *  * Output:  *   emp_id, salary, dept_id, emp_name  ****************************************************...

RDD commands

  Category Command Description / What It Does Example Creation sc.parallelize(data) Create RDD from a Python list rdd = sc.parallelize([1,2,3]) sc.textFile(path) Read text file (each line = 1 element) rdd = sc.textFile("data.txt") sc.wholeTextFiles(path) Read files as (filename, content) pairs rdd = sc.wholeTextFiles("folder/") Basic Transformations map(func) Apply function to each element rdd.map(lambda x: x*2) flatMap(func) Apply function & flatten result rdd.flatMap(lambda x: x.split(" ")) filter(func) Keep elements matching condition rdd.filter(lambda x: x>10) distinct() Remove duplicate elements rdd.distinct() union(rdd2) Combine two RDDs rdd1.union(rdd2) intersection(rdd2) Keep common elements rdd1.intersection(rdd2) subtract(rdd2) Elements in first RDD but not second rdd1.subtract(rdd2) cartesian(rdd2) All pairs between two RDDs rdd1.cartesian(rdd2) sample(withRepla...