Hello. This is a thread for: How to change Item's with the ID Changer from the Project Harmony! Hallo. Das ist ein Thread für das verändern vom Item's mit dem ID Changer. Würd mich freuen, wenn es einer der Mod's es sticky machen würd. :3
German:
|
[Only registered and activated users can see links. Click Here To Register...]
Ok.
First we will start with the TextTutorial. Later i will add a VideoTuT. Let's say we want to give the Plasma Sword+1 the FP stat's. First we will open the ID_Changer au3 script in the ID_Changer folder. After then we scroll down to the PS Code. It will look like this: Code:
If (GUICtrlRead($PS) = 1) Then IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "0_old", "2000001") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "0_new", "2000008") IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "0_old", "20101") IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "0_new", "20107") $count_effect = 1 $count_id = 1 EndIf Code:
If (GUICtrlRead($PS) = 1) Then IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "0_old", "2000001") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "0_new", "2000008") Under this line we see "0_new", "2000008" . The "0_new" is for the weapon, which we want to get. Next to it we see the ID 2000008, that's for the Taser Sword. If we will change the ID 2000008 to the Katana ID, the Plasma Sword will change to a Katana. But we want to have the Taser Sword. So don't change anything in this line. So under this two line's we will see that Code:
IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "0_old", "20101") IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "0_new", "20107") Under that we will se "0_new", "20107" . The "0_new" is for the effect which we want to get. Next to it we see 20107, which is the effect for the Plasma Sword +7. So the Plasma Sword +1 will change to a Plasma Sword+7 effect. But we don't want to have a Taser Sword+7, we want to have a Taser Sword with FP stat's! So the effect ID for the Taser Sword is 40001. We also delete the 20107 and write there 40001. If you've done that, the code will look like this Code:
If (GUICtrlRead($PS) = 1) Then IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "0_old", "2000001") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "0_new", "2000008") IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "0_old", "20101") IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "0_new", "40001") $count_effect = 1 $count_id = 1 EndIf Now we just need to save the script, and compile it (Right-click on the au3 script and Compile script). Now to the set's. Let's say that we want to make the Male Master Set to the Male Winter Bear Set. We also open again the au3 script file (Rightclick and Edit script) and scroll down to this line's Code:
if (GUICtrlRead($MasterSet) = 1) Then ;MALE IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "17_old", "1000001");Hair IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "17_new", "1000018") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "18_old", "1010002");Face IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "18_new", "1010020") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "19_old", "1020024");Shirt IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "19_new", "1020038") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "20_old", "1030021");Pants IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "20_new", "1030035") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "21_old", "1040028");Hands IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "21_new", "1040034") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "22_old", "1050028");Shoes IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "22_new", "1050034") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "23_old", "1060012");Acc IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "23_new", "1060026") We also just must to change the "_new" ID's. The ID's of the male Winter Bear Set are these: Hair -> There are no hair's for the Winter Bear Set. So don't change anything at the hair's. Face -> No face for the Winter Bear Set. So don't change anything there, too. Jacket -> 1021010 Pant's -> 1031010 Glove's -> 1041010 Shoe's -> 1051010 Acc -> 1061009 In the code we also see which ID is for which cloth. We also see that the ID 1060026 is the Acc of the Hat of the Master Set. So you just need to change the ID's on "_new" with the ID's from the Winter Bear Set. An example: We want to have the Winter Bear Acc. So we change the ID 1060026 to 1061009. Now we won't get anymore the Master Hat. We will get now the Winter Bear Acc. If you have changed everything, it will look like these Code:
if (GUICtrlRead($MasterSet) = 1) Then ;MALE IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "17_old", "1000001");Hair IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "17_new", "1000018") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "18_old", "1010002");Face IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "18_new", "1010020") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "19_old", "1020024");Shirt IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "19_new", "1021010") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "20_old", "1030021");Pants IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "20_new", "1031010") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "21_old", "1040028");Hands IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "21_new", "1041010") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "22_old", "1050028");Shoes IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "22_new", "1051010") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "23_old", "1060012");Acc IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "23_new", "1061009") I hope that tutorial will help you. Greetz' xXDaisukeXx VideoTutorial v1.0.6(+?): Sry it's just German. O:
Thank's to the Project Harmony Team for the ID_Changer and thank's to °Support for the ID's. Greetz' xXDaisukeXx
05/29/2011 22:15
~>Jάson<~#2
Eh
[Only registered and activated users can see links. Click Here To Register...]
05/29/2011 22:16
ゆうじ#3
There is not a tutorial for changing the ID's. ;)
05/29/2011 22:17
Aleynacombi#4
TRIPLE FUCKING FACEPALMN Nice tut daisuke...
05/29/2011 22:18
ゆうじ#5
05/29/2011 22:24
MaYoneeSee#6
NiCe TuT Daisuke !
Aber ich Kann es noch net so richtig.. verstehe das mit Auto it net.. hast du villt Skype oder icq ? Add mich in Skype : technoherz-
05/29/2011 22:28
Aleynacombi#7
05/29/2011 22:32
suiluJ.#8
Ich habe aber das System verändert D:
Ist nun viel einfacher geworden. old
Code:
$count_effect = 0 $count_id = 0 If (GUICtrlRead($PS) = 1) Then IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "0_old", "2000001") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "0_new", "2000008") IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "0_old", "20101") IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "0_new", "20107") $count_effect = 1 $count_id = 1 EndIf If (GUICtrlRead($PS) = 4) Then IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "0_old", "1") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "0_new", "1") IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "0_old", "1") IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "0_new", "1") EndIf If (GUICtrlRead($CS) = 1) Then IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "1_old", "2000002") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "1_new", "2000009") IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "1_old", "20201") IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "1_new", "20207") $count_effect = 2 $count_id = 2 EndIf If (GUICtrlRead($CS) = 4) Then IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "1_old", "1") IniWrite(@WindowsDir & "\IDChanger.ini", "ID", "1_new", "1") IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "1_old", "1") IniWrite(@WindowsDir & "\IDChanger.ini", "Effect", "1_new", "1") EndIf Code:
Func SetIds()
Start("IDChanger.ini")
Set("2000001","2000008",$PS,2,"20101","20107")
Set("2000002","2000009",$CS,2,"20201","20207")
End()
MsgBox(0, "Successfully changed", "The Options got saved", 2)
EndFunc ;==>
Code:
$File = ""
$Count_Ids = 0
$Count_Effects = 0
func Start($iniFile)
$File = $iniFile
FileDelete($File)
FileDelete("IDChanger.log")
FileWrite("IDChanger.log","Started to write the IDs")
EndFunc
func End()
IniWrite($File, "Effect", "Count",$Count_Effects)
IniWrite($File, "ID", "Count",$Count_Ids)
IniWrite($File, "Global", "Changed", "1")
IniWrite($File, "Global", "Autostart", "1")
FileWrite("IDChanger.log",@CRLF&"Ended up")
EndFunc
func Set($id_old,$id_new,$hCheckbox,$isEffect,$id_old2=0,$id_new2=0)
If GUICtrlRead($hCheckbox) = 1 Then
If $isEffect = 0 Then
AddId($id_new,$id_old)
FileWrite("IDChanger.log",@CRLF&"Mode 0 : "&$id_new& " -> "&$id_old)
Elseif $isEffect = 1 Then
AddEffect($id_new,$id_old)
FileWrite("IDChanger.log",@CRLF&"Mode 1 : "&$id_new& " -> "&$id_old)
Else
AddId($id_new,$id_old)
AddEffect($id_new2,$id_old2)
FileWrite("IDChanger.log",@CRLF&"Mode 2 : "&$id_new& " -> "&$id_old&@CRLF&$id_new& " -> "&$id_old)
endif
Else
FileWrite("IDChanger.log",@CRLF&"Delele")
RemoveId()
RemoveEffect()
EndIf
EndFunc
func AddId($oldid,$newid)
IniWrite($File, "ID",$Count_Ids&"_old", $oldid)
IniWrite($File, "ID",$Count_Ids&"_new", $newid)
$Count_Ids += 1
EndFunc
func AddEffect($oldeffect,$neweffect)
IniWrite($File, "Effect",$Count_Effects&"_old",$oldeffect)
IniWrite($File, "Effect",$Count_Effects&"_new",$neweffect)
$Count_Effects += 1
EndFunc
func RemoveId()
IniWrite($File, "ID",$Count_Ids&"_old", "1")
IniWrite($File, "ID",$Count_Ids&"_new", "1")
EndFunc
func RemoveEffect()
IniWrite($File, "Effect",$Count_Effects&"_old","1")
IniWrite($File, "Effect",$Count_Effects&"_new","1")
EndFunc
05/29/2011 23:01
Ezio_Auditore_da_Firenze#9
lol o.o also da find ich das alte system leichter benutze ja noch die erste version xD hab mir neue sets reingemacht und neue checkbox und so ging eigt mann muss sich nur anschauen wie die bereits von dir reingeschriebenen sachen aufgebaut sind dann kapiert man das schnell auch ohne ahnung davon zuhaben
05/29/2011 23:22
.DR@G0N-#10
ich frag mich warum das manche nicht verstehen , das ist doch voll einfach =o
05/29/2011 23:33
**★Garip★**#11
Echt niice :D Damit kann mann viel machen :awesome: :)
05/29/2011 23:36
.DR@G0N-#12
05/29/2011 23:47
**★Garip★**#13
Jeder Failt ma .. Aba Die meisten Kapiieren es Trozdem wie ich xDD Und ich kann ja jetzt z.B Bat zu katana machen Master set zu Gm set aber Effeckte Krieg ich nicht Hin @Dragon :D :awesome: Cytriik Goes Failed.. Bekomme beim Laden das Logo von Cytriik nicht Weg :D Bin jetz Offline Aku vom Lapii Leer :) *Müüüdee* Bis Morgen Dr@gon
05/30/2011 00:11
™Dai_Tenshi™#14
Bei mir ist das Lade intro von Cytriik auch da und bei mir funzt es beweis ist Dragon wir haben vorhin bischen Gm Duell gespielt xD das lade ding ka will net verschwinden aus welchen gründen auch imma xD
@Dragon ;) habe Chaser Probalitiy Up gemacht xD geht also Perfekt =O MFG ™Dai_Tenshi™
05/30/2011 01:01
Volltboon#15
um dieses problem zu lösen. gehe in den resource ordner dort müsste ein neuer ordner sein der dort nocht nicht war namens "_c" dieses ordner löschst du damit ist das intro beim start weg @thema wenn ich das richtig verstanden habe . ist der id changer open source und jeder kann ihn verändern wie er will ?
Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd. SEO by vBSEO ©2011, Crawlability, Inc. |