Results 1 to 11 of 11
  1. #1
    Jonathan_Diez_'s Avatar
    Join Date
    Jul 2017
    Gender
    male
    Location
    España, Madrid
    Posts
    85
    Reputation
    6
    Thanks
    220
    My Mood
    Angelic

    Traitor Finder (GMOD TTT)

    I need a Traitor Finder thx?

  2. #2
    gayniggersinspace's Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    13
    Quote Originally Posted by Jonathan_Diez_ View Post
    I need a Traitor Finder thx?
    yea no problem man add me https://steamcommunity.com/profiles/76561197961746985

  3. #3
    SubtlyDeadly's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by gay******sinspace View Post
    yea no problem man add me
    I've added you, but I believe you've blocked me

  4. #4
    SchoolShooter666's Avatar
    Join Date
    Jan 2018
    Gender
    male
    Location
    Queensland, aussie
    Posts
    13
    Reputation
    10
    Thanks
    0
    I can help, you have to do it like this, when the round starts, read from the memory and if there a T they will be isTraitor = 1, so do if isTraitor then say Traitor!

  5. #5
    Beriyan's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    25° 42' 51.6528'' N 51° 31' 58.0368'' E
    Posts
    1,465
    Reputation
    101
    Thanks
    125
    My Mood
    Asleep
    Quote Originally Posted by SchoolShooter666 View Post
    I can help, you have to do it like this, when the round starts, read from the memory and if there a T they will be isTraitor = 1, so do if isTraitor then say Traitor!
    Mind to elaborate? Try making a thread about it, I’m sure it’ll help many such as myself.

  6. #6
    SchoolShooter666's Avatar
    Join Date
    Jan 2018
    Gender
    male
    Location
    Queensland, aussie
    Posts
    13
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by Beriyan View Post
    Mind to elaborate? Try making a thread about it, I’m sure it’ll help many such as myself.
    i dont know enough to make a thread, my chink.gang buddies told me about looking in a table?
    either way ill ask some friends and post back if i get a clearer idea

    edit: they said there is a place in memory that has all the players in it and there is a part where is says if they are T
    so im guessing its just like reading anything else but you have to find the place in memorey where it is
    most of them said to paste one from another cheat but when i do i get errors
    Last edited by SchoolShooter666; 01-01-2018 at 11:12 PM.

  7. #7
    SubtlyDeadly's Avatar
    Join Date
    Jun 2013
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by SchoolShooter666 View Post
    i dont know enough to make a thread, my chink.gang buddies told me about looking in a table?
    either way ill ask some friends and post back if i get a clearer idea

    edit: they said there is a place in memory that has all the players in it and there is a part where is says if they are T
    so im guessing its just like reading anything else but you have to find the place in memorey where it is
    most of them said to paste one from another cheat but when i do i get errors
    I don't think that works. The client isn't given access to whether or not someone is a traitor, I don't think. I wrote a quick script to try it and it does not work:
    Code:
    concommand.Add( "trackedTest", function()
    		for _,v in pairs(player.GetAll()) do
    				if v:IsTraitor() then
    						print(v:GetName() .. "\nYES\n")
    				else
    						print(v:GetName() .. "\nNO\n")
    				end
    		end
    end )

  8. #8
    StickyStickxV2's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    3
    My Mood
    Buzzed
    same I want one too

  9. #9
    Promptitude's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Code:
    local equipment = GetEquipmentForRole( ROLE_TRAITOR )
    local tWeps = {}
    
    for _, weapon in ipairs( equipment ) do
        tWeps[ weapon.id ] = true
    end
    
    hook.Add( "NetworkEntityCreated", "FindTraitors", function( ent )
        if !tWeps[ ent:GetClass() ] then return end
    
        local ply = ent:GetOwner()
        if ply:GetRole() == ROLE_TRAITOR then return end
        ply:SetRole( ROLE_TRAITOR )
    
        chat.AddText( Color( 255, 0, 0 ), "[Traitor Finder] ", color_white, ply:Nick(), " is a ", Color( 255, 0, 0 ), "TRAITOR", color_white, "." )
    end )
    Last edited by Promptitude; 01-04-2018 at 12:24 AM.

  10. #10
    minershock's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Location
    United States, Illinois
    Posts
    24
    Reputation
    10
    Thanks
    11
    Hello,
    What Promptitude did is actually the correct method, in part. All you do is check inventories to see what weapons everyone has, if they have a traitor weapon, chances are they are a traitor. If a server blocks that then just track what weapons have been held and whether they are T weapons. Have fun!

    minershock
    Jonas

  11. #11
    Ackroy_JR's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    424
    My Mood
    Daring
    Promptitude's doesn't work.

Similar Threads

  1. TTT Traitor finder.
    By blackstab1337 in forum Garry's Mod Discussions & Help
    Replies: 12
    Last Post: 01-03-2014, 04:32 PM
  2. TTT Traitor Finder and ESP
    By GaryLePug in forum Garry's Mod Discussions & Help
    Replies: 7
    Last Post: 12-21-2013, 04:20 PM
  3. TTT Traitor Finder
    By Vicot18 in forum Garry's Mod Discussions & Help
    Replies: 6
    Last Post: 11-02-2013, 10:29 PM
  4. TTT Traitor finder
    By realroy121 in forum Garry's Mod Discussions & Help
    Replies: 2
    Last Post: 10-04-2013, 12:54 AM
  5. [Release] TTT Traitor Finder (untested)
    By TheyCallMeDaz in forum Garry's Mod Hacks & Cheats
    Replies: 48
    Last Post: 08-26-2013, 11:28 AM