Modding(PATCHED)Fake CSGO Chat Messages
Posted:

Modding(PATCHED)Fake CSGO Chat MessagesPosted:

Exam
  • Winter 2022
Status: Offline
Joined: Dec 17, 20176Year Member
Posts: 1,344
Reputation Power: 2160
Status: Offline
Joined: Dec 17, 20176Year Member
Posts: 1,344
Reputation Power: 2160
This seems to not work in public lobbies anymore, there is a chance it works customs servers or private games.

Hey, made this python script for fun. Enjoy! if find a problem let me know!

This is for CS:GO, this is completely safe and does not interfere with the actual game it just copies commands to your clipboard with ease and all you have to do is paste that command in the CS:GO console for it to work, only works if your player is alive and only teammates can see the message!

if you do not have python installed feel free to use the EXE version: Submitted EXE download to TTG downloads, once accepted I shall place the link here, for now simply install python and use the source code below converted with pyinstaller

Source code:
import pyperclip as item
import pyperclip as banned
print("*" * 42)
print("** " + "Fake CSGO Chat messages Made by Exam ", end='**\n')
print("*" * 42)
print("Commands:\n 'help'\n 'FakeBan'\n 'FakeItem'\n 'FakeDisconnect'\n 'FakeTeamChange'\n 'FakeTeamDamage'\n 'FakeAbandonedGame'\n 'SpoofMessage'\n 'FakeIncome'\n")
while True:
    commands=input()
    help = "\nBefore we start make sure you have the console enabled in CS:GO located in 'Game>Communication>Enable Developer Console \nOnce console is enabled, \nSimply type one of the commands above.\nFollow any instructions asked once completed it will automatically copy needed text to\nyour clipboard, once it is copied go into a csgo game, open the console using tilde key(~), \nthen simply paste and press enter and watch the magic happen.\n "
    FakeBan = "FakeBan"
    FakeItem = "FakeItem"
   

    if commands == "help":
        print(help)

    elif commands== "FakeBan":
        banname=input("Type Steam name here of player:\n")
        FakeBanMesasage = ('playerradio Radio.WePlanted "' +banname + ' has been permanently banned from official CS:GO servers."')
        banned.copy(str(FakeBanMesasage))
        print("command has been copied to your clipboard\n")

    elif commands == "FakeItem":
        fakename=input("Type Steam name here of player:\n")
        itemname=input("Type in the item you want to fake\n")
        itemname = itemname.title()
        paintkit=input("Type in a paintkit for the fake item\n")
        paintkit = paintkit.title()
        Stattrack=input("Do you want the fake item to be Stattrack?(y/n)\n")
        FakeItemMessageNoStatTrack = ('playerradio Radio.WePlanted "' +fakename + ' has opened a container and found:  ' +itemname + ' | ' + paintkit+'"')
        FakeItemMessage = ('playerradio Radio.WePlanted "' +fakename + ' has opened a container and found:  StatTrak ' +itemname + ' | ' + paintkit+'"')
        if Stattrack.lower().startswith("y"):
            item.copy(str(FakeItemMessage))
        elif Stattrack.lower().startswith("n"):
            item.copy(str(FakeItemMessageNoStatTrack))
        print("command has been copied to your clipboard\n")

    elif commands == "FakeDisconnect":
        name2=input("Type Steam name here of player:\n")
        FakeDisconnectionMessage = ('playerradio Radio.WePlanted "Player '+name2+' left the game [Disconnected]"')
        item.copy(str(FakeDisconnectionMessage))
        print("command has been copied to your clipboard\n")

    elif commands == "FakeTeamChange":
        name3=input("Type Steam name here of player:\n")
        Team=input("What team do you want to fake message to join(t/ct)")
        FakeTeamChangeMessageCT = ('playerradio Radio.WePlanted "'+name3+' is joining the Counter-Terrorist force')
        FakeTeamChangeMessageT = ('playerradio Radio.WePlanted "'+name3+' is joining the Terrorist force')
        if Team.lower().startswith("t"):
            item.copy(str(FakeTeamChangeMessageT))
        elif Team.lower().startswith("c"):
            item.copy(str(FakeTeamChangeMessageCT))
        print("command has been copied to your clipboard\n")

    elif commands == "FakeTeamDamage":
        name4=input("Type Steam name here of player:\n")
        FakeTeammateDamageMessage = ('playerradio Radio.WePlanted "'+name4+' attacked a teammate."')
        item.copy(str(FakeTeammateDamageMessage))
        print("command has been copied to your clipboard\n")

    elif commands == "FakeAbandonedGame":
        name5=input("Type Steam name here of player:\n")
        time=input("Please enter amount fake time of competitive ban\n (Recommended to type example: 30 minute, 2 hour, 7 day you can use any number.)\n")
        FakeAbandonedGameMessage = ('playerradio Radio.WePlanted ">> '+name5+' left'+name5+' abandoned the match and received a 7 day competitive matchmaking cooldown."')
        FakeAbandonedGameMessageCustomTime = ('playerradio Radio.WePlanted ">> '+name5+' left'+name5+' abandoned the match and received a ' +time+ ' competitive matchmaking cooldown."') 
        option =input("Would you like to have your custom time displayed(y) or have a default of 7 days be displayed?(n)\n")
        if option.lower().startswith("y"):
            print("you typed " +time)
            item.copy(str(FakeAbandonedGameMessageCustomTime))
        elif option.lower().startswith("n"):
            item.copy(str(FakeAbandonedGameMessage))
        print("command has been copied to your clipboard\n")

    elif commands == "SpoofMessage":
        name6=input("Type Steam name here of player:\n")
        message=input("Type in the fake message here:\n")
        comporcasual=input("Are you spoofing message for (comp/casual)? please type one:\n")
        SpoofMessageCasual = ('playerradio Radio.WePlanted " '+name6+' : '+message+'"')
        SpoofMessageComp = ('playerradio Radio.WePlanted " '+name6+' : '+message+'"')
        if comporcasual == "comp":
                item.copy(str(SpoofMessageComp))
                print("command has been copied to your clipboard\n")
        elif comporcasual == "casual":
                item.copy(str(SpoofMessageCasual))
                print("command has been copied to your clipboard\n")
        else:
            print("incorrect response! make sure you type (comp/casual)")
       


    elif commands == "FakeIncome":
        income=input("Type in the amount of income:\n")
        LostOrWon=input("Lose or Win income? (l/w): ")
        Lost=("Income for losing.")
        Won=("Team award for eliminating the enemy team.")
        FakeIncomeMessageLost = ('playerradio Radio.WePlanted "+$'+income+': '+Lost+'"')
        FakeIncomeMessageWon = ('playerradio Radio.WePlanted "+$'+income+': '+Won+'"')
        if LostOrWon.lower().startswith("l"):
            item.copy(str(FakeIncomeMessageLost))
        elif LostOrWon.lower().startswith("w"):
            item.copy(str(FakeIncomeMessageWon))
        print("command has been copied to your clipboard\n")

    else:
        print("Incorrect command, make sure to type command as shown! (Case Sensitive)")




Preview of console
https://cdn.upload.systems/uploads/zSRcgvAZ.png

FakeBan:
https://cdn.upload.systems/uploads/0wHoImIO.png

FakeItem:
https://cdn.upload.systems/uploads/8iBzcPFk.png

FakeDisconnect:
https://cdn.upload.systems/uploads/8r06ofZx.png

FakeTeamChange:
https://cdn.upload.systems/uploads/wiNnMH4b.png

FakeTeamDamage:
https://cdn.upload.systems/uploads/q06qf88q.png

FakeAbandonedGame:
https://cdn.upload.systems/uploads/5SVmO1bK.png

SpoofMessage:
https://cdn.upload.systems/uploads/aHJo21BK.png

FakeIncome:
https://cdn.upload.systems/uploads/8lqR7Ya1.png

How it works:
https://cdn.upload.systems/uploads/Ts40jtX7.png

The following 1 user thanked Exam for this useful post:

BRye (11-19-2021)
Users browsing this topic: None
Jump to:


RECENT POSTS

HOT TOPICS