Hi everyone,
I've created a software that change characters' gear id. I thought that the skin would change but no. I have the gear's details on my character sheet but no skin. I got only the skin of the wep.
I got a function that saves the changes to put them back, but when i log off, wow fail .
Is there any protection to unlock model changing ?
Thanks, if you got any ideas...
I'm french sorry if my english is bad .
Code:
Private Sub ListBox1_DoubleClick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.DoubleClick
Dim gauche() = {0, 1, 2, 14, 4, 3, 18, 8} ' number for left panel user stuff
Dim valeur As Integer = InputBox("Numero d'item")
MemReader = Memo_c.GetInstance()
Dim tmp = Getbyguid.GetByGuid(MemReader.ReadInt64(CUInt(Base) + Enums.Globals.TARGET_GUID)) ' Offset charactere
MemReader.WriteInt(MemReader.ReadInt(tmp + 8) + Enums.PlayerFields.PLAYER_VISIBLE_ITEM_1_ENTRYID + (gauche(ListBox1.SelectedIndex) * 8), valeur) ' this for change the ID
End Sub