[Includes]
[Only registered and activated users can see links. Click Here To Register...]
IDChanger_Func.au3 Download in the attachment
Example.au3 also in attachment.
! Please give credits when using !
[Only registered and activated users can see links. Click Here To Register...]
IDChanger_Func.au3 Download in the attachment
Example.au3 also in attachment.
Code:
#RequireAdmin
#include "detour.au3"
#include "IDChanger_Funcs.au3"
Dim $Handle = OpenProcess($PROCESS_ALL_ACCESS, 1,ProcessExists("S4Client.exe")
Dim $ItemSlot_Array_Add = IDChanger_Init($Handle, "3D6190")
Dim $Weap_01 = IDChanger_Add_Item($Handle, $ItemSlot_Array_Add[0], 2000027, 2000019 ,0, 1)
Dim $Weap_02 = IDChanger_Add_Item($Handle, $ItemSlot_Array_Add[0], 2000007, 2000008 ,0, 1)
Dim $Weap_03 = IDChanger_Add_Item($Handle, $ItemSlot_Array_Add[0], 2000001, 2000001 ,0, 1)
MsgBox(0,"ID","ID Set")
IDChanger_Delete_Item($Handle, $Weap_02)
MsgBox(0,"ID","Deleted Item $Weap_02")
$Weap_02 = IDChanger_Add_Item($Handle, $ItemSlot_Array_Add[0], 2000007, 2000008 ,0, 1)
MsgBox(0,"ID","ID Set Again ( Back )")
MsgBox(0,"Mode = " & IDChanger_Change_State($Handle,$ItemSlot_Array_Add[1], False),"Is OFF")
IDChanger_Delete_List($Handle, $ItemSlot_Array_Add[0])
MsgBox(0,"ID", "ID List Deleted")
CloseHandle($Handle)