Thread: Change Clan tag

Results 1 to 6 of 6
  1. #1
    ViPeR124's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    1,073
    My Mood
    Cool

    Change Clan tag

    Hi im New Here and Want to Know how to change my Clan Tag with vb.Net
    I Know how to Hack the Score but i don't Know how to Change the Clan Tag
    I tried this :
    WriteBytes(AddressOfTheClanTag, {&H1}
    (This enabled my old Clan Tag i changed with Dream Hack)
    writeString(AdressOfTheClanTag, Textbox1.Text)

    I tried this but Nothing Happens.
    It only enabled my old Clan Tag.
    I also tried:
    WriteBytes(AddressOfTheClanTag, {&H1}

    But this disabled the Clan Tag.

    Can someone help Me?
    Last edited by ViPeR124; 12-12-2012 at 04:47 PM.

  2. #2
    Kenshin13's Avatar
    Join Date
    May 2011
    Gender
    male
    Location
    Cloud 9
    Posts
    3,470
    Reputation
    564
    Thanks
    6,168
    My Mood
    Psychedelic
    Writing 0xFF To the address to the address for enabling the clan tag activates the clan tag.
    Changing the text....well it can take a max of 7 Characters. idk VB so I can't help you but...im guessing your syntax is wrong. Or you may be writing to the incorrect address.

  3. #3
          ( ° ͜ʖ͡°)╭∩╮
    Former Staff
    MarkHC's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Location
    127.0.0.1
    Posts
    2,750
    Reputation
    66
    Thanks
    14,529
    My Mood
    Angelic
    By your post, it seems you're trying to write the text to the same offset that enables the Clan Tag...

    The Byte that enables it and the text offset are different.


    CoD Minion from 09/19/2012 to 01/10/2013

  4. #4
    ViPeR124's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    1,073
    My Mood
    Cool
    I used this code:

    Code:
           Try
                If MW3.Process_Handle("iw5mp") Then
                    MW3.WriteBytes(&H1406A2B, {&H1})
                    MW3.WriteString(&H1406A40, TextBox1.Text)
                End If
            Catch ex As Exception
    
            End Try
    is this right?

  5. #5
    Geometrical's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Location
    In the middle of nowhere.
    Posts
    1,034
    Reputation
    331
    Thanks
    10,335
    My Mood
    Chatty
    Code:
           Try
                If MW3.Process_Handle("iw5mp") Then
                    MW3.WriteBytes(&H1406A2B, {&H1})
                    MW3.WriteString(&H1406A40,  " ")
                    MW3.WriteString(&H1406A40, TextBox1.Text)
                End If
            Catch ex As Exception
    
            End Try
    I can't help you with that, but if you do make it work then you should clear the text before writing it again. @ViPeR124
    Last edited by Geometrical; 12-13-2012 at 07:02 AM.

  6. #6
    ViPeR124's Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    41
    Reputation
    10
    Thanks
    1,073
    My Mood
    Cool
    okay thanks i will try it

    ---------- Post added at 08:24 AM ---------- Previous post was at 08:05 AM ----------

    so i did it.
    Thanks to all
    here is my code:

    Code:
     Try
                If MW3.Process_Handle("iw5mp") Then
                    If TextBox18.Text = "" Then
                        MW3.WriteBytes(&H1406A2B, {&H0})
                    Else
                        MW3.WriteBytes(&H1406A2B, {&H1})
                        MW3.WriteString(&H1406A4C, "")
                        MW3.WriteString(&H1406A4C, TextBox1.Text)
                    End If
               End If
            Catch ex As Exception
    
            End Try
        End Sub

Similar Threads

  1. How to get coloured clan tag!
    By witchu in forum Call of Duty Black OPS Tutorials
    Replies: 6
    Last Post: 11-20-2010, 06:57 PM
  2. Symbols in clan tags.
    By TurTLeZ in forum Call of Duty Black Ops Discussions
    Replies: 7
    Last Post: 11-13-2010, 09:42 PM
  3. Replies: 7
    Last Post: 07-25-2010, 09:31 AM
  4. We Changed Clan Name And Logo....Had put some rules and requirements
    By thebest95 in forum CrossFire Clan Recruitment & Advertising
    Replies: 9
    Last Post: 07-14-2010, 08:14 PM
  5. [Request] Clan Tag
    By Steebo in forum Combat Arms Clan Recruitment & Advertising
    Replies: 2
    Last Post: 01-25-2010, 02:36 PM