Results 1 to 11 of 11
  1. #1
    HexMurder's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    System.Diagnostics
    Posts
    344
    Reputation
    96
    Thanks
    3,170

    telling the difference between players?

    Okay with the help of a few members, i have a working trigger bot! . however, it does not differentiate between friendly and enemy players. (i.e it will shoot if i look at teammates as well.) can someone explain the process of what i need to do to finish this thing up? thanks for the help guys.

  2. #2
    Smoke's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    11,899
    Reputation
    2661
    Thanks
    4,610
    My Mood
    Amazed
    Moved to the right section.


    CLICK TO BUY NOW!!


    Quote Originally Posted by Liz View Post
    This is my first vouch, ever. Rapidgator account worked perfectly. Would buy in the future.

  3. #3
    Law's Avatar
    Join Date
    Jun 2015
    Gender
    male
    Posts
    2,432
    Reputation
    174
    Thanks
    4,620
    My Mood
    Amused
    if (LocalPlayer_crosshairID > 0 && LocalPlayer_crosshairID < 64 && LocalPlayer_teamNum != EntityPlayer_teamNum && !EntityPlayer_isDormant && !EntityPlayer_lifeState)
    Here is code for a triggerbot to reference.

  4. #4
    Orinion77's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    140
    Reputation
    10
    Thanks
    47
    My Mood
    Relaxed
    The crosshairID will hold the entetiy id of the player in the crosshair. Get the Player from the entetylist and compare his and your team number.

  5. #5
    Der_Leo_'s Avatar
    Join Date
    Jan 2014
    Gender
    male
    Location
    0xE9
    Posts
    102
    Reputation
    10
    Thanks
    615
    My Mood
    Buzzed
    Code:
    if (!isDormant && gEntityTeam != LocalPlayerTeam)
    Add this check to your hack

    Now open your wings and fly. God bless you. -Major Zero

  6. #6
    GodOfMEME's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    London
    Posts
    42
    Reputation
    10
    Thanks
    7
    only if I knew how to code :''''C sad tyms

  7. #7
    VaginaSlayer's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    2
    Why do y'all do a InCross trigger bot? They are the worst use bones and hitboxes instead.

  8. #8
    KappaMang's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    242
    Reputation
    10
    Thanks
    16
    My Mood
    Asleep
    @ OP...
    You will need the following offsets:
    crosshairID
    entityList[]
    teamNum

    Assuming you have the meat of the triggerbot, when you are using the function, call the check:
    Code:
    if (entityList[MyPlayer.crosshairID - 1].Team == MyPlayer.Team) return;
    So I'll explain it...
    The array entityList will hold all of the entities. Since arrays start at 0, we subtract 1 from our crosshair ID. Then, we check if that entity's team is the same as our team. If it is, it exits the function.

  9. #9
    Jasmine's Avatar
    Join Date
    Feb 2015
    Gender
    female
    Location
    Your heart <3
    Posts
    481
    Reputation
    19
    Thanks
    1,760
    My Mood
    Amused
    Quote Originally Posted by VaginaSlayer View Post
    Why do y'all do a InCross trigger bot? They are the worst use bones and hitboxes instead.
    Super simple and easy to do.

  10. #10
    illusionisten's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    28
    Reputation
    10
    Thanks
    2
    My Mood
    Tired
    Your team:
    Code:
    LocalBase = RPM(csHandle, Client.dll + Offset.LocalPlayer, 4, 0)
    MyTeam = RPM(csHandle, LocalBase + Offset.Team, 4, 0)
    Enemy team via InCross:
    Code:
    LocalBase = RPM(csHandle, Client.dll + Offset.LocalPlayer, 4, 0)
    InCross_Index = RPM(csHandle, LocalBase + Offset.InCross, 4, 0) - 1
    EntityPointer = RPM(csHandle, Client.dll + Offset.EntityList + (InCross_Index * 16), 4, 0)
    EnemyTeam = RPM(csHandle, EntityPointer + Offset.Team, 4, 0)
    Check:
    Code:
    Bool DifferentTeams
    If MyTeam != EnemyTeam {
    Return true
    Else
    Return false
    }
    Syntax is probably wrong, idc.

  11. #11
    Hunter's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Location
    Depths Of My Mind.
    Posts
    17,468
    Reputation
    3771
    Thanks
    6,159
    My Mood
    Cheerful
    1 week has passed and no further replies have been made by the OP. Assuming solved.

    /Closed.

Similar Threads

  1. Replies: 9
    Last Post: 10-15-2015, 06:09 AM
  2. Replies: 4
    Last Post: 07-20-2010, 03:13 AM
  3. What is the difference between Lithtech DTX and "Nexon"?
    By revolutioner in forum Combat Arms Mod Discussion
    Replies: 15
    Last Post: 07-17-2010, 06:05 PM
  4. the difference between css-cs 1.6
    By mpentlan01 in forum CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    Replies: 1
    Last Post: 04-29-2009, 02:45 AM
  5. Replies: 2
    Last Post: 08-23-2008, 03:52 AM