Quote:
Originally Posted by tomtinhte
2. I have a problem. exactly where I need to modify... how to decode? please help me! :confused:
|
Use -
[Only registered and activated users can see links. Click Here To Register...]
so right now, the code uses the value 65, so if you put in Float 65 into the converter I linked above you get 0x42820000 , It is written in Sets of 2, so I'll color them for you:
0x42820000
Now with that said. When used in Memory, It's inversed so in the code script,
you'll see a value that would say
00 00 82 42
so 00 00 82 42 = 65.
Say if you wanted a lower value like 50 seconds, if you punched in the value Float 50 and convert it to Hex, you get 0x42480000 which in CE Usage would be 00 00 48 42 , get it?
Just right click the script and hit Change Script and the Assemble window will appear, the first is the search, second is the relace, you should be able to do a CTRL+F for a find window and put in 00 00 82 42 and it should find it for you easily enough. Just swap out the values for the one you want and you should be good.
Goodluck.