Sunday, May 30, 2021

GTA San Andreas GTA 5 Mod Pack 2021 for Low End PC

 GTA San Andreas GTA 5 Mod Pack 2021 for Low-End PC 


How To Download Graphic Mod from this website? click here.

 Media Fire


GTA San Andreas is an open-world game released for PC in 2004. It was the Best game for the Youth until GTA V came in 2013. GTA V attracted the GTA SA gamers to itself so that there would be no more players for GTA SA almost. But thanks to GTA SA modders who made and still making GTA SA game entertainer and enjoyable day by day and just like this we bring a GTA V Mod-Pack for GTA San Andreas by combining many mods in 1 mod.


Minimum System Requirements

CPU: Core 2 Duo (2 cores)

Ram: 2GB DDR3

GPU: N/A 

Graphics Total: 256 or 512MB


Recommended System Requirements

CPU: Core i3 2nd Generation+

Ram: 4GB (better if 6GB)

GPU: N/A (Better Of 1GB)

Graphics Total: 1GB+ (better if 2GB+)


How To Install

1. Download the mod pack from the DOWNLOAD button below.

2. Drag & Drop all files from Modpack into your GTA SA Game Directory.

3. Run the game as administrator.

4. Enjoy the game & Follow me On Instagram & DM me about your game if you have any problems.







How To Download Graphic Mod from this website? click here.

Click on the DOWNLOAD button below to go to the download page

Thursday, May 20, 2021

GTA San Andreas High Graphics Mod for Low-End PC 2021 | 2GB Ram Without Graphic Card

 GTA San Andreas High Graphics Mod for Low End PC 2021

Media Fire

How To Download Graphic Mod from this website? click here.


GTA San Andreas High Graphic mod for low-end pc is brought to you by KrazY GameR 2.0 from GTAModMafia. This Graphics is suitable for every low-end pc gamer who doesn't have a High-End PC. 




Minimum System Requirements
CPU: Core 2 Duo (2 cores)
Ram: 2GB DDR3
Graphics Card: 512MB
Total Graphics: 256MB

Recommended System Requirements
CPU: Core i3 2nd Gen (better if 7th Gen+)
Ram: 4GB DDR4
Graphics Card: N/A
Total Graphics: Intel HD 1GB

Features of this Mod
This mod contains a mixture of many other mods like ENBs, Lights, Modloader, Asi Loader, etc.
1. Real Shadows for Low PCs
2. Real Reflections for Low PCs
3. Real Sky for Low PCs
4. Real Water for low PCs

How To Download Graphic Mod from this website? click here.

Click on the DOWNLOAD button below to go to the download page




Saturday, May 15, 2021

How to Add One Side Left Border in Android using XML

How to Add One Side Left Border in Android using XML

How to Add One Side Left Border in Android using XML

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:tools="http://schemas.android.com/tools"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:background="#fff"

    tools:context="com.android_examples.onesidebordertextview_android_examplescom.MainActivity">


    <TextView

        android:layout_width="fill_parent"

        android:layout_height="100dp"

        android:text="This is Sample TextView Text."

        android:background="@drawable/text_style"

        android:gravity="center"

        android:layout_centerHorizontal="true"

        android:layout_centerVertical="true"

        android:layout_margin="12dp"

        android:textSize="20dp"

        android:textColor="#000"

         />


</RelativeLayout>

text_style.xml

<?xml version="1.0" encoding="utf-8"?>


<layer-list xmlns:android="http://schemas.android.com/apk/res/android">


    <item>

        <shape android:shape="rectangle">

            <solid android:color="#F44336"/>

        </shape>

    </item>


    <item android:left="4dp">

        <shape android:shape="rectangle">

            <solid android:color="#FFEB3B"/>

        </shape>

    </item>


</layer-list>

How to remove an element from ArrayList in Java

How to remove an element from ArrayList in Java

1. By using remove() methods 

remove(int index)

import java.util.List;

import java.util.ArrayList;

public class GFG

{

    public static void main(String[] args)

    {

        List<Integer> al = new ArrayList<>();

        al.add(10);

        al.add(20);

        al.add(30);

        al.add(1);

        al.add(2);

  

        // This makes a call to remove(int) and 

        // removes element 20.

        al.remove(1);

          

        // Now element 30 is moved one position back

        // So element 30 is removed this time

        al.remove(1);

  

        System.out.println("Modified ArrayList : " + al);

    }

}

Output :

Modified ArrayList : [10, 1, 2]

remove(Obejct obj) 

import java.util.List;

import java.util.ArrayList;

public class GFG

{

    public static void main(String[] args)

    {

        List<Integer> al = new ArrayList<>();

        al.add(10);

        al.add(20);

        al.add(30);

        al.add(1);

        al.add(2);

  

        // This makes a call to remove(Object) and 

        // removes element 1

        al.remove(new Integer(1));

          

        // This makes a call to remove(Object) and 

        // removes element 2

        al.remove(new Integer(2));

  

        System.out.println("Modified ArrayList : " + al);

    }

}

Output :

Modified ArrayList : [10, 20, 30]

2. Using Iterator.remove()

import java.util.List;

import java.util.ArrayList;

import java.util.Iterator;

public class GFG

{

    public static void main(String[] args)

    {

        List<Integer> al = new ArrayList<>();

        al.add(10);

        al.add(20);

        al.add(30);

        al.add(1);

        al.add(2);

  

        // Remove elements smaller than 10 using

        // Iterator.remove()

        Iterator itr = al.iterator();

        while (itr.hasNext())

        {

            int x = (Integer)itr.next();

            if (x < 10)

                itr.remove();

        }

        System.out.println("Modified ArrayList : "

                                           + al);

    }

}

Output :

Modified ArrayList : [10, 20, 30]

Friday, May 14, 2021

ChipGroup add chip Android Example

 ChipGroup add chip Android Example

class MainActivity : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {

        super.onCreate(savedInstanceState)

        setContentView(R.layout.activity_main)


        val context = this


        // get chip group initial checked chip text

        val chip: Chip? = findViewById(chipGroup.checkedChipId)

        textView.text = "Checked Chip : ${chip?.text}"



        // set chip group checked change listener

        chipGroup.setOnCheckedChangeListener { group, checkedId ->

            // get the checked chip instance from chip group

            (findViewById<Chip>(checkedId))?.let {

                // Show the checked chip text on text view

                textView.text = "Checked Chip : ${it.text}"

            }

        }



        // add chip to chip group programmatically

        button.setOnClickListener {

            (it as Button).isEnabled = false

            chipGroup.addChip(context,"Magenta")

            chipGroup.addChip(context,"Pink")

            chipGroup.addChip(context,"Black")

        }

    }

}



// create chip programmatically and add it to chip group

fun ChipGroup.addChip(context: Context, label: String){

    Chip(context).apply {

        id = View.generateViewId()

        text = label

        isClickable = true

        isCheckable = true

        isCheckedIconVisible = false

        isFocusable = true

        addView(this)

    }

}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>

<androidx.constraintlayout.widget.ConstraintLayout

    xmlns:android="http://schemas.android.com/apk/res/android"

    xmlns:app="http://schemas.android.com/apk/res-auto"

    xmlns:tools="http://schemas.android.com/tools"

    android:id="@+id/constraintLayout"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:background="#FEFEFA"

    tools:context=".MainActivity">


    <Button

        android:id="@+id/button"

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_marginTop="8dp"

        android:text="add Chips"

        android:backgroundTint="#E97451"

        app:layout_constraintEnd_toEndOf="parent"

        app:layout_constraintStart_toStartOf="parent"

        app:layout_constraintTop_toTopOf="parent" />


    <com.google.android.material.chip.ChipGroup

        android:id="@+id/chipGroup"

        style="@style/Widget.MaterialComponents.ChipGroup"

        android:layout_width="0dp"

        android:layout_height="wrap_content"

        android:layout_marginStart="8dp"

        android:layout_marginTop="24dp"

        android:layout_marginEnd="8dp"

        app:checkedChip="@id/chipGreen"

        app:layout_constraintEnd_toEndOf="parent"

        app:layout_constraintStart_toStartOf="parent"

        app:layout_constraintTop_toBottomOf="@+id/button"

        app:selectionRequired="true"

        app:singleSelection="true">


        <com.google.android.material.chip.Chip

            android:id="@+id/chipRed"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:checkable="true"

            android:text="Red"

            app:checkedIconVisible="false" />


        <com.google.android.material.chip.Chip

            android:id="@+id/chipGreen"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:checkable="true"

            android:text="Green"

            app:checkedIconVisible="false" />


        <com.google.android.material.chip.Chip

            android:id="@+id/chipYellow"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:checkable="true"

            android:text="Yellow"

            app:checkedIconVisible="false" />


    </com.google.android.material.chip.ChipGroup>


    <TextView

        android:id="@+id/textView"

        android:layout_width="0dp"

        android:layout_height="wrap_content"

        android:layout_marginTop="32dp"

        android:fontFamily="sans-serif-condensed-medium"

        android:gravity="center"

        android:padding="8dp"

        android:textColor="#4F42B5"

        android:textSize="22sp"

        app:layout_constraintEnd_toEndOf="parent"

        app:layout_constraintStart_toStartOf="parent"

        app:layout_constraintTop_toBottomOf="@+id/chipGroup"

        tools:text="TextView" />


</androidx.constraintlayout.widget.ConstraintLayout>

ChipGroup add chip Android Example

How can we convert a JSON array to a list in java

Java-based library and it can be useful to convert Java objects to JSON and JSON to Java Object. A Jackson API is faster than other API, needs less memory area and is good for the large objects. We can convert a JSON array to a list using the ObjectMapper class. It has a useful method readValue() which takes a JSON string and converts it to the object class specified in the second argument.

import java.util.*;

import com.fasterxml.jackson.databind.*;

public class JSONArrayToListTest1 {

   public static void main(String args[]) {

      String jsonStr = "[\"INDIA\", \"AUSTRALIA\", \"ENGLAND\", \"SOUTH AFRICA\", \"WEST INDIES\"]";

      ObjectMapper objectMapper = new ObjectMapper();

      try {

         List<String> countries = objectMapper.readValue(jsonStr, List.class);

         System.out.println("The countries are:\n " + countries);

      } catch(Exception e) {

         e.printStackTrace();

      }

   }

}

Output

The countries are:

[INDIA, AUSTRALIA, ENGLAND, SOUTH AFRICA, WEST INDIES]

How to Convert JSON Array to a Java Array

How to Convert JSON Array to a Java Array

In this article, we'll convert a JSON array into a Java Array and Java List using Jackson.

Since we're using Jackson, you'll have to add it to your project. If you're using Maven, it's as easy as adding the dependency:

<dependency>

    <groupId>com.fasterxml.jackson.core</groupId>

    <artifactId>jackson-databind</artifactId>

    <version>2.11.2</version>

</dependency>

Or, if you're using Gradle:

compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.11.2'

Since we're mapping from JSON to our own objects, let's go ahead and define a POJO:

public class Language {

    private String name;

    private String description;

    // Getters, setters and toString() method

Reading JSON from a String

Let's start out with reading JSON from a String. The String contains an array of programming languages, with brief descriptions:

String json = "[{\"name\": \"Java\", \"description\": \"Java is a class-based, object-oriented programming language.\"},{\"name\": \"Python\", \"description\": \"Python is an interpreted, high-level and general-purpose programming language.\"}, {\"name\": \"JS\", \"description\": \"JS is a programming language that conforms to the ECMAScript specification.\"}]";

Using Jackson's ObjectMapper class, it's easy to read values and map them to an object, or an array of objects. We just use the readValue() method, passing the JSON contents and the class we'd like to map to. Since we're mapping to an array of Language, we'll also specify this in the readValue() method:

// It's advised to use ObjectMapper as a singleton and reuse the instance

final ObjectMapper objectMapper = new ObjectMapper();

Language[] langs = objectMapper.readValue(json, Language[].class);

Alternatively, you can extract the values directly into a list, using Jackson's TypeReference:

List<Language> langList = objectMapper.readValue(json, new TypeReference<List<Language>>(){});

Without using TypeReference<>, which is advised, you can convert the array into a list with any other approach at your disposal, such as:

List<Language> langList = new ArrayList(Arrays.asList(langs));

And then print out the values:

langList.forEach(x -> System.out.println(x.toString()));

This results in:

Language{name='Java', description='Java is a class-based, object-oriented programming language.'}

Language{name='Python', description='Python is an interpreted, high-level and general-purpose programming language.'}

Language{name='JS', description='JS is a programming language that conforms to the ECMAScript specification.'}

Reading JSON from a File

We don't always deal with JSON in String format. Oftentimes, the contents come from a File. Thankfully, Jackson makes this task as easy as the last one, we just provide the File to the readValue() method:

final ObjectMapper objectMapper = new ObjectMapper();

List<Language> langList = objectMapper.readValue(

        new File("langs.json"), 

        new TypeReference<List<Language>>(){});


langList.forEach(x -> System.out.println(x.toString()));

The langs.json file contains:


[

  {

    "name": "Java",

    "description": "Java is a class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible."

  },

  {

    "name": "Python",

    "description": "Python is an interpreted, high-level and general-purpose programming language. Created by Guido van Rossum and first released in 1991."

  },

  {

    "name": "JS",

    "description": "JS is a programming language that conforms to the ECMAScript specification. JavaScript is high-level, often just-in-time compiled, and multi-paradigm."

  }

]

Running this code results in:

Language{name='Java', description='Java is a class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible.'}

Language{name='Python', description='Python is an interpreted, high-level and general-purpose programming language. Created by Guido van Rossum and first released in 1991.'}

Language{name='JS', description='JS is a programming language that conforms to the ECMAScript specification. JavaScript is high-level, often just-in-time compiled, and multi-paradigm.'}

How to Convert JSON array string to List

 How to Convert JSON array string to List

1. Convert JSON array string to List

1.1 JSON array string

[{"name":"mkyong", "age":37}, {"name":"fong", "age":38}]

1.2 Create an object to map the above JSON fields.

public class Person {

    String name;

    Integer age;

    //getters and setters

}

1.3 Convert the JSON array string to a List

public class JacksonArrayExample {


    public static void main(String[] args) {


        ObjectMapper mapper = new ObjectMapper();

        String json = "[{\"name\":\"mkyong\", \"age\":37}, {\"name\":\"fong\", \"age\":38}]";


        try {


            // 1. convert JSON array to Array objects

            Person[] pp1 = mapper.readValue(json, Person[].class);


            System.out.println("JSON array to Array objects...");

            for (Person person : pp1) {

                System.out.println(person);

            }


            // 2. convert JSON array to List of objects

            List<Person> ppl2 = Arrays.asList(mapper.readValue(json, Person[].class));


            System.out.println("\nJSON array to List of objects");

            ppl2.stream().forEach(x -> System.out.println(x));


            // 3. alternative

            List<Person> pp3 = mapper.readValue(json, new TypeReference<List<Person>>() {});


            System.out.println("\nAlternative...");

            pp3.stream().forEach(x -> System.out.println(x));


        } catch (IOException e) {

            e.printStackTrace();

        }


    }

}

Output

1. JSON array to Array objects...

Person{name='mkyong', age=37}

Person{name='fong', age=38}


2. JSON array to List of objects

Person{name='mkyong', age=37}

Person{name='fong', age=38}


3. Alternative...

Person{name='mkyong', age=37}

Person{name='fong', age=38}

How to convert ArrayList to String using GSON

GSON is java library, It is used to convert OBJECT to JSON and JSON to Object. Internally it going to work based on serialization and de- serialization.

This example demonstrate about how to convert ArrayList to string using GSON library.

How to convert ArrayList to String using GSON

Add the following code in build.gradle.

apply plugin: 'com.android.application'

android {

   compileSdkVersion 28

   defaultConfig {

      applicationId "com.example.andy.myapplication"

      minSdkVersion 15

      targetSdkVersion 28

      versionCode 1

      versionName "1.0"

      testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

   }

   buildTypes {

      release {

         minifyEnabled false

         proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

      }

   }

}

dependencies {

   implementation fileTree(dir: 'libs', include: ['*.jar'])

   implementation 'com.android.support:appcompat-v7:28.0.0'

   implementation 'com.google.code.gson:gson:2.8.5'

   implementation 'com.android.support.constraint:constraint-layout:1.1.3'

   testImplementation 'junit:junit:4.12'

   androidTestImplementation 'com.android.support.test:runner:1.0.2'

   androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

}

Add the following code to res/layout/activity_main.xml

<?xml version = "1.0" encoding = "utf-8"?>

<android.support.constraint.ConstraintLayout xmlns:android = "http://schemas.android.com/apk/res/android"

   xmlns:app = "http://schemas.android.com/apk/res-auto"

   xmlns:tools = "http://schemas.android.com/tools"

   android:layout_width = "match_parent"

   android:layout_height = "match_parent"

   tools:context = ".MainActivity">

   <TextView

      android:id = "@+id/result"

      android:layout_width = "wrap_content"

      android:layout_height = "wrap_content"

      android:text = "Result Data"

      app:layout_constraintBottom_toBottomOf = "parent"

      app:layout_constraintLeft_toLeftOf = "parent"

      app:layout_constraintRight_toRightOf = "parent"

      app:layout_constraintTop_toTopOf = "parent" />

</android.support.constraint.ConstraintLayout>

Add the following code to src/MainActivity.java

public class MainActivity extends AppCompatActivity {

   @Override

   protected void onCreate(Bundle savedInstanceState) {

      super.onCreate(savedInstanceState);

      setContentView(R.layout.activity_main);

      TextView result = findViewById(R.id.result);

      ArrayList<String> list = new ArrayList<String>();

      list.add("JAVA");

      list.add("Android");

      list.add("Kotlin");

      list.add("C programing Language");

      list.add("C plus plus");

      Gson gson = new Gson();

      String arrayData = gson.toJson(list);

      result.setText(arrayData);

   }

}

How to convert Java array or ArrayList to JsonArray

A JsonArray can parse text from a string to produce a vector-like object. We can convert an array or ArrayList to JsonArray using the toJsonTree().getAsJsonArray() method of Gson class

 Syntax

public JsonElement toJsonTree(java.lang.Object src)

Example

import com.google.gson.*;

import java.util.*;

public class JavaArrayToJsonArrayTest {

   public static void main(String args[]) {

      String[][] strArray = {{"elem1-1", "elem1-2"}, {"elem2-1", "elem2-2"}};

      ArrayList<ArrayList<String>> arrayList = new ArrayList<>();

      for(int i = 0; i < strArray.length; i++) {

         ArrayList<String> nextElement = new ArrayList<>();

         for(int j = 0; j < strArray[i].length; j++) {

            nextElement.add(strArray[i][j] + "-B");

         }

         arrayList.add(nextElement);

      }

      JsonObject jsonObj = new JsonObject();

      // array to JsonArray

      JsonArray jsonArray1 = new Gson().toJsonTree(strArray).getAsJsonArray();

      // ArrayList to JsonArray

      JsonArray jsonArray2 = new Gson().toJsonTree(arrayList).getAsJsonArray();

      jsonObj.add("jsonArray1", jsonArray1);

      jsonObj.add("jsonArray2", jsonArray2);

      System.out.println(jsonObj.toString());

   }

}

Output

{"jsonArray1":[["elem1-1","elem1-2"],["elem2-1","elem2-2"]],"jsonArray2":[["elem1-1-B","elem1-2-B"],["elem2-1-B","elem2-2-B"]]}

Tuesday, May 11, 2021

How To Download GTA 5 on Low-End PC in 2GB Parts | GTA V Download Latest version 2021

  How To Download GTA V on Low-End PC in Parts

Download Now

how To Download files from this website? just click here.


GTA 5 is a Huge game in size therefore most of the low-end pc gamers can't play the game so I divided it into 2GB parts total parts are 30 (approx). If you have any issue related to this game then just comment down or DM me on INSTAGRAM.

Recommended specifications:

OS: Windows 8.1 64 Bit, Windows 8 64 Bit, Windows 7 64 Bit Service Pack 1
Processor: Intel Core i5 3470 @ 3.2GHZ (4 CPUs) / AMD X8 FX-8350 @ 4GHZ (8 CPUs)
Memory: 8GB
Video Card: Nvidia GTX 660 2GB / AMD HD7870 2GB
Sound Card: 100 Percent DirectX 10 compatible
HDD Space: 65GBDVD Drive


Softwares required to Play the game



How To Download files from this website? just click here.


Click on the DOWNLOAD button to go to the download page
NOTE: Pls Support the developers by buying the game, This game is only for those who can't afford the premium version. Also, this is an older version of the game.



All the Links like Game, UPDATE included on the download page




How To Play GTA Vice City Online Multiplayer for free on pc in Hindi (2021) | GTA Lovers must visit!

Play GTA Vice City Online Multiplayer On PC in Hindi 

 Download Now


GTA Vice City Online Multiplayer mod is an open-source mod in which we can play GTA VC PC game with our friends online via the internet. If you are getting your while playing GTA Vice City on your PC then you must play the Online version of GTA VC. All the steps and tutorials are given below.


Files required to play GTA Vice City Online Multiplayer

1. DirectX

2. MS Visual C++


Tutorial Video


How To Play GTA VC online multiplayer?

1. Make sure you have installed the GTA Vice City PC Game.

2. Download & Install GTA VC MP mod into your GTA VC Game folder.

3. Run GTA VC:MP application from GTA VC game folder & select the server then Run.


How To Download files from this website? just click here.


Click on the DOWNLOAD button below to go to the download page



Thanks for visiting :)






Monday, May 10, 2021

GTA 5 Download from Google Drive Link | GTA V Download at 10 MB/s speed | GTA 5 Download on PC 2021

 GTA 5 Download from Google Drive Link | GTA V Download at 10 MB/s speed | GTA 5 Download on PC 2021


Download Now


 GTA 5 whenever you listen to this word you actually want to play this but you can't because of some limitations and one of them is HOW TO DOWNLOAD. Therefore I made a video about how to download it and also install it on pc. 

I made this game downloadable in highly compressed parts so that every low-end pc gamer can afford it. If you don't know how to download this game then watch the given video and download+install it easily.



Minimum System Requirements:

CPU: Core 2 quad Q6600 @2.4 GHz (4 cores)

RAM: 4GB DDR3

Graphics Card: Nvidia 9800 GT 1GB/ AMD HD 4870 1GB

OS: Windows 7/8/8.1/10 

DirectX required: Yes DX10/11

Hard Disk Space to download: 30GB (approx)

Hard Disk Space to install: 78 GB (approx)

        





                         

Click here to download

(You can also download GTA 5 in 1GB here.)


How To Download files from this website?


                                                                  HINDI version


happy gaming and if you like my work then please support me by sharing this blog's link to your friends or someone else.

Check out more games:

GTA IV Download: click here

GTA 5 4GB Ram Lag Fix: click here

GTA 5 Texture missing FIX: click here

Play GTA 5 Epic Games in Offline mode without internet: click here


GTA San Andreas 2021 Graphic Mod For 2GB Ram PC Without Graphics Card

  GTA San Andreas 2021 Graphic Mod For 2GB Ram PC Without Graphics Card is really a good idea to make GTA SA better than the original. We can play it with high graphics in just 2GB ram!



How To Download files from this website? just click here.

Mod author: Abhinav modders

His Site: Abhinavmodders.com



System Requirements:

CPU: Any Dual Core @2.0GHz

Ram: 2GB (for better experience use 4GB)

GPU: No required

Mod size: 24 MB only!


Download Link$:

Optional file: click here


How To Download files from this website? just click here.


Tutorial Video:

Hindi version:


      ENGLISH version:




More Games:

GTA IV Download: click here

GTA 5 4GB Ram Lag Fix: click here

GTA 5 Texture missing FIX: click here

Play GTA 5 Epic Games in Offline mode without internet: click here

GTA San Andreas MMGE 1 for Low-End PC by abhinavmodders: click here


Thank You♥ for visiting here :)

GTA IV Low End PC Mod (2021) 60 FPS Boost

  GTA IV Low-End PC Mod (2021) 60 FPS Boost!

Download Now

How To Download files from this website? just click here.



GTA 4 Khichdi Mod file

How To Download files from this website?

                                How To Download files from this website? just click here.


Tutorial Videos

Hindi version


English version



Saturday, May 8, 2021

How To change GTA 5 1st Loading Screen | GTA V Startup Loading Screen photo change

How To Change GTA V Startup Loading Screen photo change




GTA V Startup problem is not a huge problem but for Shareef gamers, it is one of the biggest problems. Whenever you run the game in front of your parents absolutely they scold you so that's why you are here to change it and solve your photo.

Tutorial video

How To Change the startup girl photo

1.Download and install open Iv 2.6.3, after installing click on GTA V(windows), then click on "tools".then "Asi Manager" install asi loader and open iv.asi  
2.extract the file u downloaded
3.u find an image name "beach_fg", make a folder name backup on your GTA v games directory, then place it.
4.start ur open iv,then goto this directory "Grand Theft Auto V - FULL UNLOCKED - RETAIL [No Crack]\update\update.rpf\x64\data\cdimages"
5. here find a file named "scaleform_frontend.rpf", open it. after an open click on Edit mode from above!
6.after open search for this file named "loadingscreen_startup.ytd",open it.
7.select "beach_fg" and click on replace, then select ur downloaded image file

How To Download files from this website?


Gameplay 

Coming back from the Forza Horizon 3, Wheelspins there are a lot of spins that you get as rewards with random prizes which range from cars, cash, horns, emotes as well as clothing. The Wheelspins can be rewarded by moving forward in the story and finishing specific season-based challenges. You can also buy them from the Forzathan shop. You can find hide Wheelspins, improved editions of Wheelspins with good prizes can be offered for finishing segments of the entire story as well as other challenges. 

You can also buy the super Wheelspins from the Forzathon Shop. After getting back from the earlier two games Bass label and British drum records offered a soundtrack which was composed of 20 distinguished tracks from different label artists and the unreleased tracks named Sunrise which was developed for the cinematic opening of the game. The sound was launched on 26th October 2018. 


Minimum System Requirement

CPU: Intel i3-4170 @ 3.7Ghz OR Intel i5 750 @ 2.67Ghz

CPU SPEED: Info

RAM: 8 GB

OS: Windows 10 version 15063.0 or higher

VIDEO CARD: NVidia 650TI OR NVidia GT 740 OR AMD R7 250x

PIXEL SHADER: 5.0

VERTEX SHADER: 5.0

DEDICATED VIDEO RAM: 2 GB


Softwares required to run the game

1. DirectX

2. Microsoft .net 4.5.2

3. Microsoft Visual C++ (x64)

4. Microsoft Visual C++ (x86)


                      How To Download files from this website? just click here.


How To Download & Install?

1. Download the torrent file from the download page link given below.

2.  Turn the Windows Defender or Antivirus Off before installing the game (The game doesn't contain any malware or virus but it is cracked so windows detect it as malware).

3. Run the Setup.exe file & tick the 2GB ram limiter if you have less than 8GB ram then choose the location and click on next then install (The game can take 5 hours depending on your PC's specs).

4. Click on finish then run the game as administrator from Desktop shortcut.


Click on the DOWNLOAD button below to go to the download page



Friday, May 7, 2021

GTA San Andreas 2021 Ultra Graphics for Low-End PC

  GTA San Andreas 2021 Ultra Graphics for Low End PC

Download Now

How To Download files from this website? just click here.





This graphic is made by abhinavmodders and specially made for low-end pcs. It is a very beautiful and recommended graphics for 2 or 4GB ram PCs.

Recommended System Requirements

Ram: 2GB DDR3
Processor: Core i3 2nd Gen 
Graphics Card: N/A
Total Graphics: 1GB above

How To Download files from this website? just click here.


Tutorial Video by me:-

NOTICE: If you are using a mobile Browser like Chrome so enable Desktop Site mode to not to get any problems while downloading 

For Motivational Quotes visit Mohd Dayan

Thanks For Downloading :)


Thursday, May 6, 2021

How To Play Granny PC Game in 2GB Ram PC | Granny game Lag Fix Intel HD Graphics | Granny 2GB Ram

 How To Download+Play Granny PC Game in 2GB Ram PC | Granny pc game for low-end pc


 Download Now


Tutorial Videos

#1 ENGLISH version


#2 HINDI version

About the game

Granny is a survival horror video game developed and published by Agatha, under the name DVloper, as a spin-off to the earlier Slendrina series.

Initial release date: 24 November 2017
Developer: DVapps AB
Series: DVloper's Granny
Mode: Single-player video game
Engine: Unity
Publisher: DVapps AB

How to fix the lag?

The Granny PC game runs on the default screen resolution settings. we don't have any in-game option to change the resolution therefore it's is the biggest thing by which we can't play it on a 4GB Ram PC.
To change its screen resolution you have to change your Desktop screen resolution then run the game and you will see that the game screen resolution will also be changed.

                    How To Download files from this website? just click here.


How To Download Granny PC Game?

There are 2 parts of Granny PC games 1 & 2. Both parts are available on steam to buy or if you can't afford it then you can also download it for free but it's cracked means the developers of this game will not get any benefit from this game so it's better to buy the game instead of free downloading.

Click on the DOWNLOAD button below to go to the download page


If you have any issue related to this game then you can ask me on my INSTAGRAM or just comment down below


Wednesday, May 5, 2021

How To Fix GTA V Texture missing Problem (2021) | GTA V Roads Disappear Fix | World not loading Fix

 GTA 5 Texture/Roads/World missing fix


 Download Now

How To Download files from this website? just click here.

Tutorial video




Texture missing is one of the common problems which is being faced by gamers nowadays. this problem occurs due to our low Graphics usage or CPU usage. To fix this issue I've made 2 videos one of them is given above watch it and fix it.


Causes of this issue

1. Texture is high than the requirement of your GPU or CPU usage.

2. Too many mods have been installed so uninstall some of them.

3. Do GTA V.exe priority in real-time from the task manager as shown in the video then run World not loading file given below.


How To Download files from this website? just click here.


Click on the DOWNLOAD button to go to the download page

NOTE: disable the ad blocker and if you have any problem while downloading then comment below or DM me on INSTAGRAM