Results 1 to 2 of 2
  1. #1
    OleAnDieMacht's Avatar
    Join Date
    Dec 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    1

    Mw3 Clantag changer

    Hello,

    I would love it, if somebody would make a new working clantag changer for mw3. The old one does not work anymore. I can't do it myself

  2. The Following User Says Thank You to OleAnDieMacht For This Useful Post:

    [A]nTo99 (02-18-2017)

  3. #2
    garupede's Avatar
    Join Date
    Oct 2016
    Gender
    male
    Location
    WHERE'S DA PUSSY
    Posts
    40
    Reputation
    10
    Thanks
    55
    My Mood
    Twisted
    Hi man,
    This is a complete setting changer for TeknoMW3 written by me in C --> just debug it and put the executable in your game folder, and it will work.
    Hoping to be useful


    Code:
    #define _CRT_SECURE_NO_WARNINGS
    
    #include <stdio.h>
    #include <stdlib.h>
    #include <windows.h>
    #include <conio.h>
    
    #define dim 20
    
    typedef struct {
    	char name[dim], clantag[dim], title[dim];
    	int maxfps, fov;
    }user;
    
    void SetColor(short Color){
    	HANDLE hCon = GetStdHandle(STD_OUTPUT_HANDLE); // oppure system("COLOR E9"); 
    	SetConsoleTextAttribute(hCon, Color);
    }
    
    main() {
    	FILE* fp;
    	FILE* f;
    	FILE* fin;
    	user utente;
    	char s[81];
    	SetColor(11);
    	printf("The followings are your actual settings:\n");
    	if ((fp = fopen("teknogods.ini", "r")) == NULL)
    		exit(1);
    	else {
    		while (!feof(fp)) {
    			SetColor(5);
    			fscanf(fp, "%s\n", s);
    			printf("%s\n", s);
    		}
    		fclose(fp);
    	}
    	printf("\n\n\n");
    	f = fopen("teknogods.ini", "w+t");
    	fprintf(f, "[Settings]\n");
    	SetColor(11);
    	printf("These will be your own settings.\n");
    	SetColor(12);
    	printf("Type your name: ");
    	SetColor(10);
    	scanf("%s", utente.name);
    	SetColor(12);
    	printf("Type your ClanTag: ");
    	SetColor(10);
    	scanf("%s", utente.clantag);
    	SetColor(12);
    	printf("Type your title: ");
    	SetColor(10);
    	scanf("%s", utente.title);
    	SetColor(12);
    	printf("Type your FPS max: ");
    	SetColor(10);
    	scanf("%d", &utente.maxfps);
    	do {
    		SetColor(12);
    		printf("Type your FOV: ");
    		SetColor(10);
    		scanf("%d", &utente.fov);
    	} while (utente.fov < 65 || utente.fov>90);
    	fprintf(f, "Name=%s\n", utente.name);
    	fprintf(f, "ClanTag=%s\n", utente.clantag);
    	fprintf(f, "Title=%s\n", utente.title);
    	fprintf(f, "MaxFps=%d\n", utente.maxfps);
    	fprintf(f, "FOV=%d\n", utente.fov);
    	fclose(f);
    	SetColor(11);
    	printf("\n\n\nThe followings are your new settings:\n");
    	if ((fin = fopen("teknogods.ini", "r")) == NULL)
    		exit(1);
    	else {
    		while (!feof(fin)) {
    			SetColor(14);
    			fscanf(fin, "%s\n", s);
    			printf("%s\n", s);
    		}
    		fclose(fin);
    	}
    	system("pause");
    }

  4. The Following 2 Users Say Thank You to garupede For This Useful Post:

    icephantom09 (02-23-2017),[A]nTo99 (02-18-2017)

Similar Threads

  1. [Solved] MW3 Fov Changer
    By StylishCas. in forum Call of Duty Modern Warfare 3 Help
    Replies: 3
    Last Post: 02-14-2012, 11:30 AM
  2. [Patched] MW3 Killstreak Changer. [TEMP]
    By Jorndel in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 14
    Last Post: 01-26-2012, 11:07 AM
  3. [Patched] LiveQQer ~ MW3 Stats Changer V1
    By kris1skr0s in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 7
    Last Post: 01-09-2012, 03:42 PM
  4. [Release] MW3 Address Changer + Source
    By Kriege203 in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 16
    Last Post: 11-23-2011, 09:07 AM
  5. [Patched] MW3 FOV Changer (1.2.359)
    By silentrunner2 in forum Call of Duty 8 - Modern Warfare 3 (MW3) Hacks & Cheats
    Replies: 22
    Last Post: 11-19-2011, 06:15 AM