Talk:ITPT Settings

From Custom Mario Kart
Jump to navigation Jump to search

Hi Andy, in this moment I finished a series of tests. So I can generally (not exact, but in that direction) confirm the values for "settings 2". But what does the first table "defaults" mean?
Wiimm 15:35, 19 August 2011 (CEST)

Now I understand: You mean the settings combination 0,0? Is this right?
Wiimm 15:39, 19 August 2011 (CEST)
Yes, this is the default behavior when both values ​​are zero.
AndyK 17:26, 19 August 2011 (CEST)

Settings at offset 0x10

I have tested value 2. Nintendo uses this value in offroad parts and if the item routes are very close to off road. For example the the mud part of the factory use it. I have replaced this value by 0, but I can't find any difference (tested with red shells and bullet bill).
Wiimm 09:51, 10 September 2011 (CEST)

Settings at offset 0x12

Value 0xa is only used at the offroad ramp in Mario Circuit (Slot 2.1) and value 0xb at 2 places over the cliff at DK Mountain (Slot 8.3). I have replaced this value by 0, but I can't find any difference (tested with red shells and bullet bill).
Wiimm 09:51, 10 September 2011 (CEST)

bitwise OR and AND

bitwise 'A OR B' (A|B) means: set every bit, that is set in A OR B → 1|2 == 3; 3|5 == 7; 0x01|0x0a == 0x0b

bitwise 'A AND B' (A&B) means: set every bit, that is set in A AND B → 1&2 == 0; 3&5 == 1; 0x01&0x0a == 0

Wiimm 10:34, 15 April 2012 (UTC)