Mysteryem

Zamiel's BoI:A Cheat Table + Player Height/Width scale

May 29th, 2016
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 222.37 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <CheatTable CheatEngineTableVersion="18">
  3. <CheatEntries>
  4. <CheatEntry>
  5. <ID>953</ID>
  6. <Description>"Check Game Version"</Description>
  7. <Options moHideChildren="1" moAllowManualCollapseAndExpand="1"/>
  8. <LastState Activated="0"/>
  9. <Color>80000008</Color>
  10. <VariableType>Auto Assembler Script</VariableType>
  11. <AssemblerScript>[ENABLE]
  12. aobscanmodule(AOB_Version,isaac-ng.exe,42 69 6E 64 69 6E 67 20 6F 66 20 49 73 61 61 63 3A 20 41 66 74 65 72 62 69 72 74 68 20 76)
  13. registersymbol(AOB_Version)
  14.  
  15. [DISABLE]
  16. unregistersymbol(AOB_Version)
  17.  
  18. </AssemblerScript>
  19. <CheatEntries>
  20. <CheatEntry>
  21. <ID>954</ID>
  22. <Description>"BoI:A Version"</Description>
  23. <LastState Activated="0" RealAddress="0158F49D"/>
  24. <Color>80000008</Color>
  25. <VariableType>String</VariableType>
  26. <Length>16</Length>
  27. <Unicode>0</Unicode>
  28. <ZeroTerminate>1</ZeroTerminate>
  29. <Address>AOB_Version+1D</Address>
  30. </CheatEntry>
  31. </CheatEntries>
  32. </CheatEntry>
  33. <CheatEntry>
  34. <ID>426</ID>
  35. <Description>"Search Game Structure"</Description>
  36. <Options moHideChildren="1"/>
  37. <LastState Activated="0"/>
  38. <Color>008000</Color>
  39. <VariableType>Auto Assembler Script</VariableType>
  40. <AssemblerScript>{ by HenryEx
  41. for The Binding of Isaac: Afterbirth
  42.  
  43. finds the base floor (and a whole lot of other stuff) pointer
  44. hopefully version-independent
  45. floor pointer location as of 20.11.2015: isaac-ng.exe+2E2634
  46. stat pointer location as of 20.11.2015: isaac-ng.exe+2E417C
  47. }
  48.  
  49. [ENABLE]
  50. aobscanmodule(AOB_pFloor,isaac-ng.exe,D9 5D * 8B 45 08 D9 00 D8 45 * D9 5D)
  51. aobscanmodule(AOB_pStats,isaac-ng.exe,8B 1D * * * * 8B 83 * * * * 8B C8 81 E1 01 00 00 80)
  52. alloc(pFloor,256)
  53. alloc(pStats,256)
  54. registersymbol(AOB_pFloor)
  55. registersymbol(pFloor)
  56. registersymbol(AOB_pStats)
  57. registersymbol(pStats)
  58. label(_BackF)
  59. label(_BackS)
  60. label(_ExitF)
  61. label(_ExitS)
  62.  
  63.  
  64. AOB_pFloor+3:
  65. jmp pFloor+C
  66. _BackF:
  67.  
  68. AOB_pStats+E:
  69. jmp pStats+10
  70. nop
  71. _BackS:
  72.  
  73.  
  74. pFloor:
  75. dd 0 // floor pointer
  76. dd 0 // item to display
  77. dd 0 // cur. item addr
  78.  
  79. // Dumping Code
  80. push ebx
  81. mov [pFloor],eax
  82. cmp byte ptr [eax],0 // is in-game?
  83. jz short _ExitF
  84.  
  85. // Do item display stuff
  86. mov ebx,[pFloor+4] // get current item ID
  87. cmp ebx,0
  88. je +8 // skip next 2 lines
  89. cmp ebx,#441 // max. item id
  90. jbe +A // skip next 3 lines
  91.  
  92. xor ebx,ebx
  93. mov [pFloor+8],ebx // null pointer
  94. jmp short _ExitF
  95.  
  96. mov eax,[eax+B7D8]
  97. mov eax,[eax]
  98. lea ebx,[eax+ebx*4+1DA4] // get item addr
  99. mov [pFloor+8],ebx // store addr of current item
  100.  
  101. _ExitF:
  102. pop ebx
  103. mov eax,[ebp+08]
  104. fld dword ptr [eax]
  105. jmp _BackF
  106.  
  107.  
  108. pStats:
  109. dd 0 // stats pointer
  110. dd 0 // secret to unlock
  111. dd 0 // cur. secret addr
  112. dd 0 // secrets active?
  113.  
  114. // Dumping Code
  115. mov [pStats],ebx
  116. push eax
  117. cmp byte ptr [pStats+C],0 // do secrets?
  118. je short _ExitS
  119.  
  120. // Do secrets code
  121.  
  122. mov eax,[pStats+4]
  123. cmp eax,0
  124. je +9 // skip next 2 lines
  125. cmp eax,#276 // max. secret num
  126. jbe +A // skip next 3 lines
  127.  
  128. xor eax,eax
  129. mov [pStats+8],eax
  130. jmp short _ExitS
  131.  
  132. lea eax,[ebx+eax+4C] // 4 bytes
  133. mov [pStats+8],eax // store addr of current secret
  134. cmp byte ptr [pStats+D],1
  135. jne short _ExitS // skip next 2 lines
  136.  
  137. mov byte ptr [eax],1
  138. mov byte ptr [pStats+D],0
  139.  
  140. _ExitS:
  141. pop eax
  142. and ecx,80000001
  143. jmp _BackS
  144.  
  145. [DISABLE]
  146.  
  147. AOB_pFloor+3:
  148. mov eax,[ebp+08]
  149. fld dword ptr [eax]
  150. // db 8B 45 08 D9 00
  151.  
  152. AOB_pStats+E:
  153. and ecx,80000001
  154. // db 81 E1 01 00 00 80
  155.  
  156. unregistersymbol(AOB_pFloor)
  157. unregistersymbol(pFloor)
  158. unregistersymbol(AOB_pStats)
  159. unregistersymbol(pStats)
  160. dealloc(pFloor)
  161. dealloc(pStats)
  162.  
  163. {
  164. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+295B
  165.  
  166. "isaac-ng.exe"+2925: 89 45 D8 - mov [ebp-28],eax
  167. "isaac-ng.exe"+2928: A1 00 42 FB 00 - mov eax,[isaac-ng.exe+2E4200]
  168. "isaac-ng.exe"+292D: 89 45 DC - mov [ebp-24],eax
  169. "isaac-ng.exe"+2930: A1 34 26 FB 00 - mov eax,[isaac-ng.exe+2E2634]
  170. "isaac-ng.exe"+2935: 85 C0 - test eax,eax
  171. "isaac-ng.exe"+2937: 74 12 - je isaac-ng.exe+295B
  172. "isaac-ng.exe"+2939: D9 80 2C 4D 13 00 - fld dword ptr [eax+00134CE0]
  173. "isaac-ng.exe"+293F: D9 5D D8 - fstp dword ptr [ebp-28]
  174. "isaac-ng.exe"+2942: D9 80 30 4D 13 00 - fld dword ptr [eax+00134CE4]
  175. "isaac-ng.exe"+2948: D9 5D DC - fstp dword ptr [ebp-24]
  176. // ---------- INJECTING HERE ----------
  177. "isaac-ng.exe"+294B: 8B 45 08 - mov eax,[ebp+08]
  178. "isaac-ng.exe"+294E: D9 00 - fld dword ptr [eax]
  179. // ---------- DONE INJECTING ----------
  180. "isaac-ng.exe"+2950: D8 45 D8 - fadd dword ptr [ebp-28]
  181. "isaac-ng.exe"+2953: D9 5D D0 - fstp dword ptr [ebp-30]
  182. "isaac-ng.exe"+2956: D9 40 04 - fld dword ptr [eax+04]
  183. "isaac-ng.exe"+2959: 8B 45 10 - mov eax,[ebp+10]
  184. "isaac-ng.exe"+295C: D8 45 DC - fadd dword ptr [ebp-24]
  185. "isaac-ng.exe"+295F: D9 5D D4 - fstp dword ptr [ebp-2C]
  186. "isaac-ng.exe"+2962: D9 45 D0 - fld dword ptr [ebp-30]
  187. "isaac-ng.exe"+2965: D9 C0 - fld st(0)
  188. "isaac-ng.exe"+2967: D8 45 E0 - fadd dword ptr [ebp-20]
  189. "isaac-ng.exe"+296A: D9 5D D8 - fstp dword ptr [ebp-28]
  190. }
  191.  
  192. {
  193. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+18D048
  194.  
  195. "isaac-ng.exe"+18BE9E: CC - int 3
  196. "isaac-ng.exe"+18BE9F: CC - int 3
  197. "isaac-ng.exe"+18BEA0: 55 - push ebp
  198. "isaac-ng.exe"+18BEA1: 8B EC - mov ebp,esp
  199. "isaac-ng.exe"+18BEA3: 83 E4 F8 - and esp,-08
  200. "isaac-ng.exe"+18BEA6: 83 EC 14 - sub esp,14
  201. "isaac-ng.exe"+18BEA9: 53 - push ebx
  202. "isaac-ng.exe"+18BEAA: 8B 1D 7C 41 07 01 - mov ebx,[isaac-ng.exe+2E417C]
  203. "isaac-ng.exe"+18BEB0: 8B 83 5C 30 04 00 - mov eax,[ebx+0004305C]
  204. "isaac-ng.exe"+18BEB6: 8B C8 - mov ecx,eax
  205. // ---------- INJECTING HERE ----------
  206. "isaac-ng.exe"+18BEB8: 81 E1 01 00 00 80 - and ecx,80000001
  207. // ---------- DONE INJECTING ----------
  208. "isaac-ng.exe"+18BEBE: 56 - push esi
  209. "isaac-ng.exe"+18BEBF: 57 - push edi
  210. "isaac-ng.exe"+18BEC0: 89 5C 24 0C - mov [esp+0C],ebx
  211. "isaac-ng.exe"+18BEC4: 79 05 - jns isaac-ng.exe+18D05B
  212. "isaac-ng.exe"+18BEC6: 49 - dec ecx
  213. "isaac-ng.exe"+18BEC7: 83 C9 FE - or ecx,-02
  214. "isaac-ng.exe"+18BECA: 41 - inc ecx
  215. "isaac-ng.exe"+18BECB: 83 F9 01 - cmp ecx,01
  216. "isaac-ng.exe"+18BECE: 75 2D - jne isaac-ng.exe+18D08D
  217. "isaac-ng.exe"+18BED0: 80 BB 00 26 04 00 00 - cmp byte ptr [ebx+00042600],00
  218. }
  219. </AssemblerScript>
  220. <CheatEntries>
  221. <CheatEntry>
  222. <ID>450</ID>
  223. <Description>"Player 1"</Description>
  224. <Options moHideChildren="1"/>
  225. <LastState Value="" Activated="1" RealAddress="00000000"/>
  226. <Color>FF0000</Color>
  227. <GroupHeader>1</GroupHeader>
  228. <CheatEntries>
  229. <CheatEntry>
  230. <ID>430</ID>
  231. <Description>"Hearts"</Description>
  232. <Options moHideChildren="1"/>
  233. <LastState Value="" Activated="0" RealAddress="00000000"/>
  234. <Color>80000008</Color>
  235. <GroupHeader>1</GroupHeader>
  236. <CheatEntries>
  237. <CheatEntry>
  238. <ID>449</ID>
  239. <Description>"Max Hearts"</Description>
  240. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  241. <Color>80000008</Color>
  242. <VariableType>4 Bytes</VariableType>
  243. <Address>pFloor</Address>
  244. <Offsets>
  245. <Offset>1B30</Offset>
  246. <Offset>0</Offset>
  247. <Offset>B7D8</Offset>
  248. </Offsets>
  249. </CheatEntry>
  250. <CheatEntry>
  251. <ID>455</ID>
  252. <Description>"Red Hearts"</Description>
  253. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  254. <Color>80000008</Color>
  255. <VariableType>4 Bytes</VariableType>
  256. <Address>pFloor</Address>
  257. <Offsets>
  258. <Offset>1B34</Offset>
  259. <Offset>0</Offset>
  260. <Offset>B7D8</Offset>
  261. </Offsets>
  262. </CheatEntry>
  263. <CheatEntry>
  264. <ID>454</ID>
  265. <Description>"Eternal Heart"</Description>
  266. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:No
  267. 1:Yes
  268. </DropDownList>
  269. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  270. <Color>80000008</Color>
  271. <VariableType>Byte</VariableType>
  272. <Address>pFloor</Address>
  273. <Offsets>
  274. <Offset>1B38</Offset>
  275. <Offset>0</Offset>
  276. <Offset>B7D8</Offset>
  277. </Offsets>
  278. </CheatEntry>
  279. <CheatEntry>
  280. <ID>453</ID>
  281. <Description>"Soul Hearts"</Description>
  282. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  283. <Color>80000008</Color>
  284. <VariableType>4 Bytes</VariableType>
  285. <Address>pFloor</Address>
  286. <Offsets>
  287. <Offset>1B3C</Offset>
  288. <Offset>0</Offset>
  289. <Offset>B7D8</Offset>
  290. </Offsets>
  291. </CheatEntry>
  292. <CheatEntry>
  293. <ID>452</ID>
  294. <Description>"Black Hearts"</Description>
  295. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  296. <Color>80000008</Color>
  297. <VariableType>Binary</VariableType>
  298. <BitStart>0</BitStart>
  299. <BitLength>12</BitLength>
  300. <ShowAsBinary>0</ShowAsBinary>
  301. <Address>pFloor</Address>
  302. <Offsets>
  303. <Offset>1B40</Offset>
  304. <Offset>0</Offset>
  305. <Offset>B7D8</Offset>
  306. </Offsets>
  307. </CheatEntry>
  308. <CheatEntry>
  309. <ID>927</ID>
  310. <Description>"Gold Hearts"</Description>
  311. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  312. <Color>80000008</Color>
  313. <VariableType>4 Bytes</VariableType>
  314. <Address>pFloor</Address>
  315. <Offsets>
  316. <Offset>4D3C</Offset>
  317. <Offset>0</Offset>
  318. <Offset>B7D8</Offset>
  319. </Offsets>
  320. </CheatEntry>
  321. <CheatEntry>
  322. <ID>451</ID>
  323. <Description>"Dead Cat Lives"</Description>
  324. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  325. <Color>80000008</Color>
  326. <VariableType>4 Bytes</VariableType>
  327. <Address>pFloor</Address>
  328. <Offsets>
  329. <Offset>1EE8</Offset>
  330. <Offset>0</Offset>
  331. <Offset>B7D8</Offset>
  332. </Offsets>
  333. </CheatEntry>
  334. </CheatEntries>
  335. </CheatEntry>
  336. <CheatEntry>
  337. <ID>456</ID>
  338. <Description>"Pickup Items"</Description>
  339. <Options moHideChildren="1"/>
  340. <LastState Value="" Activated="0" RealAddress="00000000"/>
  341. <Color>80000008</Color>
  342. <GroupHeader>1</GroupHeader>
  343. <CheatEntries>
  344. <CheatEntry>
  345. <ID>461</ID>
  346. <Description>"Coins"</Description>
  347. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  348. <Color>80000008</Color>
  349. <VariableType>4 Bytes</VariableType>
  350. <Address>pFloor</Address>
  351. <Offsets>
  352. <Offset>1B58</Offset>
  353. <Offset>0</Offset>
  354. <Offset>B7D8</Offset>
  355. </Offsets>
  356. </CheatEntry>
  357. <CheatEntry>
  358. <ID>462</ID>
  359. <Description>"Bombs"</Description>
  360. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  361. <Color>80000008</Color>
  362. <VariableType>4 Bytes</VariableType>
  363. <Address>pFloor</Address>
  364. <Offsets>
  365. <Offset>1B54</Offset>
  366. <Offset>0</Offset>
  367. <Offset>B7D8</Offset>
  368. </Offsets>
  369. </CheatEntry>
  370. <CheatEntry>
  371. <ID>463</ID>
  372. <Description>"Keys"</Description>
  373. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  374. <Color>80000008</Color>
  375. <VariableType>4 Bytes</VariableType>
  376. <Address>pFloor</Address>
  377. <Offsets>
  378. <Offset>1B4C</Offset>
  379. <Offset>0</Offset>
  380. <Offset>B7D8</Offset>
  381. </Offsets>
  382. </CheatEntry>
  383. <CheatEntry>
  384. <ID>464</ID>
  385. <Description>"Gold Key"</Description>
  386. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">1:Yes
  387. 0:No
  388. </DropDownList>
  389. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  390. <Color>80000008</Color>
  391. <VariableType>Byte</VariableType>
  392. <Address>pFloor</Address>
  393. <Offsets>
  394. <Offset>1B50</Offset>
  395. <Offset>0</Offset>
  396. <Offset>B7D8</Offset>
  397. </Offsets>
  398. </CheatEntry>
  399. <CheatEntry>
  400. <ID>898</ID>
  401. <Description>"Gold Bomb"</Description>
  402. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">1:Yes
  403. 0:No
  404. </DropDownList>
  405. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  406. <Color>80000008</Color>
  407. <VariableType>Byte</VariableType>
  408. <Address>pFloor</Address>
  409. <Offsets>
  410. <Offset>1B51</Offset>
  411. <Offset>0</Offset>
  412. <Offset>B7D8</Offset>
  413. </Offsets>
  414. </CheatEntry>
  415. </CheatEntries>
  416. </CheatEntry>
  417. <CheatEntry>
  418. <ID>465</ID>
  419. <Description>"Cards &amp; Pills"</Description>
  420. <Options moHideChildren="1"/>
  421. <LastState Value="" Activated="0" RealAddress="00000000"/>
  422. <Color>80000008</Color>
  423. <GroupHeader>1</GroupHeader>
  424. <CheatEntries>
  425. <CheatEntry>
  426. <ID>470</ID>
  427. <Description>"Type #1"</Description>
  428. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Pills
  429. 1:Cards
  430. </DropDownList>
  431. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  432. <Color>80000008</Color>
  433. <VariableType>Binary</VariableType>
  434. <BitStart>0</BitStart>
  435. <BitLength>1</BitLength>
  436. <ShowAsBinary>0</ShowAsBinary>
  437. <Address>pFloor</Address>
  438. <Offsets>
  439. <Offset>4BF8</Offset>
  440. <Offset>0</Offset>
  441. <Offset>B7D8</Offset>
  442. </Offsets>
  443. <Hotkeys>
  444. <Hotkey>
  445. <Action>Set Value</Action>
  446. <Keys>
  447. <Key>111</Key>
  448. </Keys>
  449. <Value>0</Value>
  450. <ID>0</ID>
  451. </Hotkey>
  452. <Hotkey>
  453. <Action>Set Value</Action>
  454. <Keys>
  455. <Key>106</Key>
  456. </Keys>
  457. <Value>1</Value>
  458. <ID>1</ID>
  459. </Hotkey>
  460. </Hotkeys>
  461. </CheatEntry>
  462. <CheatEntry>
  463. <ID>473</ID>
  464. <Description>"Card/Pill #1"</Description>
  465. <DropDownList DisplayValueAsItem="1">0:Nothing
  466. 1:O The Fool - Where your journey begins [teleport to starting room]
  467. 2:I The Magician - May you never miss your goal [homing tears for current room]
  468. 3:II The High Priestess - Mother is watching you [hit random enemy, hits Isaac if none]
  469. 4:III The Empress - May your rage bring power [+damage and speed in current room]
  470. 5:IV The Emperor - Challenge me! [teleport to boss]
  471. 6:V The Hierophant - Two prayers for the lost [spawn 2 soul hearts]
  472. 7:VI The Lovers - May you prosper and be in good health [spawn 2 hearts]
  473. 8:VII The Chariot - May nothing stand before you [temporary invincibility]
  474. 9:VIII Justice - May your future become balanced [spawn 1 varying key, heart, bomb, coin]
  475. 10:IX The Hermit - May you see what life has to offer [teleport to shop]
  476. 11:X Wheel of Fortune - Spin the wheel of destiny [spawn fortune telling or slots machine]
  477. 12:XI Strength - May your power bring rage [+1 stats and size for current room]
  478. 13:XII The Hanged Man - May you find enlightenment [flight for current room]
  479. 14:XIII Death - Lay waste to all that oppose you [damage all enemies in current room]
  480. 15:XIV Temperance - May you be pure in heart [spawn blood donation machine]
  481. 16:XV The Devil - Revel in the power of your darkness [+damage in current room]
  482. 17:XVI The Tower - Destruction brings creation [spawn troll bombs in current room]
  483. 18:XVII The Stars - May you find what you desire [teleport to item room]
  484. 19:XVIII The Moon - May you find all you have lost [teleport to current floor's secret room]
  485. 20:XIX The Sun - May the light heal and enlighten you [full heal, damage enemies, show map]
  486. 21:XX Judgement - Judge lest ye be judged [spawn a beggar/demon beggar/key beggar]
  487. 22:XXI The World - Open your eyes and see [reveal entire map and icon rooms]
  488. 23:2 of Clubs - Item multiplier [2x current bombs; +2 if none]
  489. 24:2 of Diamonds - Item multiplier [2x current coins; +2 if none]
  490. 25:2 of Spades - Item multiplier [2x current keys; +2 if none]
  491. 26:2 of Hearts - Item multiplier [2x current hearts; if at half health recovers 2]
  492. 27:Joker, The - ??? [teleport to angel/devil room]
  493. 28:Hagalaz - Destruction [destroy current room's rocks, poops, and skulls]
  494. 29:Jera - Abundance [double pickups in current room]
  495. 30:Ehwaz - Passage [create a trapdoor]
  496. 31:Dagaz - Purity [remove floor's curse; 1 soul heart if none]
  497. 32:Ansuz - Vision [reveal entire map, secrets, icon rooms]
  498. 33:Perthro - Change [change pedestal item]
  499. 34:Berkano - Companionship [summon 3 blue spiders + 3 blue flies]
  500. 35:Algiz - Resistance [temporary invincibility, slightly longer]
  501. 36:Blank Rune - ??? [Random Rune Effect]
  502. 37:Chaos Card - ??? [throws card in front of Isaac, 1hit kill ANYTHING or open door]
  503. 38:Credit Card - Charge it! [current floor's shop/devil/angel room deals are free]
  504. 39:Rules Card - ??? [show a cryptic message, hinting to unlocking secrets]
  505. 40:Card Against Humanity, A - Something stinks… [fill entire room with poop]
  506. 41:Suicide King - A true ending? [off yourself, spawn 1 pedestal item and some pickups]
  507. 42:Get Out Of Jail Free Card - Open sesame [opens all doors]
  508. 43:? Card - Double active [uses current use Item for free]
  509. 44:Dice Shard - D6 + D20
  510. 45:Emergency Contact - Help from above
  511. </DropDownList>
  512. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  513. <Color>80000008</Color>
  514. <VariableType>4 Bytes</VariableType>
  515. <Address>pFloor</Address>
  516. <Offsets>
  517. <Offset>4BF4</Offset>
  518. <Offset>0</Offset>
  519. <Offset>B7D8</Offset>
  520. </Offsets>
  521. </CheatEntry>
  522. <CheatEntry>
  523. <ID>472</ID>
  524. <Description>"Type #2"</Description>
  525. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Pills
  526. 1:Cards
  527. </DropDownList>
  528. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  529. <Color>80000008</Color>
  530. <VariableType>Binary</VariableType>
  531. <BitStart>0</BitStart>
  532. <BitLength>1</BitLength>
  533. <ShowAsBinary>0</ShowAsBinary>
  534. <Address>pFloor</Address>
  535. <Offsets>
  536. <Offset>4C00</Offset>
  537. <Offset>0</Offset>
  538. <Offset>B7D8</Offset>
  539. </Offsets>
  540. </CheatEntry>
  541. <CheatEntry>
  542. <ID>471</ID>
  543. <Description>"Card/Pill #2"</Description>
  544. <DropDownList DisplayValueAsItem="1">0:Nothing
  545. 1:O The Fool - Where your journey begins [teleport to starting room]
  546. 2:I The Magician - May you never miss your goal [homing tears for current room]
  547. 3:II The High Priestess - Mother is watching you [hit random enemy, hits Isaac if none]
  548. 4:III The Empress - May your rage bring power [+damage and speed in current room]
  549. 5:IV The Emperor - Challenge me! [teleport to boss]
  550. 6:V The Hierophant - Two prayers for the lost [spawn 2 soul hearts]
  551. 7:VI The Lovers - May you prosper and be in good health [spawn 2 hearts]
  552. 8:VII The Chariot - May nothing stand before you [temporary invincibility]
  553. 9:VIII Justice - May your future become balanced [spawn 1 varying key, heart, bomb, coin]
  554. 10:IX The Hermit - May you see what life has to offer [teleport to shop]
  555. 11:X Wheel of Fortune - Spin the wheel of destiny [spawn fortune telling or slots machine]
  556. 12:XI Strength - May your power bring rage [+1 stats and size for current room]
  557. 13:XII The Hanged Man - May you find enlightenment [flight for current room]
  558. 14:XIII Death - Lay waste to all that oppose you [damage all enemies in current room]
  559. 15:XIV Temperance - May you be pure in heart [spawn blood donation machine]
  560. 16:XV The Devil - Revel in the power of your darkness [+damage in current room]
  561. 17:XVI The Tower - Destruction brings creation [spawn troll bombs in current room]
  562. 18:XVII The Stars - May you find what you desire [teleport to item room]
  563. 19:XVIII The Moon - May you find all you have lost [teleport to current floor's secret room]
  564. 20:XIX The Sun - May the light heal and enlighten you [full heal, damage enemies, show map]
  565. 21:XX Judgement - Judge lest ye be judged [spawn a beggar/demon beggar/key beggar]
  566. 22:XXI The World - Open your eyes and see [reveal entire map and icon rooms]
  567. 23:2 of Clubs - Item multiplier [2x current bombs; +2 if none]
  568. 24:2 of Diamonds - Item multiplier [2x current coins; +2 if none]
  569. 25:2 of Spades - Item multiplier [2x current keys; +2 if none]
  570. 26:2 of Hearts - Item multiplier [2x current hearts; if at half health recovers 2]
  571. 27:Joker, The - ??? [teleport to angel/devil room]
  572. 28:Hagalaz - Destruction [destroy current room's rocks, poops, and skulls]
  573. 29:Jera - Abundance [double pickups in current room]
  574. 30:Ehwaz - Passage [create a trapdoor]
  575. 31:Dagaz - Purity [remove floor's curse; 1 soul heart if none]
  576. 32:Ansuz - Vision [reveal entire map, secrets, icon rooms]
  577. 33:Perthro - Change [change pedestal item]
  578. 34:Berkano - Companionship [summon 3 blue spiders + 3 blue flies]
  579. 35:Algiz - Resistance [temporary invincibility, slightly longer]
  580. 36:Blank Rune - ??? [Random Rune Effect]
  581. 37:Chaos Card - ??? [throws card in front of Isaac, 1hit kill ANYTHING or open door]
  582. 38:Credit Card - Charge it! [current floor's shop/devil/angel room deals are free]
  583. 39:Rules Card - ??? [show a cryptic message, hinting to unlocking secrets]
  584. 40:Card Against Humanity, A - Something stinks… [fill entire room with poop]
  585. 41:Suicide King - A true ending? [off yourself, spawn 1 pedestal item and some pickups]
  586. 42:Get Out Of Jail Free Card - Open sesame [opens all doors]
  587. 43:? Card - Double active [uses current use Item for free]
  588. 44:Dice Shard - D6 + D20
  589. 45:Emergency Contact - Help from above
  590. </DropDownList>
  591. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  592. <Color>80000008</Color>
  593. <VariableType>4 Bytes</VariableType>
  594. <Address>pFloor</Address>
  595. <Offsets>
  596. <Offset>4BFC</Offset>
  597. <Offset>0</Offset>
  598. <Offset>B7D8</Offset>
  599. </Offsets>
  600. </CheatEntry>
  601. <CheatEntry>
  602. <ID>800</ID>
  603. <Description>"Consumed Pills count"</Description>
  604. <Options moHideChildren="1"/>
  605. <LastState Value="" Activated="0" RealAddress="00000000"/>
  606. <Color>80000008</Color>
  607. <GroupHeader>1</GroupHeader>
  608. <CheatEntries>
  609. <CheatEntry>
  610. <ID>801</ID>
  611. <Description>"Bad Gas"</Description>
  612. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  613. <ShowAsSigned>1</ShowAsSigned>
  614. <Color>80000008</Color>
  615. <VariableType>4 Bytes</VariableType>
  616. <Address>pFloor</Address>
  617. <Offsets>
  618. <Offset>248C</Offset>
  619. <Offset>0</Offset>
  620. <Offset>B7D8</Offset>
  621. </Offsets>
  622. </CheatEntry>
  623. <CheatEntry>
  624. <ID>805</ID>
  625. <Description>"Bad Trip"</Description>
  626. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  627. <ShowAsSigned>1</ShowAsSigned>
  628. <Color>80000008</Color>
  629. <VariableType>4 Bytes</VariableType>
  630. <Address>pFloor</Address>
  631. <Offsets>
  632. <Offset>2490</Offset>
  633. <Offset>0</Offset>
  634. <Offset>B7D8</Offset>
  635. </Offsets>
  636. </CheatEntry>
  637. <CheatEntry>
  638. <ID>804</ID>
  639. <Description>"Balls of Steel"</Description>
  640. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  641. <ShowAsSigned>1</ShowAsSigned>
  642. <Color>80000008</Color>
  643. <VariableType>4 Bytes</VariableType>
  644. <Address>pFloor</Address>
  645. <Offsets>
  646. <Offset>2494</Offset>
  647. <Offset>0</Offset>
  648. <Offset>B7D8</Offset>
  649. </Offsets>
  650. </CheatEntry>
  651. <CheatEntry>
  652. <ID>811</ID>
  653. <Description>"Bombs Are Key"</Description>
  654. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  655. <ShowAsSigned>1</ShowAsSigned>
  656. <Color>80000008</Color>
  657. <VariableType>4 Bytes</VariableType>
  658. <Address>pFloor</Address>
  659. <Offsets>
  660. <Offset>2498</Offset>
  661. <Offset>0</Offset>
  662. <Offset>B7D8</Offset>
  663. </Offsets>
  664. </CheatEntry>
  665. <CheatEntry>
  666. <ID>810</ID>
  667. <Description>"Explosive Diarrhea"</Description>
  668. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  669. <ShowAsSigned>1</ShowAsSigned>
  670. <Color>80000008</Color>
  671. <VariableType>4 Bytes</VariableType>
  672. <Address>pFloor</Address>
  673. <Offsets>
  674. <Offset>249C</Offset>
  675. <Offset>0</Offset>
  676. <Offset>B7D8</Offset>
  677. </Offsets>
  678. </CheatEntry>
  679. <CheatEntry>
  680. <ID>809</ID>
  681. <Description>"Full Health"</Description>
  682. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  683. <ShowAsSigned>1</ShowAsSigned>
  684. <Color>80000008</Color>
  685. <VariableType>4 Bytes</VariableType>
  686. <Address>pFloor</Address>
  687. <Offsets>
  688. <Offset>24A0</Offset>
  689. <Offset>0</Offset>
  690. <Offset>B7D8</Offset>
  691. </Offsets>
  692. </CheatEntry>
  693. <CheatEntry>
  694. <ID>808</ID>
  695. <Description>"Health Down"</Description>
  696. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  697. <ShowAsSigned>1</ShowAsSigned>
  698. <Color>80000008</Color>
  699. <VariableType>4 Bytes</VariableType>
  700. <Address>pFloor</Address>
  701. <Offsets>
  702. <Offset>24A4</Offset>
  703. <Offset>0</Offset>
  704. <Offset>B7D8</Offset>
  705. </Offsets>
  706. </CheatEntry>
  707. <CheatEntry>
  708. <ID>807</ID>
  709. <Description>"Health Up"</Description>
  710. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  711. <ShowAsSigned>1</ShowAsSigned>
  712. <Color>80000008</Color>
  713. <VariableType>4 Bytes</VariableType>
  714. <Address>pFloor</Address>
  715. <Offsets>
  716. <Offset>24A8</Offset>
  717. <Offset>0</Offset>
  718. <Offset>B7D8</Offset>
  719. </Offsets>
  720. </CheatEntry>
  721. <CheatEntry>
  722. <ID>806</ID>
  723. <Description>"I Found Pills"</Description>
  724. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  725. <ShowAsSigned>1</ShowAsSigned>
  726. <Color>80000008</Color>
  727. <VariableType>4 Bytes</VariableType>
  728. <Address>pFloor</Address>
  729. <Offsets>
  730. <Offset>24AC</Offset>
  731. <Offset>0</Offset>
  732. <Offset>B7D8</Offset>
  733. </Offsets>
  734. </CheatEntry>
  735. <CheatEntry>
  736. <ID>815</ID>
  737. <Description>"Puberty"</Description>
  738. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  739. <ShowAsSigned>1</ShowAsSigned>
  740. <Color>80000008</Color>
  741. <VariableType>4 Bytes</VariableType>
  742. <Address>pFloor</Address>
  743. <Offsets>
  744. <Offset>24B0</Offset>
  745. <Offset>0</Offset>
  746. <Offset>B7D8</Offset>
  747. </Offsets>
  748. </CheatEntry>
  749. <CheatEntry>
  750. <ID>814</ID>
  751. <Description>"Pretty Fly"</Description>
  752. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  753. <ShowAsSigned>1</ShowAsSigned>
  754. <Color>80000008</Color>
  755. <VariableType>4 Bytes</VariableType>
  756. <Address>pFloor</Address>
  757. <Offsets>
  758. <Offset>24B4</Offset>
  759. <Offset>0</Offset>
  760. <Offset>B7D8</Offset>
  761. </Offsets>
  762. </CheatEntry>
  763. <CheatEntry>
  764. <ID>813</ID>
  765. <Description>"Range Down"</Description>
  766. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  767. <ShowAsSigned>1</ShowAsSigned>
  768. <Color>80000008</Color>
  769. <VariableType>4 Bytes</VariableType>
  770. <Address>pFloor</Address>
  771. <Offsets>
  772. <Offset>24B8</Offset>
  773. <Offset>0</Offset>
  774. <Offset>B7D8</Offset>
  775. </Offsets>
  776. </CheatEntry>
  777. <CheatEntry>
  778. <ID>812</ID>
  779. <Description>"Range Up"</Description>
  780. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  781. <ShowAsSigned>1</ShowAsSigned>
  782. <Color>80000008</Color>
  783. <VariableType>4 Bytes</VariableType>
  784. <Address>pFloor</Address>
  785. <Offsets>
  786. <Offset>24BC</Offset>
  787. <Offset>0</Offset>
  788. <Offset>B7D8</Offset>
  789. </Offsets>
  790. </CheatEntry>
  791. <CheatEntry>
  792. <ID>816</ID>
  793. <Description>"Speed Down"</Description>
  794. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  795. <ShowAsSigned>1</ShowAsSigned>
  796. <Color>80000008</Color>
  797. <VariableType>4 Bytes</VariableType>
  798. <Address>pFloor</Address>
  799. <Offsets>
  800. <Offset>24C0</Offset>
  801. <Offset>0</Offset>
  802. <Offset>B7D8</Offset>
  803. </Offsets>
  804. </CheatEntry>
  805. <CheatEntry>
  806. <ID>803</ID>
  807. <Description>"Speed Up"</Description>
  808. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  809. <ShowAsSigned>1</ShowAsSigned>
  810. <Color>80000008</Color>
  811. <VariableType>4 Bytes</VariableType>
  812. <Address>pFloor</Address>
  813. <Offsets>
  814. <Offset>24C4</Offset>
  815. <Offset>0</Offset>
  816. <Offset>B7D8</Offset>
  817. </Offsets>
  818. </CheatEntry>
  819. <CheatEntry>
  820. <ID>819</ID>
  821. <Description>"Tears Down"</Description>
  822. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  823. <ShowAsSigned>1</ShowAsSigned>
  824. <Color>80000008</Color>
  825. <VariableType>4 Bytes</VariableType>
  826. <Address>pFloor</Address>
  827. <Offsets>
  828. <Offset>24C8</Offset>
  829. <Offset>0</Offset>
  830. <Offset>B7D8</Offset>
  831. </Offsets>
  832. </CheatEntry>
  833. <CheatEntry>
  834. <ID>818</ID>
  835. <Description>"Tears Up"</Description>
  836. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  837. <ShowAsSigned>1</ShowAsSigned>
  838. <Color>80000008</Color>
  839. <VariableType>4 Bytes</VariableType>
  840. <Address>pFloor</Address>
  841. <Offsets>
  842. <Offset>24CC</Offset>
  843. <Offset>0</Offset>
  844. <Offset>B7D8</Offset>
  845. </Offsets>
  846. </CheatEntry>
  847. <CheatEntry>
  848. <ID>817</ID>
  849. <Description>"Luck Down"</Description>
  850. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  851. <ShowAsSigned>1</ShowAsSigned>
  852. <Color>80000008</Color>
  853. <VariableType>4 Bytes</VariableType>
  854. <Address>pFloor</Address>
  855. <Offsets>
  856. <Offset>24D0</Offset>
  857. <Offset>0</Offset>
  858. <Offset>B7D8</Offset>
  859. </Offsets>
  860. </CheatEntry>
  861. <CheatEntry>
  862. <ID>802</ID>
  863. <Description>"Luck Up"</Description>
  864. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  865. <ShowAsSigned>1</ShowAsSigned>
  866. <Color>80000008</Color>
  867. <VariableType>4 Bytes</VariableType>
  868. <Address>pFloor</Address>
  869. <Offsets>
  870. <Offset>24D4</Offset>
  871. <Offset>0</Offset>
  872. <Offset>B7D8</Offset>
  873. </Offsets>
  874. </CheatEntry>
  875. <CheatEntry>
  876. <ID>824</ID>
  877. <Description>"Telepills"</Description>
  878. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  879. <ShowAsSigned>1</ShowAsSigned>
  880. <Color>80000008</Color>
  881. <VariableType>4 Bytes</VariableType>
  882. <Address>pFloor</Address>
  883. <Offsets>
  884. <Offset>24D8</Offset>
  885. <Offset>0</Offset>
  886. <Offset>B7D8</Offset>
  887. </Offsets>
  888. </CheatEntry>
  889. <CheatEntry>
  890. <ID>823</ID>
  891. <Description>"48 Hour Energy"</Description>
  892. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  893. <ShowAsSigned>1</ShowAsSigned>
  894. <Color>80000008</Color>
  895. <VariableType>4 Bytes</VariableType>
  896. <Address>pFloor</Address>
  897. <Offsets>
  898. <Offset>24DC</Offset>
  899. <Offset>0</Offset>
  900. <Offset>B7D8</Offset>
  901. </Offsets>
  902. </CheatEntry>
  903. <CheatEntry>
  904. <ID>822</ID>
  905. <Description>"Hematemesis"</Description>
  906. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  907. <ShowAsSigned>1</ShowAsSigned>
  908. <Color>80000008</Color>
  909. <VariableType>4 Bytes</VariableType>
  910. <Address>pFloor</Address>
  911. <Offsets>
  912. <Offset>24E0</Offset>
  913. <Offset>0</Offset>
  914. <Offset>B7D8</Offset>
  915. </Offsets>
  916. </CheatEntry>
  917. <CheatEntry>
  918. <ID>821</ID>
  919. <Description>"Paralysis"</Description>
  920. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  921. <ShowAsSigned>1</ShowAsSigned>
  922. <Color>80000008</Color>
  923. <VariableType>4 Bytes</VariableType>
  924. <Address>pFloor</Address>
  925. <Offsets>
  926. <Offset>24E4</Offset>
  927. <Offset>0</Offset>
  928. <Offset>B7D8</Offset>
  929. </Offsets>
  930. </CheatEntry>
  931. <CheatEntry>
  932. <ID>820</ID>
  933. <Description>"I can see forever!"</Description>
  934. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  935. <ShowAsSigned>1</ShowAsSigned>
  936. <Color>80000008</Color>
  937. <VariableType>4 Bytes</VariableType>
  938. <Address>pFloor</Address>
  939. <Offsets>
  940. <Offset>24E8</Offset>
  941. <Offset>0</Offset>
  942. <Offset>B7D8</Offset>
  943. </Offsets>
  944. </CheatEntry>
  945. <CheatEntry>
  946. <ID>827</ID>
  947. <Description>"Pheromones"</Description>
  948. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  949. <ShowAsSigned>1</ShowAsSigned>
  950. <Color>80000008</Color>
  951. <VariableType>4 Bytes</VariableType>
  952. <Address>pFloor</Address>
  953. <Offsets>
  954. <Offset>24EC</Offset>
  955. <Offset>0</Offset>
  956. <Offset>B7D8</Offset>
  957. </Offsets>
  958. </CheatEntry>
  959. <CheatEntry>
  960. <ID>826</ID>
  961. <Description>"Amnesia"</Description>
  962. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  963. <ShowAsSigned>1</ShowAsSigned>
  964. <Color>80000008</Color>
  965. <VariableType>4 Bytes</VariableType>
  966. <Address>pFloor</Address>
  967. <Offsets>
  968. <Offset>24F0</Offset>
  969. <Offset>0</Offset>
  970. <Offset>B7D8</Offset>
  971. </Offsets>
  972. </CheatEntry>
  973. <CheatEntry>
  974. <ID>825</ID>
  975. <Description>"Lemon Party"</Description>
  976. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  977. <ShowAsSigned>1</ShowAsSigned>
  978. <Color>80000008</Color>
  979. <VariableType>4 Bytes</VariableType>
  980. <Address>pFloor</Address>
  981. <Offsets>
  982. <Offset>24F4</Offset>
  983. <Offset>0</Offset>
  984. <Offset>B7D8</Offset>
  985. </Offsets>
  986. </CheatEntry>
  987. <CheatEntry>
  988. <ID>828</ID>
  989. <Description>"R U A Wizard?"</Description>
  990. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  991. <ShowAsSigned>1</ShowAsSigned>
  992. <Color>80000008</Color>
  993. <VariableType>4 Bytes</VariableType>
  994. <Address>pFloor</Address>
  995. <Offsets>
  996. <Offset>24F8</Offset>
  997. <Offset>0</Offset>
  998. <Offset>B7D8</Offset>
  999. </Offsets>
  1000. </CheatEntry>
  1001. <CheatEntry>
  1002. <ID>868</ID>
  1003. <Description>"Percs!"</Description>
  1004. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1005. <ShowAsSigned>1</ShowAsSigned>
  1006. <Color>80000008</Color>
  1007. <VariableType>4 Bytes</VariableType>
  1008. <Address>pFloor</Address>
  1009. <Offsets>
  1010. <Offset>24FC</Offset>
  1011. <Offset>0</Offset>
  1012. <Offset>B7D8</Offset>
  1013. </Offsets>
  1014. </CheatEntry>
  1015. <CheatEntry>
  1016. <ID>877</ID>
  1017. <Description>"Addicted!"</Description>
  1018. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1019. <ShowAsSigned>1</ShowAsSigned>
  1020. <Color>80000008</Color>
  1021. <VariableType>4 Bytes</VariableType>
  1022. <Address>pFloor</Address>
  1023. <Offsets>
  1024. <Offset>2500</Offset>
  1025. <Offset>0</Offset>
  1026. <Offset>B7D8</Offset>
  1027. </Offsets>
  1028. </CheatEntry>
  1029. <CheatEntry>
  1030. <ID>876</ID>
  1031. <Description>"Re-Lax"</Description>
  1032. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1033. <ShowAsSigned>1</ShowAsSigned>
  1034. <Color>80000008</Color>
  1035. <VariableType>4 Bytes</VariableType>
  1036. <Address>pFloor</Address>
  1037. <Offsets>
  1038. <Offset>2504</Offset>
  1039. <Offset>0</Offset>
  1040. <Offset>B7D8</Offset>
  1041. </Offsets>
  1042. </CheatEntry>
  1043. <CheatEntry>
  1044. <ID>875</ID>
  1045. <Description>"???"</Description>
  1046. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1047. <ShowAsSigned>1</ShowAsSigned>
  1048. <Color>80000008</Color>
  1049. <VariableType>4 Bytes</VariableType>
  1050. <Address>pFloor</Address>
  1051. <Offsets>
  1052. <Offset>2508</Offset>
  1053. <Offset>0</Offset>
  1054. <Offset>B7D8</Offset>
  1055. </Offsets>
  1056. </CheatEntry>
  1057. <CheatEntry>
  1058. <ID>874</ID>
  1059. <Description>"One makes you larger"</Description>
  1060. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1061. <ShowAsSigned>1</ShowAsSigned>
  1062. <Color>80000008</Color>
  1063. <VariableType>4 Bytes</VariableType>
  1064. <Address>pFloor</Address>
  1065. <Offsets>
  1066. <Offset>250C</Offset>
  1067. <Offset>0</Offset>
  1068. <Offset>B7D8</Offset>
  1069. </Offsets>
  1070. </CheatEntry>
  1071. <CheatEntry>
  1072. <ID>873</ID>
  1073. <Description>"One makes you small"</Description>
  1074. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1075. <ShowAsSigned>1</ShowAsSigned>
  1076. <Color>80000008</Color>
  1077. <VariableType>4 Bytes</VariableType>
  1078. <Address>pFloor</Address>
  1079. <Offsets>
  1080. <Offset>2510</Offset>
  1081. <Offset>0</Offset>
  1082. <Offset>B7D8</Offset>
  1083. </Offsets>
  1084. </CheatEntry>
  1085. <CheatEntry>
  1086. <ID>872</ID>
  1087. <Description>"Infested!"</Description>
  1088. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1089. <ShowAsSigned>1</ShowAsSigned>
  1090. <Color>80000008</Color>
  1091. <VariableType>4 Bytes</VariableType>
  1092. <Address>pFloor</Address>
  1093. <Offsets>
  1094. <Offset>2514</Offset>
  1095. <Offset>0</Offset>
  1096. <Offset>B7D8</Offset>
  1097. </Offsets>
  1098. </CheatEntry>
  1099. <CheatEntry>
  1100. <ID>871</ID>
  1101. <Description>"Infested?"</Description>
  1102. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1103. <ShowAsSigned>1</ShowAsSigned>
  1104. <Color>80000008</Color>
  1105. <VariableType>4 Bytes</VariableType>
  1106. <Address>pFloor</Address>
  1107. <Offsets>
  1108. <Offset>2518</Offset>
  1109. <Offset>0</Offset>
  1110. <Offset>B7D8</Offset>
  1111. </Offsets>
  1112. </CheatEntry>
  1113. <CheatEntry>
  1114. <ID>870</ID>
  1115. <Description>"Power Pill!"</Description>
  1116. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1117. <ShowAsSigned>1</ShowAsSigned>
  1118. <Color>80000008</Color>
  1119. <VariableType>4 Bytes</VariableType>
  1120. <Address>pFloor</Address>
  1121. <Offsets>
  1122. <Offset>251C</Offset>
  1123. <Offset>0</Offset>
  1124. <Offset>B7D8</Offset>
  1125. </Offsets>
  1126. </CheatEntry>
  1127. <CheatEntry>
  1128. <ID>869</ID>
  1129. <Description>"Retro Vision"</Description>
  1130. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1131. <ShowAsSigned>1</ShowAsSigned>
  1132. <Color>80000008</Color>
  1133. <VariableType>4 Bytes</VariableType>
  1134. <Address>pFloor</Address>
  1135. <Offsets>
  1136. <Offset>2520</Offset>
  1137. <Offset>0</Offset>
  1138. <Offset>B7D8</Offset>
  1139. </Offsets>
  1140. </CheatEntry>
  1141. <CheatEntry>
  1142. <ID>955</ID>
  1143. <Description>"Friends till the end!"</Description>
  1144. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1145. <Color>80000008</Color>
  1146. <VariableType>4 Bytes</VariableType>
  1147. <Address>pFloor</Address>
  1148. <Offsets>
  1149. <Offset>2524</Offset>
  1150. <Offset>0</Offset>
  1151. <Offset>B7D8</Offset>
  1152. </Offsets>
  1153. </CheatEntry>
  1154. </CheatEntries>
  1155. </CheatEntry>
  1156. </CheatEntries>
  1157. </CheatEntry>
  1158. <CheatEntry>
  1159. <ID>474</ID>
  1160. <Description>"Held Item"</Description>
  1161. <Options moHideChildren="1"/>
  1162. <LastState Value="" Activated="0" RealAddress="00000000"/>
  1163. <Color>80000008</Color>
  1164. <GroupHeader>1</GroupHeader>
  1165. <CheatEntries>
  1166. <CheatEntry>
  1167. <ID>480</ID>
  1168. <Description>"Current Held Item"</Description>
  1169. <DropDownList DisplayValueAsItem="1">0:-None-
  1170. 130:A Pony - Flight + dash attack
  1171. 65:Anarchist Cookbook - Summon bombs
  1172. 136:Best Friend - Friends 'till the end
  1173. 286:Blank Card - Card mimic
  1174. 186:Blood Rights - Mass enemy damage at a cost
  1175. 42:Bob's Rotten Head - Reusable ranged bomb
  1176. 78:Book of Revelations - Reusable soul protection
  1177. 287:Book of Secrets - ???
  1178. 58:Book of Shadows - Temporary invincibility
  1179. 357:Box of Friends - Double your friends
  1180. 288:Box of Spiders - It's a box of spiders
  1181. 326:Breath of Life - Invincibility at a cost
  1182. 294:Butter Bean - Reusable knock-back
  1183. 296:Converter - Convert your soul
  1184. 160:Crack the Sky - Holy white death
  1185. 158:Crystal Ball - I see my future
  1186. 285:D10 - Reroll enemies
  1187. 283:D100 - REEROLLLLL!
  1188. 386:D12 - Rerolls rocks
  1189. 166:D20 - Reroll the basics
  1190. 284:D4 - Reroll into something else
  1191. 437:D7 - Reroll Rewards!
  1192. 406:D8 - Reroll stats
  1193. 175:Dad's Key - Opens all doors...
  1194. 124:Dead Sea Scrolls - It's a mystery
  1195. 85:Deck of Cards - Reusable card generator
  1196. 347:Diplopia - Double item vision
  1197. 47:Doctor's Remote - Reusable air strike
  1198. 291:Flush! - ...
  1199. 127:Forget Me Now - I don't remember...
  1200. 382:Friendly Ball - Gotta fetch 'em all!
  1201. 352:Glass Cannon - Be gentle...
  1202. 422:Glowing Hour Glass - Turn back time
  1203. 145:Guppy's Head - Reusable fly hive
  1204. 133:Guppy's Paw - Soul converter
  1205. 293:Head of Krampus - Krampus rage
  1206. 429:Head of the Keeper - Penny tears!
  1207. 282:How to Jump - It's time you learned how
  1208. 323:Isaac's Tears - Collected tears
  1209. 135:IV Bag - Portable blood bank
  1210. 434:Jar of Flies - gotta catch 'em all?
  1211. 40:Kamikaze! - Become the bomb!
  1212. 421:Kidney Bean - Love Toots!
  1213. 56:Lemon Mishap - Oops...
  1214. 295:Magic Fingers - Pay to play
  1215. 351:Mega Bean - Giga Fart!
  1216. 441:Mega Blast - Laser breath
  1217. 427:Mine Crafter - Booom!
  1218. 102:Mom's Bottle of Pills - Reusable pill generator
  1219. 439:Mom's Box - What's inside?
  1220. 39:Mom's Bra - Mass fear
  1221. 41:Mom's Pad - Gross...
  1222. 123:Monster Manual - Temporary buddy generator
  1223. 86:Monstro's Tooth - Summon Monstro
  1224. 37:Mr. Boom - Reusable bomb buddy
  1225. 77:My Little Unicorn - Temporary badass
  1226. 147:Notched Axe - Rocks don't stand a chance
  1227. 297:Pandora's Box - ? ?
  1228. 348:Placebo - Pill mimic
  1229. 177:Portable Slot - Gamble 24/7
  1230. 146:Prayer Card - Reusable eternity
  1231. 126:Razor Blade - Feel my pain
  1232. 289:Red Candle - Flame on
  1233. 137:Remote Detonator - Remote bomb detonation
  1234. 292:Satanic Bible - Reusable evil
  1235. 325:Scissors - Lose your head
  1236. 49:Shoop da Whoop! - BLLLARRRRGGG!
  1237. 171:Spider Butt - Mass enemy slowdown + damage
  1238. 38:Tammy's Head - Reusable tear burst
  1239. 383:Tear Detonator - Remote tear detonation
  1240. 192:Telepathy For Dummies - Temporary psychic shot
  1241. 44:Teleport! - Teleport!
  1242. 419:Teleport 2.0 - I-teleport!
  1243. 111:The Bean - Toot on command
  1244. 33:The Bible - Temporary flight
  1245. 34:The Book of Belial - Temporary DMG up
  1246. 97:The Book of Sin - Reusable item generator
  1247. 338:The Boomerang - It will never leave you
  1248. 164:The Candle - Reusable flames
  1249. 105:The D6 - Reroll your destiny
  1250. 93:The Gamekid - Temporary Man-Pac
  1251. 66:The Hourglass - Temporary enemy slowdown
  1252. 290:The Jar - Save your life
  1253. 83:The Nail - Temporary demon form
  1254. 35:The Necronomicon - Mass room damage
  1255. 107:The Pinking Shears - Cut and run
  1256. 36:The Poop - Plop!
  1257. 324:Undefined - Undefined
  1258. 298:Unicorn Stump - You feel stumped
  1259. 396:Ventricle Razor - Short cutter
  1260. 84:We Need To Go Deeper! - Reusable level skip
  1261. 181:White Pony - Flight + holy death
  1262. 349:Wooden Nickel - Flip a coin
  1263. 45:Yum Heart - Reusable regeneration
  1264. </DropDownList>
  1265. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1266. <Color>80000008</Color>
  1267. <VariableType>4 Bytes</VariableType>
  1268. <Address>pFloor</Address>
  1269. <Offsets>
  1270. <Offset>1CF4</Offset>
  1271. <Offset>0</Offset>
  1272. <Offset>B7D8</Offset>
  1273. </Offsets>
  1274. </CheatEntry>
  1275. <CheatEntry>
  1276. <ID>484</ID>
  1277. <Description>"Current Held Item Charge"</Description>
  1278. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1279. <Color>80000008</Color>
  1280. <VariableType>4 Bytes</VariableType>
  1281. <Address>pFloor</Address>
  1282. <Offsets>
  1283. <Offset>1CF8</Offset>
  1284. <Offset>0</Offset>
  1285. <Offset>B7D8</Offset>
  1286. </Offsets>
  1287. </CheatEntry>
  1288. <CheatEntry>
  1289. <ID>483</ID>
  1290. <Description>"Current Held Item Overcharge"</Description>
  1291. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1292. <Color>80000008</Color>
  1293. <VariableType>4 Bytes</VariableType>
  1294. <Address>pFloor</Address>
  1295. <Offsets>
  1296. <Offset>1D0C</Offset>
  1297. <Offset>0</Offset>
  1298. <Offset>B7D8</Offset>
  1299. </Offsets>
  1300. </CheatEntry>
  1301. <CheatEntry>
  1302. <ID>851</ID>
  1303. <Description>"Current Trinket"</Description>
  1304. <DropDownList DisplayValueAsItem="1">0: Nothing
  1305. 1: Swallowed Penny
  1306. 2: Petrified Poop
  1307. 3: AAA Battery
  1308. 4: Broken Remote
  1309. 5: Purple Heart
  1310. 6: Broken Magnet
  1311. 7: Rosary Bead
  1312. 8: Cartridge
  1313. 9: Pulse Worm
  1314. 10: Wiggle Worm
  1315. 11: Ring Worm
  1316. 12: Flat Worm
  1317. 13: Store Credit
  1318. 14: Callus
  1319. 15: Lucky Rock
  1320. 16: Mom's Toenail
  1321. 17: Black Lipstick
  1322. 18: Bible Tract
  1323. 19: Paper Clip
  1324. 20: Monkey Paw
  1325. 21: Mysterious Paper
  1326. 22: Daemon's Tail
  1327. 23: Missing Poster
  1328. 24: Butt Penny
  1329. 25: Mysterious Candy
  1330. 26: Hook Worm
  1331. 27: Whip Worm
  1332. 28: Broken Ankh
  1333. 29: Fish Head
  1334. 30: Pinky Eye
  1335. 31: Push Pin
  1336. 32: Liberty Cap
  1337. 33: Umbilical Cord
  1338. 34: Child's Heart
  1339. 35: Curved Horn
  1340. 36: Rusted Key
  1341. 37: Goat's Hoof
  1342. 38: Mom's Pearl
  1343. 39: Cancer
  1344. 40: Red Patch
  1345. 41: Match Stick
  1346. 42: Lucky Toe
  1347. 43: Cursed Skull
  1348. 44: Safety Cap
  1349. 45: Ace of Spades
  1350. 46: Isaac's Fork
  1351. 48: A Missing Page
  1352. 49: Bloody Penny
  1353. 50: Burnt Penny
  1354. 51: Flat Penny
  1355. 52: Counterfeit Penny
  1356. 53: The Tick
  1357. 54: Isaac's Head
  1358. 55: Maggy's Faith
  1359. 56: Judas' Tongue
  1360. 57: ???'s Soul
  1361. 58: Samsom's Lock
  1362. 59: Cain's Eye
  1363. 60: Eve's Bird Foot
  1364. 61: Left Hand
  1365. 62: Shiny Rock
  1366. 63: Safety Scissors
  1367. 64: Rainbow Worm
  1368. 65: Tape Worm
  1369. 66: Lazy Worm
  1370. 67: Cracked Dice
  1371. 68: Super Magnet
  1372. 69: Faded Polaroid
  1373. 70: Louse
  1374. 71: Bob's Bladder
  1375. 72: Watch Battery
  1376. 73: Blasting Cap
  1377. 74: Stud Finger
  1378. 75: Error
  1379. 76: Poker Chip
  1380. 77: Blister
  1381. 78: Second Hand
  1382. 79: Endless Nameless
  1383. 80: Black Feather
  1384. 81: Blind Rage
  1385. 82: Golden Horseshoe
  1386. 83: Store Key
  1387. 84: Rib of Greed
  1388. 85: Karma
  1389. 86: Lil Larva
  1390. 87: Mom's Locket
  1391. 88: No!
  1392. 89: Child Leash
  1393. 90: Brown Cap
  1394. </DropDownList>
  1395. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1396. <Color>80000008</Color>
  1397. <VariableType>4 Bytes</VariableType>
  1398. <Address>pFloor</Address>
  1399. <Offsets>
  1400. <Offset>1D9C</Offset>
  1401. <Offset>0</Offset>
  1402. <Offset>B7D8</Offset>
  1403. </Offsets>
  1404. </CheatEntry>
  1405. <CheatEntry>
  1406. <ID>481</ID>
  1407. <Description>"Second Trinket"</Description>
  1408. <DropDownList DisplayValueAsItem="1">0: Nothing
  1409. 1: Swallowed Penny
  1410. 2: Petrified Poop
  1411. 3: AAA Battery
  1412. 4: Broken Remote
  1413. 5: Purple Heart
  1414. 6: Broken Magnet
  1415. 7: Rosary Bead
  1416. 8: Cartridge
  1417. 9: Pulse Worm
  1418. 10: Wiggle Worm
  1419. 11: Ring Worm
  1420. 12: Flat Worm
  1421. 13: Store Credit
  1422. 14: Callus
  1423. 15: Lucky Rock
  1424. 16: Mom's Toenail
  1425. 17: Black Lipstick
  1426. 18: Bible Tract
  1427. 19: Paper Clip
  1428. 20: Monkey Paw
  1429. 21: Mysterious Paper
  1430. 22: Daemon's Tail
  1431. 23: Missing Poster
  1432. 24: Butt Penny
  1433. 25: Mysterious Candy
  1434. 26: Hook Worm
  1435. 27: Whip Worm
  1436. 28: Broken Ankh
  1437. 29: Fish Head
  1438. 30: Pinky Eye
  1439. 31: Push Pin
  1440. 32: Liberty Cap
  1441. 33: Umbilical Cord
  1442. 34: Child's Heart
  1443. 35: Curved Horn
  1444. 36: Rusted Key
  1445. 37: Goat's Hoof
  1446. 38: Mom's Pearl
  1447. 39: Cancer
  1448. 40: Red Patch
  1449. 41: Match Stick
  1450. 42: Lucky Toe
  1451. 43: Cursed Skull
  1452. 44: Safety Cap
  1453. 45: Ace of Spades
  1454. 46: Isaac's Fork
  1455. 48: A Missing Page
  1456. 49: Bloody Penny
  1457. 50: Burnt Penny
  1458. 51: Flat Penny
  1459. 52: Counterfeit Penny
  1460. 53: The Tick
  1461. 54: Isaac's Head
  1462. 55: Maggy's Faith
  1463. 56: Judas' Tongue
  1464. 57: ???'s Soul
  1465. 58: Samsom's Lock
  1466. 59: Cain's Eye
  1467. 60: Eve's Bird Foot
  1468. 61: Left Hand
  1469. 62: Shiny Rock
  1470. 63: Safety Scissors
  1471. 64: Rainbow Worm
  1472. 65: Tape Worm
  1473. 66: Lazy Worm
  1474. 67: Cracked Dice
  1475. 68: Super Magnet
  1476. 69: Faded Polaroid
  1477. 70: Louse
  1478. 71: Bob's Bladder
  1479. 72: Watch Battery
  1480. 73: Blasting Cap
  1481. 74: Stud Finger
  1482. 75: Error
  1483. 76: Poker Chip
  1484. 77: Blister
  1485. 78: Second Hand
  1486. 79: Endless Nameless
  1487. 80: Black Feather
  1488. 81: Blind Rage
  1489. 82: Golden Horseshoe
  1490. 83: Store Key
  1491. 84: Rib of Greed
  1492. 85: Karma
  1493. 86: Lil Larva
  1494. 87: Mom's Locket
  1495. 88: No!
  1496. 89: Child Leash
  1497. 90: Brown Cap
  1498. </DropDownList>
  1499. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1500. <Color>80000008</Color>
  1501. <VariableType>4 Bytes</VariableType>
  1502. <Address>pFloor</Address>
  1503. <Offsets>
  1504. <Offset>1DA0</Offset>
  1505. <Offset>0</Offset>
  1506. <Offset>B7D8</Offset>
  1507. </Offsets>
  1508. </CheatEntry>
  1509. </CheatEntries>
  1510. </CheatEntry>
  1511. <CheatEntry>
  1512. <ID>485</ID>
  1513. <Description>"Player Stats"</Description>
  1514. <Options moHideChildren="1"/>
  1515. <LastState Value="" Activated="0" RealAddress="00000000"/>
  1516. <Color>80000008</Color>
  1517. <GroupHeader>1</GroupHeader>
  1518. <CheatEntries>
  1519. <CheatEntry>
  1520. <ID>878</ID>
  1521. <Description>"Attack Types"</Description>
  1522. <Options moHideChildren="1"/>
  1523. <LastState Value="" Activated="0" RealAddress="00000000"/>
  1524. <Color>80000008</Color>
  1525. <GroupHeader>1</GroupHeader>
  1526. <CheatEntries>
  1527. <CheatEntry>
  1528. <ID>879</ID>
  1529. <Description>"Normal Tears"</Description>
  1530. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:No
  1531. 1:Yes
  1532. </DropDownList>
  1533. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1534. <Color>80000008</Color>
  1535. <VariableType>Byte</VariableType>
  1536. <Address>pFloor</Address>
  1537. <Offsets>
  1538. <Offset>1BA5</Offset>
  1539. <Offset>0</Offset>
  1540. <Offset>B7D8</Offset>
  1541. </Offsets>
  1542. </CheatEntry>
  1543. <CheatEntry>
  1544. <ID>887</ID>
  1545. <Description>"Beam"</Description>
  1546. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:No
  1547. 1:Yes
  1548. </DropDownList>
  1549. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1550. <Color>80000008</Color>
  1551. <VariableType>Byte</VariableType>
  1552. <Address>pFloor</Address>
  1553. <Offsets>
  1554. <Offset>1BA6</Offset>
  1555. <Offset>0</Offset>
  1556. <Offset>B7D8</Offset>
  1557. </Offsets>
  1558. </CheatEntry>
  1559. <CheatEntry>
  1560. <ID>886</ID>
  1561. <Description>"Laser"</Description>
  1562. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:No
  1563. 1:Yes
  1564. </DropDownList>
  1565. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1566. <Color>80000008</Color>
  1567. <VariableType>Byte</VariableType>
  1568. <Address>pFloor</Address>
  1569. <Offsets>
  1570. <Offset>1BA7</Offset>
  1571. <Offset>0</Offset>
  1572. <Offset>B7D8</Offset>
  1573. </Offsets>
  1574. </CheatEntry>
  1575. <CheatEntry>
  1576. <ID>885</ID>
  1577. <Description>"Knife"</Description>
  1578. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:No
  1579. 1:Yes
  1580. </DropDownList>
  1581. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1582. <Color>80000008</Color>
  1583. <VariableType>Byte</VariableType>
  1584. <Address>pFloor</Address>
  1585. <Offsets>
  1586. <Offset>1BA8</Offset>
  1587. <Offset>0</Offset>
  1588. <Offset>B7D8</Offset>
  1589. </Offsets>
  1590. </CheatEntry>
  1591. <CheatEntry>
  1592. <ID>881</ID>
  1593. <Description>"Bomb Tears"</Description>
  1594. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:No
  1595. 1:Yes
  1596. </DropDownList>
  1597. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1598. <Color>80000008</Color>
  1599. <VariableType>Byte</VariableType>
  1600. <Address>pFloor</Address>
  1601. <Offsets>
  1602. <Offset>1BA9</Offset>
  1603. <Offset>0</Offset>
  1604. <Offset>B7D8</Offset>
  1605. </Offsets>
  1606. </CheatEntry>
  1607. <CheatEntry>
  1608. <ID>880</ID>
  1609. <Description>"Guided Missile"</Description>
  1610. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:No
  1611. 1:Yes
  1612. </DropDownList>
  1613. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1614. <Color>80000008</Color>
  1615. <VariableType>Byte</VariableType>
  1616. <Address>pFloor</Address>
  1617. <Offsets>
  1618. <Offset>1BAA</Offset>
  1619. <Offset>0</Offset>
  1620. <Offset>B7D8</Offset>
  1621. </Offsets>
  1622. </CheatEntry>
  1623. <CheatEntry>
  1624. <ID>882</ID>
  1625. <Description>"Shotgun Tears"</Description>
  1626. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:No
  1627. 1:Yes
  1628. </DropDownList>
  1629. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1630. <Color>80000008</Color>
  1631. <VariableType>Byte</VariableType>
  1632. <Address>pFloor</Address>
  1633. <Offsets>
  1634. <Offset>1BAB</Offset>
  1635. <Offset>0</Offset>
  1636. <Offset>B7D8</Offset>
  1637. </Offsets>
  1638. </CheatEntry>
  1639. <CheatEntry>
  1640. <ID>883</ID>
  1641. <Description>"Controllable Tear"</Description>
  1642. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:No
  1643. 1:Yes
  1644. </DropDownList>
  1645. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1646. <Color>80000008</Color>
  1647. <VariableType>Byte</VariableType>
  1648. <Address>pFloor</Address>
  1649. <Offsets>
  1650. <Offset>1BAC</Offset>
  1651. <Offset>0</Offset>
  1652. <Offset>B7D8</Offset>
  1653. </Offsets>
  1654. </CheatEntry>
  1655. <CheatEntry>
  1656. <ID>884</ID>
  1657. <Description>"Laser Circle"</Description>
  1658. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:No
  1659. 1:Yes
  1660. </DropDownList>
  1661. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1662. <Color>80000008</Color>
  1663. <VariableType>Byte</VariableType>
  1664. <Address>pFloor</Address>
  1665. <Offsets>
  1666. <Offset>1BAD</Offset>
  1667. <Offset>0</Offset>
  1668. <Offset>B7D8</Offset>
  1669. </Offsets>
  1670. </CheatEntry>
  1671. </CheatEntries>
  1672. </CheatEntry>
  1673. <CheatEntry>
  1674. <ID>498</ID>
  1675. <Description>"Attack Style"</Description>
  1676. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Normal
  1677. 1:Circle
  1678. 2:Stationary
  1679. 3:Stationary + Circle
  1680. 4:Spread when hit
  1681. 5:Spread + Circle
  1682. 6:Stationary + Spread
  1683. 7:Stationary + Spread + Circle
  1684. 8:Bouncing
  1685. 9:Circle + Bouncing
  1686. 10:Stationary + Bouncing
  1687. 11:Stationary + Circle + Piercing
  1688. 12:Spread + Bouncing
  1689. 13:Spread + Circle + Piercing
  1690. 14:Stationary + Spread + Bouncing
  1691. 15:Stationary + Spread + Circle + Piercing
  1692. 16:Fear shot
  1693. 17:Circle + Fear shot
  1694. 18:Stationary + Fear shot
  1695. 19:Stationary + Circle + Fear shot
  1696. 20:Spread + Fear shot
  1697. 512:Pulsing
  1698. 2048:Flat
  1699. 16384:Zig-zag
  1700. </DropDownList>
  1701. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1702. <Color>80000008</Color>
  1703. <VariableType>4 Bytes</VariableType>
  1704. <Address>pFloor</Address>
  1705. <Offsets>
  1706. <Offset>1C22</Offset>
  1707. <Offset>0</Offset>
  1708. <Offset>B7D8</Offset>
  1709. </Offsets>
  1710. </CheatEntry>
  1711. <CheatEntry>
  1712. <ID>499</ID>
  1713. <Description>"Attack Damage"</Description>
  1714. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1715. <Color>80000008</Color>
  1716. <VariableType>Float</VariableType>
  1717. <Address>pFloor</Address>
  1718. <Offsets>
  1719. <Offset>1C10</Offset>
  1720. <Offset>0</Offset>
  1721. <Offset>B7D8</Offset>
  1722. </Offsets>
  1723. </CheatEntry>
  1724. <CheatEntry>
  1725. <ID>500</ID>
  1726. <Description>"Attack Delay"</Description>
  1727. <DropDownList DisplayValueAsItem="1">10:Normal Speed
  1728. 9:Normal Speed+
  1729. 8:Fast Speed
  1730. 7:Fast Speed+
  1731. 6:Super Speed
  1732. 5:Super Speed+
  1733. 4:Mega Speed
  1734. 3:Mega Speed+
  1735. 2:Hyper Mega Fast Speed
  1736. 1:Hyper Mega Fast Speed+
  1737. </DropDownList>
  1738. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1739. <Color>80000008</Color>
  1740. <VariableType>4 Bytes</VariableType>
  1741. <Address>pFloor</Address>
  1742. <Offsets>
  1743. <Offset>1C00</Offset>
  1744. <Offset>0</Offset>
  1745. <Offset>B7D8</Offset>
  1746. </Offsets>
  1747. </CheatEntry>
  1748. <CheatEntry>
  1749. <ID>501</ID>
  1750. <Description>"Attack Range Value"</Description>
  1751. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1752. <Color>80000008</Color>
  1753. <VariableType>Float</VariableType>
  1754. <Address>pFloor</Address>
  1755. <Offsets>
  1756. <Offset>1C14</Offset>
  1757. <Offset>0</Offset>
  1758. <Offset>B7D8</Offset>
  1759. </Offsets>
  1760. </CheatEntry>
  1761. <CheatEntry>
  1762. <ID>502</ID>
  1763. <Description>"Shot Speed"</Description>
  1764. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1765. <Color>80000008</Color>
  1766. <VariableType>Float</VariableType>
  1767. <Address>pFloor</Address>
  1768. <Offsets>
  1769. <Offset>1C04</Offset>
  1770. <Offset>0</Offset>
  1771. <Offset>B7D8</Offset>
  1772. </Offsets>
  1773. </CheatEntry>
  1774. <CheatEntry>
  1775. <ID>503</ID>
  1776. <Description>"Shot Height"</Description>
  1777. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1778. <Color>80000008</Color>
  1779. <VariableType>Float</VariableType>
  1780. <Address>pFloor</Address>
  1781. <Offsets>
  1782. <Offset>1C18</Offset>
  1783. <Offset>0</Offset>
  1784. <Offset>B7D8</Offset>
  1785. </Offsets>
  1786. </CheatEntry>
  1787. <CheatEntry>
  1788. <ID>504</ID>
  1789. <Description>"Attack Color #1"</Description>
  1790. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1791. <Color>80000008</Color>
  1792. <VariableType>Float</VariableType>
  1793. <Address>pFloor</Address>
  1794. <Offsets>
  1795. <Offset>1C28</Offset>
  1796. <Offset>0</Offset>
  1797. <Offset>B7D8</Offset>
  1798. </Offsets>
  1799. </CheatEntry>
  1800. <CheatEntry>
  1801. <ID>505</ID>
  1802. <Description>"Attack Color #2"</Description>
  1803. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1804. <Color>80000008</Color>
  1805. <VariableType>Float</VariableType>
  1806. <Address>pFloor</Address>
  1807. <Offsets>
  1808. <Offset>1C2C</Offset>
  1809. <Offset>0</Offset>
  1810. <Offset>B7D8</Offset>
  1811. </Offsets>
  1812. </CheatEntry>
  1813. <CheatEntry>
  1814. <ID>506</ID>
  1815. <Description>"Mov Speed"</Description>
  1816. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1817. <Color>80000008</Color>
  1818. <VariableType>Float</VariableType>
  1819. <Address>pFloor</Address>
  1820. <Offsets>
  1821. <Offset>1CDC</Offset>
  1822. <Offset>0</Offset>
  1823. <Offset>B7D8</Offset>
  1824. </Offsets>
  1825. </CheatEntry>
  1826. <CheatEntry>
  1827. <ID>507</ID>
  1828. <Description>"Luck"</Description>
  1829. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1830. <Color>80000008</Color>
  1831. <VariableType>Float</VariableType>
  1832. <Address>pFloor</Address>
  1833. <Offsets>
  1834. <Offset>1CE0</Offset>
  1835. <Offset>0</Offset>
  1836. <Offset>B7D8</Offset>
  1837. </Offsets>
  1838. </CheatEntry>
  1839. </CheatEntries>
  1840. </CheatEntry>
  1841. <CheatEntry>
  1842. <ID>508</ID>
  1843. <Description>"Player Coordinates"</Description>
  1844. <Options moHideChildren="1"/>
  1845. <LastState Value="" Activated="0" RealAddress="00000000"/>
  1846. <Color>80000008</Color>
  1847. <GroupHeader>1</GroupHeader>
  1848. <CheatEntries>
  1849. <CheatEntry>
  1850. <ID>864</ID>
  1851. <Description>"X"</Description>
  1852. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1853. <Color>80000008</Color>
  1854. <VariableType>Float</VariableType>
  1855. <Address>pFloor</Address>
  1856. <Offsets>
  1857. <Offset>55C</Offset>
  1858. <Offset>0</Offset>
  1859. <Offset>B7D8</Offset>
  1860. </Offsets>
  1861. </CheatEntry>
  1862. <CheatEntry>
  1863. <ID>514</ID>
  1864. <Description>"Y"</Description>
  1865. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  1866. <Color>80000008</Color>
  1867. <VariableType>Float</VariableType>
  1868. <Address>pFloor</Address>
  1869. <Offsets>
  1870. <Offset>560</Offset>
  1871. <Offset>0</Offset>
  1872. <Offset>B7D8</Offset>
  1873. </Offsets>
  1874. </CheatEntry>
  1875. </CheatEntries>
  1876. </CheatEntry>
  1877. <CheatEntry>
  1878. <ID>554</ID>
  1879. <Description>"Collected Items active (no visual effect)"</Description>
  1880. <Options moHideChildren="1"/>
  1881. <LastState Value="" Activated="0" RealAddress="00000000"/>
  1882. <Color>80000008</Color>
  1883. <GroupHeader>1</GroupHeader>
  1884. <CheatEntries>
  1885. <CheatEntry>
  1886. <ID>949</ID>
  1887. <Description>"Selected Item"</Description>
  1888. <DropDownList DisplayValueAsItem="1">320:???'s Only Friend - Controlled friend
  1889. 11:1up! - Extra life
  1890. 15:Less than 3 - HP up
  1891. 191:3 Dollar Bill - Rainbow tears
  1892. 359:8 Inch Nails - Stick it to 'em!
  1893. 116:9 Volt - Quicker charge
  1894. 245:20/20 - Double shot
  1895. 130:A Pony - Flight + dash attack
  1896. 18:A Dollar - $$$
  1897. 74:A Quarter - +25 coins
  1898. 132:A Lump of Coal - My Xmas present
  1899. 346:A Snack - HP up
  1900. 230:Abaddon - Evil + DMG up + fear shot
  1901. 188:Abel - Mirrored buddy
  1902. 65:Anarchist Cookbook - Summon bombs
  1903. 214:Anemic - Toxic blood
  1904. 161:Ankh - Eternal life?
  1905. 222:Anti-Gravity - Anti-gravity tears + tears up
  1906. 308:Aquarius - Trail of tears
  1907. 300:Aries - Ramming speed
  1908. 408:Athame - Call to the void
  1909. 231:Ball of Tar - Sticky feet...
  1910. 207:Ball of Bandages - Gotta lick 'em all!
  1911. 272:BBF - Big Beautiful Fly
  1912. 274:Best Bud - Sworn protector
  1913. 136:Best Friend - Friends 'till the end
  1914. 391:Betrayal - Turn your enemy
  1915. 247:BFFS! - Your friends rule
  1916. 279:Big Fan - Fat protector
  1917. 438:Binky - Memories...
  1918. 260:Black Candle - Curse immunity + evil up
  1919. 226:Black Lotus - HP up x3
  1920. 420:Black Powder - Spin the black circle!
  1921. 286:Blank Card - Card mimic
  1922. 119:Blood Bag - HP up
  1923. 254:Blood Clot - DMG + range up
  1924. 7:Blood of the Martyr - DMG up
  1925. 186:Blood Rights - Mass enemy damage at a cost
  1926. 157:Bloody Lust - RAGE!
  1927. 246:Blue Map - Secrets
  1928. 342:Blue Cap - HP + tears up + shot speed down
  1929. 273:Bob's Brain - Explosive thoughts
  1930. 140:Bob's Curse - +5 poison bombs
  1931. 42:Bob's Rotten Head - Reusable ranged bomb
  1932. 125:Bobby-Bomb - Homing bombs
  1933. 250:BOGO Bombs - 1+1 BOOM!
  1934. 131:Bomb Bag - Gives bombs
  1935. 353:Bomber Boy - Explosive blast!
  1936. 78:Book of Revelations - Reusable soul protection
  1937. 287:Book of Secrets - ???
  1938. 58:Book of Shadows - Temporary invincibility
  1939. 19:Boom! - 10 bombs
  1940. 357:Box of Friends - Double your friends
  1941. 288:Box of Spiders - It's a box of spiders
  1942. 198:Box - Stuff
  1943. 25:Breakfast - HP up
  1944. 326:Breath of Life - Invincibility at a cost
  1945. 118:Brimstone - Blood laser barrage
  1946. 337:Broken Watch - I think it's broken
  1947. 8:Brother Bobby - Friends 'till the end
  1948. 129:Bucket of Lard - HP up
  1949. 385:Bumbo - Bumbo want coin!
  1950. 144:Bum Friend - He's greedy
  1951. 377:Bursting Sack - Spider love
  1952. 209:Butt Bombs - Toxic blast +5 bombs
  1953. 294:Butter Bean - Reusable knock-back
  1954. 340:Caffeine Pill - Speed up + size down
  1955. 319:Cain's Other Eye - Near-sighted friend
  1956. 412:Cambion Conception - Feed them hate
  1957. 301:Cancer - HP up + you feel protected
  1958. 307:Capricorn - All stats up
  1959. 356:Car Battery - Double charge!
  1960. 165:Cat-o-nine-tails - Shot speed + damage up
  1961. 162:Celtic Cross - You feel blessed
  1962. 387:Censer - Peace be with you
  1963. 216:Ceremonial Robes - Sin up
  1964. 208:Champion Belt - DMG + Challenge up
  1965. 402:Chaos - !!!
  1966. 372:Charged Baby - Bbbzzzzzt!
  1967. 62:Charm of the Vampire - Kills heal
  1968. 154:Chemical Peel - DMG up
  1969. 69:Chocolate Milk - Charge shots
  1970. 423:Circle of Protection - protect me from myself
  1971. 369:Continuum - Transcendent tears
  1972. 241:Contract from Below - Wealth... but at what cost?
  1973. 296:Converter - Convert your soul
  1974. 354:Crack Jacks - Don't swallow the prize!
  1975. 160:Crack the Sky - Holy white death
  1976. 4:Cricket's Head - DMG up
  1977. 224:Cricket's Body - Splash damage + tears up
  1978. 415:Crown of Light - The untainted gain power
  1979. 158:Crystal Ball - I see my future
  1980. 73:Cube of Meat - Gotta meat 'em all
  1981. 48:Cupid's Arrow - Piercing shots
  1982. 371:Curse of the Tower - You feel cursed...
  1983. 316:Cursed Eye - Cursed charge shot
  1984. 285:D10 - Reroll enemies
  1985. 283:D100 - REEROLLLLL!
  1986. 386:D12 - Rerolls rocks
  1987. 166:D20 - Reroll the basics
  1988. 284:D4 - Reroll into something else
  1989. 437:D7 - Reroll Rewards!
  1990. 406:D8 - Reroll stats
  1991. 175:Dad's Key - Opens all doors...
  1992. 170:Daddy Longlegs - Daddy's love
  1993. 278:Dark Bum - He wants to take your life
  1994. 259:Dark Matter - Fear shot
  1995. 117:Dead Bird - Protective buddy
  1996. 81:Dead Cat - 9 lives
  1997. 185:Dead Dove - Flight + spectral tears
  1998. 373:Dead Eye - Accuracy brings power!
  1999. 336:Dead Onion - Toxic aura tears
  2000. 124:Dead Sea Scrolls - It's a mystery
  2001. 237:Death's Touch - Penetrative shot + DMG up
  2002. 85:Deck of Cards - Reusable card generator
  2003. 416:Deep Pockets - More stuff to carry!
  2004. 113:Demon Baby - Auto-turret friend
  2005. 24:Dessert - HP up
  2006. 23:Dinner - HP up
  2007. 347:Diplopia - Double item vision
  2008. 57:Distant Admiration - Attack fly
  2009. 47:Doctor's Remote - Reusable air strike
  2010. 52:Dr. Fetus - ???
  2011. 265:Dry Baby - Immortal friend
  2012. 236:E. Coli - Turdy touch
  2013. 381:Eden's Blessing - Your future shines brighter
  2014. 409:Empty Vessel - I reward an empty vessel
  2015. 168:Epic Fetus - On-demand air strike
  2016. 368:Epiphora - Intensifying tears
  2017. 310:Eve's Mascara - Shot speed down + DMG up
  2018. 410:Evil Eye - Eye shot!
  2019. 240:Experimental Treatment - All stats up... then shuffled
  2020. 401:Explosivo - Sticky bomb shot!
  2021. 204:Fanny Pack - Filled with goodies
  2022. 404:Farting Baby - He farts!
  2023. 179:Fate - Flight eternal
  2024. 361:Fate's reward - Your fate beside you
  2025. 257:Fire Mind - Flaming tears
  2026. 291:Flush! - ...
  2027. 128:Forever alone - Attack fly
  2028. 127:Forget Me Now - I don't remember...
  2029. 364:Friend Zone - Friendly fly
  2030. 382:Friendly Ball - Gotta fetch 'em all!
  2031. 418:Fruit Cake - Rainbow Effects!
  2032. 405:GB Bug - Game breaking bug, right away!
  2033. 318:Gemini - Conjoined friend
  2034. 163:Ghost Baby - Spectral buddy
  2035. 225:Gimpy - Sweet suffering
  2036. 352:Glass Cannon - Be gentle...
  2037. 432:Glitter Bombs - Prize Bombs!
  2038. 422:Glowing Hour Glass - Turn back time
  2039. 210:Gnawed Leaf - Unbreakable
  2040. 215:Goat Head - He accepts your offering
  2041. 331:Godhead - God tears
  2042. 398:God's Flesh - Shrink shot!
  2043. 70:Growth Hormones - Speed + DMG up
  2044. 112:Guardian Angel - Extra protection
  2045. 206:Guillotine - An out-of-body experience
  2046. 212:Guppy's Collar - Eternal life?
  2047. 187:Guppy's Hairball - Swing it
  2048. 145:Guppy's Head - Reusable fly hive
  2049. 133:Guppy's Paw - Soul converter
  2050. 134:Guppy's Tail - Cursed?
  2051. 156:Habit - Item martyr
  2052. 10:Halo of Flies - Projectile protection
  2053. 167:Harlequin Baby - Double shot buddy
  2054. 293:Head of Krampus - Krampus rage
  2055. 429:Head of the Keeper - Penny tears!
  2056. 269:Headless Baby - Bloody friend
  2057. 248:Hive Mind - Giant spiders and flies
  2058. 184:Holy Grail - Flight + HP up
  2059. 374:Holy Light - Holy shot!
  2060. 313:Holy Mantle - Holy shield
  2061. 178:Holy Water - Splash!
  2062. 375:Host Hat - Nice hat!
  2063. 256:Hot Bombs - Burning blast +5 bombs
  2064. 282:How to Jump - It's time you learned how
  2065. 203:Humbleing Bundle - 1+1 free 4Evar
  2066. 413:Immaculate Conception - Feed them love
  2067. 360:Incubus - Dark friend
  2068. 242:Infamy - Damage reduction
  2069. 148:Infestation - They grow inside
  2070. 234:Infestation 2 - Infestation shot
  2071. 149:Ipecac - Explosive shots
  2072. 201:Iron Bar - Concussive tears
  2073. 276:Isaac's Heart - Protect it
  2074. 323:Isaac's Tears - Collected tears
  2075. 135:IV Bag - Portable blood bank
  2076. 434:Jar of Flies - gotta catch 'em all?
  2077. 197:Jesus Juice - Damage + range up
  2078. 311:Judas' Shadow - Sweet revenge
  2079. 266:Juicy Sack - Sticky babies
  2080. 40:Kamikaze! - Become the bomb!
  2081. 388:Key Bum - He wants your keys!
  2082. 238:Key Piece 1 - ???
  2083. 239:Key Piece 2 - ???
  2084. 421:Kidney Bean - Love Toots!
  2085. 440:Kidney Stone - Matt's Kidney Stone
  2086. 343:Latch Key - Luck up
  2087. 332:Lazarus' Rags - Eternal life?
  2088. 270:Leech - Blood sucker
  2089. 56:Lemon Mishap - Oops...
  2090. 302:Leo - Stompy
  2091. 304:Libra - You feel balanced
  2092. 362:Lil Chest - What's in the box?
  2093. 384:Lil Gurdy - A gurd of your own!
  2094. 435:Lil Loki - 4-way buddy!
  2095. 275:Lil' Brimstone - Evil friend
  2096. 277:Lil' Haunt - Fear him
  2097. 252:Little Baggy - Extra pill room
  2098. 96:Little C.H.A.D. - Gives kisses
  2099. 88:Little Chubby - Attack buddy
  2100. 99:Little Gish - Sticky friend
  2101. 100:Little Steven - Psychic friend
  2102. 87:Loki's Horns - Cross tears
  2103. 82:Lord of the Pit - Demon wings
  2104. 213:Lost Contact - Shielded tears
  2105. 365:Lost Fly - Lost protector
  2106. 46:Lucky Foot - Luck up
  2107. 22:Lunch - HP up
  2108. 411:Lusty Blood - Their blood brings rage!
  2109. 312:Maggy's Bow - HP up + you feel healthy
  2110. 194:Magic 8 Ball - Shot speed up
  2111. 295:Magic Fingers - Pay to play
  2112. 12:Magic Mushroom - All stats up!
  2113. 253:Magic Scab - HP + luck up
  2114. 53:Magneto - Item snatcher
  2115. 394:Marked - Directed tears
  2116. 344:Match Book - Evil up
  2117. 399:Maw Of The Void - Consume thy enemy!
  2118. 193:MEAT! - DMG + HP up
  2119. 351:Mega Bean - Giga Fart!
  2120. 441:Mega Blast - Laser breath
  2121. 202:Midas' Touch - Golden touch
  2122. 436:Milk! - Don't cry over it...
  2123. 427:Mine Crafter - Booom!
  2124. 71:Mini Mush - Speed + range up
  2125. 258:Missing No. - Syntax error
  2126. 262:Missing Page 2 - Evil up. Your enemies will pay!
  2127. 173:Mitre - You feel blessed
  2128. 102:Mom's Bottle of Pills - Reusable pill generator
  2129. 439:Mom's Box - What's inside?
  2130. 39:Mom's Bra - Mass fear
  2131. 195:Mom's Coin Purse - What's all this...?
  2132. 110:Mom's Contacts - Freeze effect
  2133. 55:Mom's Eye - Eye in the back of your head
  2134. 200:Mom's Eyeshadow - Charm tears
  2135. 30:Mom's Heels - Range up
  2136. 199:Mom's Key - Less is now more +2 keys
  2137. 114:Mom's Knife - Stab stab stab
  2138. 31:Mom's Lipstick - Range up
  2139. 41:Mom's Pad - Gross...
  2140. 355:Mom's Pearls - Range + luck up
  2141. 228:Mom's Perfume - Fear shot
  2142. 139:Mom's Purse - More trinket room
  2143. 29:Mom's Underwear - Range up
  2144. 217:Mom's Wig - You feel itchy...
  2145. 109:Money = Power - $$$ = DMG
  2146. 322:Mongo Baby - Mongo friend
  2147. 123:Monster Manual - Temporary buddy generator
  2148. 229:Monstro's Lung - Charged attack
  2149. 86:Monstro's Tooth - Summon Monstro
  2150. 414:More Options - There are even more options!
  2151. 37:Mr. Boom - Reusable bomb buddy
  2152. 106:Mr. Mega - Blast damage
  2153. 370:Mr. Dolly - Range + tears up
  2154. 431:Multidimensional Baby - ydduB Buddy
  2155. 153:Mutant Spider - Quad shot
  2156. 5:My Reflection - Boomerang tears
  2157. 77:My Little Unicorn - Temporary badass
  2158. 433:My Shadow - Me! and my shaaaadow!
  2159. 317:Mysterious Liquid - Toxic splash damage
  2160. 271:Mystery Sack - ?
  2161. 425:Night Light - scared of the dark?
  2162. 378:No. 2 - Uh oh...
  2163. 0:-None-
  2164. 147:Notched Axe - Rocks don't stand a chance
  2165. 6:Number One - Tears up
  2166. 426:Obsessed Fan - Follows my every move...
  2167. 121:Odd Mushroom - DMG up
  2168. 120:Odd Mushroom - Fire rate up
  2169. 219:Old Bandage - HP up
  2170. 115:Ouija Board - Spectral tears
  2171. 141:Pageant Boy - Ultimate grand supreme
  2172. 297:Pandora's Box - ? ?
  2173. 430:Papa Fly - Turret follower
  2174. 380:Pay To Play - Money talks
  2175. 51:Pentagram - DMG up
  2176. 75:PHD - Better pills
  2177. 227:Piggy Bank - My life savings
  2178. 309:Pisces - Tears up + knock-back shot
  2179. 428:PJs - You feel cozy
  2180. 348:Placebo - Pill mimic
  2181. 218:Placenta - Regeneration + HP up
  2182. 169:Polyphemus - Mega tears
  2183. 177:Portable Slot - Gamble 24/7
  2184. 146:Prayer Card - Reusable eternity
  2185. 261:Proptosis - Short range mega tears
  2186. 281:Punching Bag - Scape goat
  2187. 379:Pupula Duplex - Wide shot
  2188. 407:Purity - Aura stat boost
  2189. 190:Pyro - 99 bombs
  2190. 223:Pyromaniac - It hurts so good +5 bombs
  2191. 174:Rainbow Baby - Random buddy
  2192. 16:Raw Liver - HP up
  2193. 126:Razor Blade - Feel my pain
  2194. 289:Red Candle - Flame on
  2195. 137:Remote Detonator - Remote bomb detonation
  2196. 376:Restock - Never ending stores!
  2197. 95:Robo-Baby - Friends 'till the bbbbzzzt
  2198. 267:Robo-Baby 2.0 - We worked out all the kinks
  2199. 14:Roid Rage - Speed and range up
  2200. 72:Rosary - Faith up
  2201. 26:Rotten Meat - HP up
  2202. 268:Rotten Baby - Infested friend
  2203. 221:Rubber Cement - Bouncing tears
  2204. 389:Rune Bag - Rune generator
  2205. 94:Sack of Pennies - Gives money
  2206. 424:Sack Head - More sacks!
  2207. 182:Sacred Heart - Homing shots + DMG up
  2208. 172:Sacrificial Dagger - My fate protects me
  2209. 220:Sad Bombs - Tear blasts +5 bombs
  2210. 339:Safety Pin - Evil + range + shot speed up
  2211. 306:Sagittarius - Penetrative shot + speed up
  2212. 321:Samson's Chains - The ol' ball and chain
  2213. 292:Satanic Bible - Reusable evil
  2214. 142:Scapular - You have been blessed
  2215. 366:Scatter Bombs - We put bombs in your bombs!
  2216. 325:Scissors - Lose your head
  2217. 305:Scorpio - Poison tears
  2218. 255:Screw - Tears + shot speed up
  2219. 390:Seraphim - Sworn friend
  2220. 393:Serpent's Kiss - The kiss of death
  2221. 205:Sharp Plug - Charge with blood
  2222. 49:Shoop da Whoop! - BLLLARRRRGGG!
  2223. 280:Sissy Longlegs - She loves you
  2224. 67:Sister Maggy - Friends 'till the end
  2225. 9:Skatole - Fly love
  2226. 17:Skeleton Key - 99 keys
  2227. 264:Smart Fly - Revenge fly
  2228. 189:SMB Super Fan - All stats up
  2229. 330:Soy Milk - DMG down + tears way up
  2230. 400:Spear Of Destiny - Your destiny
  2231. 143:Speed Ball - Speed + shot speed up
  2232. 91:Spelunker Hat - See-through doors
  2233. 89:Spider Bite - Slow effect
  2234. 171:Spider Butt - Mass enemy slowdown + damage
  2235. 403:Spider Mod - Mod buddy!
  2236. 211:Spiderbaby - Spider revenge
  2237. 159:Spirit of the Night - Scary
  2238. 3:Spoon Bender - Homing shots
  2239. 196:Squeezy - Tears up
  2240. 251:Starter Deck - Extra card room
  2241. 64:Steam Sale - 50% off
  2242. 176:Stem Cells - HP up
  2243. 50:Steven - DMG up
  2244. 367:Sticky Bombs - Egg sack bombs!
  2245. 138:Stigmata - DMG + HP up
  2246. 232:Stop Watch - Let's slow this down a bit...
  2247. 315:Strange Attractor - Magnetic tears
  2248. 417:Succubus - Damage booster
  2249. 92:Super Bandage - +2 hearts
  2250. 363:Sworn Protector - Protective friend
  2251. 345:Synthoil - DMG + range up
  2252. 38:Tammy's Head - Reusable tear burst
  2253. 299:Taurus - Speed down + rage is building
  2254. 383:Tear Detonator - Remote tear detonation
  2255. 395:Tech X - Laser ring tears
  2256. 244:Tech.5 - It's still being tested...
  2257. 68:Technology - Laser tears
  2258. 152:Technology 2 - Laser
  2259. 192:Telepathy For Dummies - Temporary psychic shot
  2260. 44:Teleport! - Teleport!
  2261. 419:Teleport 2.0 - I-teleport!
  2262. 63:The Battery - Stores energy
  2263. 111:The Bean - Toot on command
  2264. 28:The Belt - Speed up
  2265. 33:The Bible - Temporary flight
  2266. 180:The Black Bean - Toot on touch
  2267. 334:The Body - I feel all
  2268. 34:The Book of Belial - Temporary DMG up
  2269. 97:The Book of Sin - Reusable item generator
  2270. 338:The Boomerang - It will never leave you
  2271. 164:The Candle - Reusable flames
  2272. 103:The Common Cold - Poison damage
  2273. 21:The Compass - The end is near
  2274. 105:The D6 - Reroll your destiny
  2275. 93:The Gamekid - Temporary Man-Pac
  2276. 101:The Halo - All stats up
  2277. 66:The Hourglass - Temporary enemy slowdown
  2278. 2:The Inner Eye - Triple shot
  2279. 290:The Jar - Save your life
  2280. 60:The Ladder - Building bridges
  2281. 329:The Ludovico Technique - Controlled tears
  2282. 79:The Mark - DMG up
  2283. 333:The Mind - I know all
  2284. 151:The Mulligan - They grow inside
  2285. 83:The Nail - Temporary demon form
  2286. 35:The Necronomicon - Mass room damage
  2287. 328:The Negative - Fate chosen
  2288. 80:The Pact - DMG + tears up
  2289. 104:The Parasite - Split shot
  2290. 155:The Peeper - Plop!
  2291. 107:The Pinking Shears - Cut and run
  2292. 327:The Polaroid - Fate chosen
  2293. 36:The Poop - Plop!
  2294. 98:The Relic - Soul generator
  2295. 1:The Sad Onion - Tears up
  2296. 90:The Small Rock - DMG up
  2297. 335:The Soul - I am all
  2298. 13:The Virus - Poison touch
  2299. 108:The Wafer - Damage resistance
  2300. 358:The Wiz - Double wiz shot!
  2301. 249:There's Options - More options
  2302. 314:Thunder Thighs - HP up + speed down + you feel stompy
  2303. 233:Tiny Planet - Orbiting tears + range up
  2304. 183:Tooth Picks - Tears + shot speed up
  2305. 341:Torn Photo - Tears + shot speed up
  2306. 150:Tough Love - Tooth shot
  2307. 350:Toxic Shock - Mass poison
  2308. 397:Tractor Beam - Controlled tears
  2309. 20:Transcendence - We all float down here...
  2310. 54:Treasure Map - Full visible map
  2311. 243:Trinity Shield - You feel guarded
  2312. 324:Undefined - Undefined
  2313. 298:Unicorn Stump - You feel stumped
  2314. 396:Ventricle Razor - Short cutter
  2315. 303:Virgo - You feel refreshed and protected
  2316. 84:We Need To Go Deeper! - Reusable level skip
  2317. 181:White Pony - Flight + holy death
  2318. 122:Whore of Babylon - Curse up
  2319. 32:Wire Coat Hanger - Tears up
  2320. 27:Wooden Spoon - Speed up
  2321. 349:Wooden Nickel - Flip a coin
  2322. 76:X-Ray Vision - I've seen everything
  2323. 45:Yum Heart - Reusable regeneration
  2324. 392:Zodiac - The heavens will change you
  2325. </DropDownList>
  2326. <LastState Value="??" Activated="0" RealAddress="065D0004"/>
  2327. <Color>80000008</Color>
  2328. <VariableType>4 Bytes</VariableType>
  2329. <Address>pFloor+4</Address>
  2330. <CheatEntries>
  2331. <CheatEntry>
  2332. <ID>950</ID>
  2333. <Description>"# of Item Collected"</Description>
  2334. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2335. <Color>80000008</Color>
  2336. <VariableType>4 Bytes</VariableType>
  2337. <Address>pFloor+8</Address>
  2338. <Offsets>
  2339. <Offset>0</Offset>
  2340. </Offsets>
  2341. </CheatEntry>
  2342. </CheatEntries>
  2343. </CheatEntry>
  2344. </CheatEntries>
  2345. </CheatEntry>
  2346. <CheatEntry>
  2347. <ID>448</ID>
  2348. <Description>"Player1 structure"</Description>
  2349. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2350. <ShowAsHex>1</ShowAsHex>
  2351. <Color>80000008</Color>
  2352. <VariableType>Array of byte</VariableType>
  2353. <ByteLength>4</ByteLength>
  2354. <Address>pFloor</Address>
  2355. <Offsets>
  2356. <Offset>0</Offset>
  2357. <Offset>0</Offset>
  2358. <Offset>B7D8</Offset>
  2359. </Offsets>
  2360. </CheatEntry>
  2361. <CheatEntry>
  2362. <ID>900</ID>
  2363. <Description>"Player Character ID?"</Description>
  2364. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2365. <Color>80000008</Color>
  2366. <VariableType>4 Bytes</VariableType>
  2367. <Address>pFloor</Address>
  2368. <Offsets>
  2369. <Offset>1B7C</Offset>
  2370. <Offset>0</Offset>
  2371. <Offset>B7D8</Offset>
  2372. </Offsets>
  2373. </CheatEntry>
  2374. <CheatEntry>
  2375. <ID>970</ID>
  2376. <Description>"Isaac Width Scale (affects collision radius)"</Description>
  2377. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2378. <Color>80000008</Color>
  2379. <VariableType>Float</VariableType>
  2380. <Address>pFloor</Address>
  2381. <Offsets>
  2382. <Offset>1C80</Offset>
  2383. <Offset>0</Offset>
  2384. <Offset>B7D8</Offset>
  2385. </Offsets>
  2386. </CheatEntry>
  2387. <CheatEntry>
  2388. <ID>969</ID>
  2389. <Description>"Isaac Height Scale"</Description>
  2390. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2391. <Color>80000008</Color>
  2392. <VariableType>Float</VariableType>
  2393. <Address>pFloor</Address>
  2394. <Offsets>
  2395. <Offset>1C84</Offset>
  2396. <Offset>0</Offset>
  2397. <Offset>B7D8</Offset>
  2398. </Offsets>
  2399. </CheatEntry>
  2400. </CheatEntries>
  2401. </CheatEntry>
  2402. <CheatEntry>
  2403. <ID>516</ID>
  2404. <Description>"Game Stats"</Description>
  2405. <Options moHideChildren="1"/>
  2406. <LastState Value="" Activated="0" RealAddress="00000000"/>
  2407. <Color>FF0000</Color>
  2408. <GroupHeader>1</GroupHeader>
  2409. <CheatEntries>
  2410. <CheatEntry>
  2411. <ID>515</ID>
  2412. <Description>"(( Stats Structure ))"</Description>
  2413. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2414. <Color>80000008</Color>
  2415. <VariableType>Byte</VariableType>
  2416. <Address>pStats</Address>
  2417. <Offsets>
  2418. <Offset>0</Offset>
  2419. </Offsets>
  2420. </CheatEntry>
  2421. <CheatEntry>
  2422. <ID>551</ID>
  2423. <Description>"Best Streak"</Description>
  2424. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2425. <Color>80000008</Color>
  2426. <VariableType>4 Bytes</VariableType>
  2427. <Address>pStats</Address>
  2428. <Offsets>
  2429. <Offset>1BC</Offset>
  2430. </Offsets>
  2431. </CheatEntry>
  2432. <CheatEntry>
  2433. <ID>537</ID>
  2434. <Description>"Loss Streak"</Description>
  2435. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2436. <Color>80000008</Color>
  2437. <VariableType>4 Bytes</VariableType>
  2438. <Address>pStats</Address>
  2439. <Offsets>
  2440. <Offset>2DC</Offset>
  2441. </Offsets>
  2442. </CheatEntry>
  2443. <CheatEntry>
  2444. <ID>536</ID>
  2445. <Description>"Win Streak"</Description>
  2446. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2447. <Color>80000008</Color>
  2448. <VariableType>4 Bytes</VariableType>
  2449. <Address>pStats</Address>
  2450. <Offsets>
  2451. <Offset>1B8</Offset>
  2452. </Offsets>
  2453. </CheatEntry>
  2454. <CheatEntry>
  2455. <ID>535</ID>
  2456. <Description>"Devil Deals Taken?"</Description>
  2457. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2458. <Color>80000008</Color>
  2459. <VariableType>4 Bytes</VariableType>
  2460. <Address>pStats</Address>
  2461. <Offsets>
  2462. <Offset>1A0</Offset>
  2463. </Offsets>
  2464. </CheatEntry>
  2465. <CheatEntry>
  2466. <ID>534</ID>
  2467. <Description>"Angel Items Taken?"</Description>
  2468. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2469. <Color>80000008</Color>
  2470. <VariableType>4 Bytes</VariableType>
  2471. <Address>pStats</Address>
  2472. <Offsets>
  2473. <Offset>19C</Offset>
  2474. </Offsets>
  2475. </CheatEntry>
  2476. <CheatEntry>
  2477. <ID>533</ID>
  2478. <Description>"Eden Tokens"</Description>
  2479. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2480. <Color>80000008</Color>
  2481. <VariableType>4 Bytes</VariableType>
  2482. <Address>pStats</Address>
  2483. <Offsets>
  2484. <Offset>1B4</Offset>
  2485. </Offsets>
  2486. </CheatEntry>
  2487. <CheatEntry>
  2488. <ID>532</ID>
  2489. <Description>"Donated Coins"</Description>
  2490. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2491. <Color>80000008</Color>
  2492. <VariableType>4 Bytes</VariableType>
  2493. <Address>pStats</Address>
  2494. <Offsets>
  2495. <Offset>1B0</Offset>
  2496. </Offsets>
  2497. </CheatEntry>
  2498. <CheatEntry>
  2499. <ID>531</ID>
  2500. <Description>"Slot Machines Destroyed"</Description>
  2501. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2502. <Color>80000008</Color>
  2503. <VariableType>4 Bytes</VariableType>
  2504. <Address>pStats</Address>
  2505. <Offsets>
  2506. <Offset>1A8</Offset>
  2507. </Offsets>
  2508. </CheatEntry>
  2509. <CheatEntry>
  2510. <ID>530</ID>
  2511. <Description>"Blood Donations?"</Description>
  2512. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2513. <Color>80000008</Color>
  2514. <VariableType>4 Bytes</VariableType>
  2515. <Address>pStats</Address>
  2516. <Offsets>
  2517. <Offset>1A4</Offset>
  2518. </Offsets>
  2519. </CheatEntry>
  2520. <CheatEntry>
  2521. <ID>529</ID>
  2522. <Description>"Arcades Visited?"</Description>
  2523. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2524. <Color>80000008</Color>
  2525. <VariableType>4 Bytes</VariableType>
  2526. <Address>pStats</Address>
  2527. <Offsets>
  2528. <Offset>184</Offset>
  2529. </Offsets>
  2530. </CheatEntry>
  2531. <CheatEntry>
  2532. <ID>528</ID>
  2533. <Description>"Shell Game Played?"</Description>
  2534. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2535. <Color>80000008</Color>
  2536. <VariableType>4 Bytes</VariableType>
  2537. <Address>pStats</Address>
  2538. <Offsets>
  2539. <Offset>198</Offset>
  2540. </Offsets>
  2541. </CheatEntry>
  2542. <CheatEntry>
  2543. <ID>527</ID>
  2544. <Description>"Lamb Kills?"</Description>
  2545. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2546. <Color>80000008</Color>
  2547. <VariableType>4 Bytes</VariableType>
  2548. <Address>pStats</Address>
  2549. <Offsets>
  2550. <Offset>1C4</Offset>
  2551. </Offsets>
  2552. </CheatEntry>
  2553. <CheatEntry>
  2554. <ID>526</ID>
  2555. <Description>"??? Kills?"</Description>
  2556. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2557. <Color>80000008</Color>
  2558. <VariableType>4 Bytes</VariableType>
  2559. <Address>pStats</Address>
  2560. <Offsets>
  2561. <Offset>1C0</Offset>
  2562. </Offsets>
  2563. </CheatEntry>
  2564. <CheatEntry>
  2565. <ID>525</ID>
  2566. <Description>"Satan Kills?"</Description>
  2567. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2568. <Color>80000008</Color>
  2569. <VariableType>4 Bytes</VariableType>
  2570. <Address>pStats</Address>
  2571. <Offsets>
  2572. <Offset>194</Offset>
  2573. </Offsets>
  2574. </CheatEntry>
  2575. <CheatEntry>
  2576. <ID>524</ID>
  2577. <Description>"Isaac Kills?"</Description>
  2578. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2579. <Color>80000008</Color>
  2580. <VariableType>4 Bytes</VariableType>
  2581. <Address>pStats</Address>
  2582. <Offsets>
  2583. <Offset>18C</Offset>
  2584. </Offsets>
  2585. </CheatEntry>
  2586. <CheatEntry>
  2587. <ID>523</ID>
  2588. <Description>"Death Cards used?"</Description>
  2589. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2590. <Color>80000008</Color>
  2591. <VariableType>4 Bytes</VariableType>
  2592. <Address>pStats</Address>
  2593. <Offsets>
  2594. <Offset>17C</Offset>
  2595. </Offsets>
  2596. </CheatEntry>
  2597. <CheatEntry>
  2598. <ID>522</ID>
  2599. <Description>"Shop Keepers Destroyed"</Description>
  2600. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2601. <Color>80000008</Color>
  2602. <VariableType>4 Bytes</VariableType>
  2603. <Address>pStats</Address>
  2604. <Offsets>
  2605. <Offset>190</Offset>
  2606. </Offsets>
  2607. </CheatEntry>
  2608. <CheatEntry>
  2609. <ID>521</ID>
  2610. <Description>"Poop Destroyed"</Description>
  2611. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2612. <Color>80000008</Color>
  2613. <VariableType>4 Bytes</VariableType>
  2614. <Address>pStats</Address>
  2615. <Offsets>
  2616. <Offset>174</Offset>
  2617. </Offsets>
  2618. </CheatEntry>
  2619. <CheatEntry>
  2620. <ID>520</ID>
  2621. <Description>"Tinted/Marked Rocks Destroryed"</Description>
  2622. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2623. <Color>80000008</Color>
  2624. <VariableType>4 Bytes</VariableType>
  2625. <Address>pStats</Address>
  2626. <Offsets>
  2627. <Offset>170</Offset>
  2628. </Offsets>
  2629. </CheatEntry>
  2630. <CheatEntry>
  2631. <ID>519</ID>
  2632. <Description>"Rocks Destroyed"</Description>
  2633. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2634. <Color>80000008</Color>
  2635. <VariableType>4 Bytes</VariableType>
  2636. <Address>pStats</Address>
  2637. <Offsets>
  2638. <Offset>16C</Offset>
  2639. </Offsets>
  2640. </CheatEntry>
  2641. <CheatEntry>
  2642. <ID>518</ID>
  2643. <Description>"Mom Kills"</Description>
  2644. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2645. <Color>80000008</Color>
  2646. <VariableType>4 Bytes</VariableType>
  2647. <Address>pStats</Address>
  2648. <Offsets>
  2649. <Offset>168</Offset>
  2650. </Offsets>
  2651. </CheatEntry>
  2652. <CheatEntry>
  2653. <ID>517</ID>
  2654. <Description>"Deaths"</Description>
  2655. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2656. <Color>80000008</Color>
  2657. <VariableType>4 Bytes</VariableType>
  2658. <Address>pStats</Address>
  2659. <Offsets>
  2660. <Offset>188</Offset>
  2661. </Offsets>
  2662. </CheatEntry>
  2663. <CheatEntry>
  2664. <ID>911</ID>
  2665. <Description>"Greed Donation Machine"</Description>
  2666. <Options moHideChildren="1"/>
  2667. <LastState Value="" Activated="0" RealAddress="00000000"/>
  2668. <Color>80000008</Color>
  2669. <GroupHeader>1</GroupHeader>
  2670. <CheatEntries>
  2671. <CheatEntry>
  2672. <ID>893</ID>
  2673. <Description>"Total Coins Donated"</Description>
  2674. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2675. <Color>80000008</Color>
  2676. <VariableType>4 Bytes</VariableType>
  2677. <Address>pStats</Address>
  2678. <Offsets>
  2679. <Offset>314</Offset>
  2680. </Offsets>
  2681. </CheatEntry>
  2682. <CheatEntry>
  2683. <ID>899</ID>
  2684. <Description>"Donated on Isaac"</Description>
  2685. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2686. <Color>80000008</Color>
  2687. <VariableType>4 Bytes</VariableType>
  2688. <Address>pStats</Address>
  2689. <Offsets>
  2690. <Offset>3B8</Offset>
  2691. </Offsets>
  2692. </CheatEntry>
  2693. <CheatEntry>
  2694. <ID>903</ID>
  2695. <Description>"Donated on Magdalene"</Description>
  2696. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2697. <Color>80000008</Color>
  2698. <VariableType>4 Bytes</VariableType>
  2699. <Address>pStats</Address>
  2700. <Offsets>
  2701. <Offset>3BC</Offset>
  2702. </Offsets>
  2703. </CheatEntry>
  2704. <CheatEntry>
  2705. <ID>902</ID>
  2706. <Description>"Donated on Cain"</Description>
  2707. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2708. <Color>80000008</Color>
  2709. <VariableType>4 Bytes</VariableType>
  2710. <Address>pStats</Address>
  2711. <Offsets>
  2712. <Offset>3C0</Offset>
  2713. </Offsets>
  2714. </CheatEntry>
  2715. <CheatEntry>
  2716. <ID>901</ID>
  2717. <Description>"Donated on Judas"</Description>
  2718. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2719. <Color>80000008</Color>
  2720. <VariableType>4 Bytes</VariableType>
  2721. <Address>pStats</Address>
  2722. <Offsets>
  2723. <Offset>3C4</Offset>
  2724. </Offsets>
  2725. </CheatEntry>
  2726. <CheatEntry>
  2727. <ID>904</ID>
  2728. <Description>"Donated on ???"</Description>
  2729. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2730. <Color>80000008</Color>
  2731. <VariableType>4 Bytes</VariableType>
  2732. <Address>pStats</Address>
  2733. <Offsets>
  2734. <Offset>3C8</Offset>
  2735. </Offsets>
  2736. </CheatEntry>
  2737. <CheatEntry>
  2738. <ID>906</ID>
  2739. <Description>"Donated on Eve"</Description>
  2740. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2741. <Color>80000008</Color>
  2742. <VariableType>4 Bytes</VariableType>
  2743. <Address>pStats</Address>
  2744. <Offsets>
  2745. <Offset>3CC</Offset>
  2746. </Offsets>
  2747. </CheatEntry>
  2748. <CheatEntry>
  2749. <ID>905</ID>
  2750. <Description>"Donated on Samson"</Description>
  2751. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2752. <Color>80000008</Color>
  2753. <VariableType>4 Bytes</VariableType>
  2754. <Address>pStats</Address>
  2755. <Offsets>
  2756. <Offset>3D0</Offset>
  2757. </Offsets>
  2758. </CheatEntry>
  2759. <CheatEntry>
  2760. <ID>907</ID>
  2761. <Description>"Donated on Azazel"</Description>
  2762. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2763. <Color>80000008</Color>
  2764. <VariableType>4 Bytes</VariableType>
  2765. <Address>pStats</Address>
  2766. <Offsets>
  2767. <Offset>3D4</Offset>
  2768. </Offsets>
  2769. </CheatEntry>
  2770. <CheatEntry>
  2771. <ID>908</ID>
  2772. <Description>"Donated on Lazarus"</Description>
  2773. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2774. <Color>80000008</Color>
  2775. <VariableType>4 Bytes</VariableType>
  2776. <Address>pStats</Address>
  2777. <Offsets>
  2778. <Offset>3D8</Offset>
  2779. </Offsets>
  2780. </CheatEntry>
  2781. <CheatEntry>
  2782. <ID>909</ID>
  2783. <Description>"Donated on Eden"</Description>
  2784. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2785. <Color>80000008</Color>
  2786. <VariableType>4 Bytes</VariableType>
  2787. <Address>pStats</Address>
  2788. <Offsets>
  2789. <Offset>3DC</Offset>
  2790. </Offsets>
  2791. </CheatEntry>
  2792. <CheatEntry>
  2793. <ID>910</ID>
  2794. <Description>"Donated on The Lost"</Description>
  2795. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2796. <Color>80000008</Color>
  2797. <VariableType>4 Bytes</VariableType>
  2798. <Address>pStats</Address>
  2799. <Offsets>
  2800. <Offset>3E0</Offset>
  2801. </Offsets>
  2802. </CheatEntry>
  2803. <CheatEntry>
  2804. <ID>912</ID>
  2805. <Description>"Donated on Lilith?"</Description>
  2806. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2807. <Color>80000008</Color>
  2808. <VariableType>4 Bytes</VariableType>
  2809. <Address>pStats</Address>
  2810. <Offsets>
  2811. <Offset>3E4</Offset>
  2812. </Offsets>
  2813. </CheatEntry>
  2814. </CheatEntries>
  2815. </CheatEntry>
  2816. <CheatEntry>
  2817. <ID>928</ID>
  2818. <Description>"Endings Seen"</Description>
  2819. <Options moHideChildren="1"/>
  2820. <LastState Value="" Activated="0" RealAddress="00000000"/>
  2821. <Color>80000008</Color>
  2822. <GroupHeader>1</GroupHeader>
  2823. <CheatEntries>
  2824. <CheatEntry>
  2825. <ID>929</ID>
  2826. <Description>"Ending 1"</Description>
  2827. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2828. <Color>80000008</Color>
  2829. <VariableType>4 Bytes</VariableType>
  2830. <Address>pStats</Address>
  2831. <Offsets>
  2832. <Offset>654</Offset>
  2833. </Offsets>
  2834. </CheatEntry>
  2835. <CheatEntry>
  2836. <ID>945</ID>
  2837. <Description>"Ending 2"</Description>
  2838. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2839. <Color>80000008</Color>
  2840. <VariableType>4 Bytes</VariableType>
  2841. <Address>pStats</Address>
  2842. <Offsets>
  2843. <Offset>658</Offset>
  2844. </Offsets>
  2845. </CheatEntry>
  2846. <CheatEntry>
  2847. <ID>944</ID>
  2848. <Description>"Ending 3"</Description>
  2849. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2850. <Color>80000008</Color>
  2851. <VariableType>4 Bytes</VariableType>
  2852. <Address>pStats</Address>
  2853. <Offsets>
  2854. <Offset>65C</Offset>
  2855. </Offsets>
  2856. </CheatEntry>
  2857. <CheatEntry>
  2858. <ID>943</ID>
  2859. <Description>"Ending 4"</Description>
  2860. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2861. <Color>80000008</Color>
  2862. <VariableType>4 Bytes</VariableType>
  2863. <Address>pStats</Address>
  2864. <Offsets>
  2865. <Offset>660</Offset>
  2866. </Offsets>
  2867. </CheatEntry>
  2868. <CheatEntry>
  2869. <ID>942</ID>
  2870. <Description>"Ending 5"</Description>
  2871. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2872. <Color>80000008</Color>
  2873. <VariableType>4 Bytes</VariableType>
  2874. <Address>pStats</Address>
  2875. <Offsets>
  2876. <Offset>664</Offset>
  2877. </Offsets>
  2878. </CheatEntry>
  2879. <CheatEntry>
  2880. <ID>941</ID>
  2881. <Description>"Ending 6"</Description>
  2882. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2883. <Color>80000008</Color>
  2884. <VariableType>4 Bytes</VariableType>
  2885. <Address>pStats</Address>
  2886. <Offsets>
  2887. <Offset>668</Offset>
  2888. </Offsets>
  2889. </CheatEntry>
  2890. <CheatEntry>
  2891. <ID>940</ID>
  2892. <Description>"Ending 7"</Description>
  2893. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2894. <Color>80000008</Color>
  2895. <VariableType>4 Bytes</VariableType>
  2896. <Address>pStats</Address>
  2897. <Offsets>
  2898. <Offset>66C</Offset>
  2899. </Offsets>
  2900. </CheatEntry>
  2901. <CheatEntry>
  2902. <ID>939</ID>
  2903. <Description>"Ending 8"</Description>
  2904. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2905. <Color>80000008</Color>
  2906. <VariableType>4 Bytes</VariableType>
  2907. <Address>pStats</Address>
  2908. <Offsets>
  2909. <Offset>670</Offset>
  2910. </Offsets>
  2911. </CheatEntry>
  2912. <CheatEntry>
  2913. <ID>938</ID>
  2914. <Description>"Ending 9"</Description>
  2915. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2916. <Color>80000008</Color>
  2917. <VariableType>4 Bytes</VariableType>
  2918. <Address>pStats</Address>
  2919. <Offsets>
  2920. <Offset>674</Offset>
  2921. </Offsets>
  2922. </CheatEntry>
  2923. <CheatEntry>
  2924. <ID>937</ID>
  2925. <Description>"Ending 10"</Description>
  2926. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2927. <Color>80000008</Color>
  2928. <VariableType>4 Bytes</VariableType>
  2929. <Address>pStats</Address>
  2930. <Offsets>
  2931. <Offset>678</Offset>
  2932. </Offsets>
  2933. </CheatEntry>
  2934. <CheatEntry>
  2935. <ID>936</ID>
  2936. <Description>"Ending 11"</Description>
  2937. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2938. <Color>80000008</Color>
  2939. <VariableType>4 Bytes</VariableType>
  2940. <Address>pStats</Address>
  2941. <Offsets>
  2942. <Offset>67C</Offset>
  2943. </Offsets>
  2944. </CheatEntry>
  2945. <CheatEntry>
  2946. <ID>935</ID>
  2947. <Description>"Ending 12"</Description>
  2948. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2949. <Color>80000008</Color>
  2950. <VariableType>4 Bytes</VariableType>
  2951. <Address>pStats</Address>
  2952. <Offsets>
  2953. <Offset>680</Offset>
  2954. </Offsets>
  2955. </CheatEntry>
  2956. <CheatEntry>
  2957. <ID>934</ID>
  2958. <Description>"Ending 13"</Description>
  2959. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2960. <Color>80000008</Color>
  2961. <VariableType>4 Bytes</VariableType>
  2962. <Address>pStats</Address>
  2963. <Offsets>
  2964. <Offset>684</Offset>
  2965. </Offsets>
  2966. </CheatEntry>
  2967. <CheatEntry>
  2968. <ID>933</ID>
  2969. <Description>"Ending 14"</Description>
  2970. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2971. <Color>80000008</Color>
  2972. <VariableType>4 Bytes</VariableType>
  2973. <Address>pStats</Address>
  2974. <Offsets>
  2975. <Offset>688</Offset>
  2976. </Offsets>
  2977. </CheatEntry>
  2978. <CheatEntry>
  2979. <ID>932</ID>
  2980. <Description>"Ending 15"</Description>
  2981. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2982. <Color>80000008</Color>
  2983. <VariableType>4 Bytes</VariableType>
  2984. <Address>pStats</Address>
  2985. <Offsets>
  2986. <Offset>68C</Offset>
  2987. </Offsets>
  2988. </CheatEntry>
  2989. <CheatEntry>
  2990. <ID>931</ID>
  2991. <Description>"Ending 16"</Description>
  2992. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2993. <Color>80000008</Color>
  2994. <VariableType>4 Bytes</VariableType>
  2995. <Address>pStats</Address>
  2996. <Offsets>
  2997. <Offset>690</Offset>
  2998. </Offsets>
  2999. </CheatEntry>
  3000. <CheatEntry>
  3001. <ID>930</ID>
  3002. <Description>"Ending 17"</Description>
  3003. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3004. <Color>80000008</Color>
  3005. <VariableType>4 Bytes</VariableType>
  3006. <Address>pStats</Address>
  3007. <Offsets>
  3008. <Offset>694</Offset>
  3009. </Offsets>
  3010. </CheatEntry>
  3011. <CheatEntry>
  3012. <ID>948</ID>
  3013. <Description>"Ending 18"</Description>
  3014. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3015. <Color>80000008</Color>
  3016. <VariableType>4 Bytes</VariableType>
  3017. <Address>pStats</Address>
  3018. <Offsets>
  3019. <Offset>698</Offset>
  3020. </Offsets>
  3021. </CheatEntry>
  3022. <CheatEntry>
  3023. <ID>946</ID>
  3024. <Description>"Epilogue"</Description>
  3025. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3026. <Color>80000008</Color>
  3027. <VariableType>4 Bytes</VariableType>
  3028. <Address>pStats</Address>
  3029. <Offsets>
  3030. <Offset>650</Offset>
  3031. </Offsets>
  3032. </CheatEntry>
  3033. <CheatEntry>
  3034. <ID>947</ID>
  3035. <Description>"Total?"</Description>
  3036. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3037. <Color>80000008</Color>
  3038. <VariableType>4 Bytes</VariableType>
  3039. <Address>pStats</Address>
  3040. <Offsets>
  3041. <Offset>64C</Offset>
  3042. </Offsets>
  3043. </CheatEntry>
  3044. </CheatEntries>
  3045. </CheatEntry>
  3046. <CheatEntry>
  3047. <ID>925</ID>
  3048. <Description>"Saved GameState Checksum"</Description>
  3049. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3050. <ShowAsHex>1</ShowAsHex>
  3051. <Color>80000008</Color>
  3052. <VariableType>4 Bytes</VariableType>
  3053. <Address>pStats</Address>
  3054. <Offsets>
  3055. <Offset>6F0</Offset>
  3056. </Offsets>
  3057. </CheatEntry>
  3058. </CheatEntries>
  3059. </CheatEntry>
  3060. <CheatEntry>
  3061. <ID>918</ID>
  3062. <Description>"Unlocking Secrets"</Description>
  3063. <Options moHideChildren="1"/>
  3064. <LastState Activated="0"/>
  3065. <Color>FF0000</Color>
  3066. <VariableType>Auto Assembler Script</VariableType>
  3067. <AssemblerScript>[ENABLE]
  3068. pStats+C:
  3069. db 1
  3070.  
  3071. [DISABLE]
  3072. pStats+C:
  3073. db 0
  3074. </AssemblerScript>
  3075. <CheatEntries>
  3076. <CheatEntry>
  3077. <ID>919</ID>
  3078. <Description>"Current Secret"</Description>
  3079. <DropDownList DisplayValueAsItem="1">0: (None)
  3080. 1: Magdalene
  3081. 2: Cain
  3082. 3: Judas
  3083. 4: The Womb
  3084. 5: The Harbingers
  3085. 6: A Cube of Meat
  3086. 7: The Book of Revelations
  3087. 8: Transcendence
  3088. 9: The Nail
  3089. 10: A Quarter
  3090. 11: A Fetus in a Jar
  3091. 12: The Small Rock
  3092. 13: Monstro's Tooth
  3093. 14: Lil Chubby
  3094. 15: Loki's Horns
  3095. 16: Something from the Future
  3096. 17: Something Cute
  3097. 18: Something Sticky
  3098. 19: Super Bandage Girl
  3099. 20: The Relic
  3100. 21: The Coin Bag
  3101. 22: The Book of Sin
  3102. 23: Little Gish
  3103. 24: Little Steven
  3104. 25: Little C.H.A.D.
  3105. 26: The Gamekid
  3106. 27: The Halo
  3107. 28: Mr. Mega!
  3108. 29: The D6!
  3109. 30: The Scissors
  3110. 31: The Parasite
  3111. 32: ???
  3112. 33: Everything is Terrible!!!
  3113. 34: It Lives!
  3114. 35: Mom's Contact
  3115. 36: The Necronomicon
  3116. 37: Basement Boy
  3117. 38: Spelunker Boy
  3118. 39: Dark Boy
  3119. 40: Mama's Boy
  3120. 41: Golden God
  3121. 42: Eve
  3122. 43: Mom's Knife
  3123. 44: The Razor
  3124. 45: Guardian Angel
  3125. 46: The Bomb Bag
  3126. 47: A Demon Baby
  3127. 48: A Forget me Now
  3128. 49: The D20!
  3129. 50: The Celtic Cross
  3130. 51: Abel
  3131. 52: The Curved Horn
  3132. 53: Sacrificial Knife
  3133. 54: Bloody Lust
  3134. 55: The Bloody Penny
  3135. 56: Blood Rights
  3136. 57: The Polaroid
  3137. 58: Dad's Key
  3138. 59: A blue candle
  3139. 60: Burnt Penny
  3140. 61: Lucky Toe!
  3141. 62: Epic Fetus
  3142. 63: Super Fan
  3143. 64: Counterfeit Penny
  3144. 65: Guppy's Hairball
  3145. 66: A Forgotten Horseman
  3146. 67: Samson
  3147. 68: Something Icky
  3148. 69: Platinum God
  3149. 70: Isaac's Head
  3150. 71: Maggy's Faith
  3151. 72: Judas' Tongue
  3152. 73: ???'s Soul
  3153. 74: Samson's Lock
  3154. 75: Cain's eye
  3155. 76: Eve's Bird Foot
  3156. 77: The Left Hand
  3157. 78: The Negative
  3158. 79: Azazel
  3159. 80: Lazarus
  3160. 81: Eden
  3161. 82: The Lost
  3162. 83: Dead Boy
  3163. 84: The Real Platinum God
  3164. 85: A Lucky Rock
  3165. 86: The Cellar
  3166. 87: The Catacombs
  3167. 88: Necropolis
  3168. 89: The Rune of Hagalaz
  3169. 90: The Rune of Jera
  3170. 91: The Rune of Ehwaz
  3171. 92: The Rune of Dagaz
  3172. 93: The Rune of Ansuz
  3173. 94: The Rune of Pertho
  3174. 95: The Rune of Berkano
  3175. 96: The Rune of Algiz
  3176. 97: The Chaos Card
  3177. 98: The Credit Card
  3178. 99: The Rules Card
  3179. 100: Card Against Humanity
  3180. 101: Swallowed Penny
  3181. 102: Robo Baby 2.0!
  3182. 103: Death's Touch
  3183. 104: Tech .5
  3184. 105: Missing No.
  3185. 106: Isaac's Tears
  3186. 107: The Guillotine
  3187. 108: Judas' Shadow
  3188. 109: Maggy's Bow
  3189. 110: Cain's Other Eye
  3190. 111: The Black Lipstick
  3191. 112: Eve's Mascara
  3192. 113: Fate
  3193. 114: ???'s Only Friend
  3194. 115: Samsons's Chains
  3195. 116: Lazarus' Rags
  3196. 117: Broken Ankh
  3197. 118: Store Credit
  3198. 119: Pandora's Box
  3199. 120: Suicide King
  3200. 121: A Blank Card
  3201. 122: The Book Of Secrets
  3202. 123: Mysterious Paper
  3203. 124: Mystery Sack
  3204. 125: Undefined
  3205. 126: The Satanic Bible
  3206. 127: The Demon Tail
  3207. 128: Abaddon
  3208. 129: Isaac's Heart
  3209. 130: The Mind
  3210. 131: The Body
  3211. 132: The Soul
  3212. 133: The D100
  3213. 134: A Blue Map
  3214. 135: There's Options
  3215. 136: A Black Candle
  3216. 137: A Red Candle
  3217. 138: The StopWatch
  3218. 139: The Wire Coat Hanger
  3219. 140: Ipecac
  3220. 141: Experimental Treatment
  3221. 142: Krampus
  3222. 143: Head of Krampus
  3223. 144: Super Meat Boy
  3224. 145: The Butter Bean
  3225. 146: Little Baggy
  3226. 147: Blood Bag
  3227. 148: The D4!
  3228. 149: Lost Poster
  3229. 150: Rubber Cement
  3230. 151: Store Upgrade (Lv.1)
  3231. 152: Store Upgrade (Lv.2)
  3232. 153: Store Upgrade (Lv.3)
  3233. 154: Store Upgrade (Lv.4)
  3234. 155: The Angels Await!!!
  3235. 156: Godhead
  3236. 157: Challenge #4 - Darkness Falls
  3237. 158: Challenge #5 - The Tank
  3238. 159: Challenge #6 - Solar System
  3239. 160: Challenge #7 - Suicide King
  3240. 161: Challenge #8 - Cat Got Your Tongue
  3241. 162: Challenge #9 - Demo Man
  3242. 163: Challenge #10 - Cursed!
  3243. 164: Challenge #11 - Glass Cannon
  3244. 165: Challenge #19 - The Family Man
  3245. 166: Challenge #20 - Purist
  3246. 167: Lost Baby
  3247. 168: Cute Baby
  3248. 169: Crow Baby
  3249. 170: Shadow Baby
  3250. 171: Glass Baby
  3251. 172: Wrapped Baby
  3252. 173: Begotten Baby
  3253. 174: Dead Baby
  3254. 175: -0- Baby
  3255. 176: Glitch Baby
  3256. 177: Fighting Baby
  3257. 178: Lord of the Flies
  3258. 179: Fart Baby
  3259. 180: Purity
  3260. 181: D12
  3261. 182: Betrayal
  3262. 183: Fate's Reward
  3263. 184: Athame
  3264. 185: Blind Rage
  3265. 186: Maw of the Void
  3266. 187: Empty Vessel
  3267. 188: Eden's Blessing
  3268. 189: Sworn Protector
  3269. 190: Incubus
  3270. 191: Keeper holds A Penny
  3271. 192: Lil' Chest
  3272. 193: Censer
  3273. 194: Evil Eye
  3274. 195: My Shadow
  3275. 196: Cracked Dice
  3276. 197: Black Feather
  3277. 198: Lusty Blood
  3278. 199: Lilith
  3279. 200: Key Bum
  3280. 201: GB Bug
  3281. 202: Zodiac
  3282. 203: Box of Friends
  3283. 204: Rib of Greed
  3284. 205: Cry Baby
  3285. 206: Red Baby
  3286. 207: Green Baby
  3287. 208: Brown Baby
  3288. 209: Blue Baby
  3289. 210: Lil' Baby
  3290. 211: Rage Baby
  3291. 212: Black Baby
  3292. 213: Long Baby
  3293. 214: Yellow Baby
  3294. 215: White Baby
  3295. 216: Big Baby
  3296. 217: Noose Baby
  3297. 218: Rune Bag
  3298. 219: Cambion Conception
  3299. 220: Serpent's Kiss
  3300. 221: Succubus
  3301. 222: Immaculate Conception
  3302. 223: Goat Head Baby
  3303. 224: Gold Heart
  3304. 225: Get out of Jail Free Card
  3305. 226: Gold Bomb
  3306. 227: 2 new Pills (#1)
  3307. 228: 2 new Pills (#2)
  3308. 229: Poker Chip
  3309. 230: Stud Finder
  3310. 231: D8
  3311. 232: Kidney Stone
  3312. 233: Blank Rune
  3313. 234: Blue Womb
  3314. 235: 1001%!!
  3315. 236: Keeper holds Wooden Nickel
  3316. 237: Keeper holds Store Key
  3317. 238: Deep Pockets
  3318. 239: Karma
  3319. 240: Sticky Nickels
  3320. 241: Greed Baby
  3321. 242: Lucky Pennies
  3322. 243: Special Hanging Shopkeepers
  3323. 244: Wooden Nickel
  3324. 245: Cain holds Paperclip
  3325. 246: Everything Is Terrible 2!
  3326. 247: Special Shopkeepers
  3327. 248: Eve holds Razor Blade
  3328. 249: Store Key
  3329. 250: Lost holds Holy Mantle
  3330. 251: Keeper
  3331. 252: Hive baby
  3332. 253: Buddy Baby
  3333. 254: Colorful Baby
  3334. 255: Whore Baby
  3335. 256: Cracked Baby
  3336. 257: Dripping Baby
  3337. 258: Blinding Baby
  3338. 259: Sucky Baby
  3339. 260: Dark Baby
  3340. 261: Picky Baby
  3341. 262: Revenge Baby
  3342. 263: Belial Baby
  3343. 264: Sale Baby
  3344. 265: Challenge #21 - XXXXXXXXL
  3345. 266: Challenge #22 - SPEED!
  3346. 267: Challenge #23 - Blue Bomber
  3347. 268: Challenge #24 - PAY TO PLAY
  3348. 269: Challenge #25 - Have A Heart
  3349. 270: Challenge #26 - I RULE!
  3350. 271: Challenge #27 - BRAINS!
  3351. 272: Challenge #28 - PRIDE DAY!
  3352. 273: Challenge #29 - Onan's Streak
  3353. 274: Challenge #30 - The Guardian
  3354. 275: If only everyone was as generous as you are...
  3355. 276: Mega Blast!
  3356. </DropDownList>
  3357. <LastState Value="??" Activated="0" RealAddress="065D0104"/>
  3358. <Color>80000008</Color>
  3359. <VariableType>4 Bytes</VariableType>
  3360. <Address>pStats+4</Address>
  3361. <CheatEntries>
  3362. <CheatEntry>
  3363. <ID>920</ID>
  3364. <Description>"Secret Unlocked?"</Description>
  3365. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:No
  3366. 1:Yes
  3367. </DropDownList>
  3368. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3369. <Color>80000008</Color>
  3370. <VariableType>Byte</VariableType>
  3371. <Address>pStats+8</Address>
  3372. <Offsets>
  3373. <Offset>0</Offset>
  3374. </Offsets>
  3375. </CheatEntry>
  3376. </CheatEntries>
  3377. </CheatEntry>
  3378. </CheatEntries>
  3379. </CheatEntry>
  3380. <CheatEntry>
  3381. <ID>437</ID>
  3382. <Description>"Possible Pill Effects"</Description>
  3383. <Options moHideChildren="1"/>
  3384. <LastState Value="" Activated="0" RealAddress="00000000"/>
  3385. <Color>FF0000</Color>
  3386. <GroupHeader>1</GroupHeader>
  3387. <CheatEntries>
  3388. <CheatEntry>
  3389. <ID>438</ID>
  3390. <Description>"Pills discovered?"</Description>
  3391. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3392. <Color>80000008</Color>
  3393. <VariableType>Array of byte</VariableType>
  3394. <ByteLength>13</ByteLength>
  3395. <Address>pFloor</Address>
  3396. <Offsets>
  3397. <Offset>9865</Offset>
  3398. </Offsets>
  3399. </CheatEntry>
  3400. <CheatEntry>
  3401. <ID>439</ID>
  3402. <Description>"Pill Effect #1"</Description>
  3403. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3404. 1:Bad Trip/Balls of Steel
  3405. 2:Balls of Steel
  3406. 3:Bombs are Key
  3407. 4:Explosive Diarrhea
  3408. 5:Full Health
  3409. 6:Health Down/Up
  3410. 7:Health Up
  3411. 8:I Found Pills
  3412. 9:Puberty
  3413. 10:Pretty Fly
  3414. 11:Range Down/Up
  3415. 12:Range Up
  3416. 13:Speed Down/Up
  3417. 14:Speed Up
  3418. 15:Tears DownUp
  3419. 16:Tears Up
  3420. 17:Luck Down/Up
  3421. 18:Luck Up
  3422. 19:Telepills
  3423. 20:48 Hour Energy!
  3424. 21:Hematemesis
  3425. 22:Paralysis
  3426. 23:I can see forever!
  3427. 24:Pheromones
  3428. 25:Amnesia/I can see forever!
  3429. 26:Lemon Party
  3430. 27:R U A Wizard?
  3431. 28:Percs!
  3432. 29:Addicted!
  3433. 30:Re-Lax
  3434. 31:???
  3435. 32:One makes you larger
  3436. 33:One makes you small
  3437. 34:Infested!
  3438. 35:Infested?
  3439. 36:Power Pill!
  3440. 37:Retro Vision
  3441. </DropDownList>
  3442. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3443. <Color>80000008</Color>
  3444. <VariableType>4 Bytes</VariableType>
  3445. <Address>pFloor</Address>
  3446. <Offsets>
  3447. <Offset>9830</Offset>
  3448. </Offsets>
  3449. </CheatEntry>
  3450. <CheatEntry>
  3451. <ID>440</ID>
  3452. <Description>"Pill Effect #2"</Description>
  3453. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3454. 1:Bad Trip/Balls of Steel
  3455. 2:Balls of Steel
  3456. 3:Bombs are Key
  3457. 4:Explosive Diarrhea
  3458. 5:Full Health
  3459. 6:Health Down/Up
  3460. 7:Health Up
  3461. 8:I Found Pills
  3462. 9:Puberty
  3463. 10:Pretty Fly
  3464. 11:Range Down/Up
  3465. 12:Range Up
  3466. 13:Speed Down/Up
  3467. 14:Speed Up
  3468. 15:Tears DownUp
  3469. 16:Tears Up
  3470. 17:Luck Down/Up
  3471. 18:Luck Up
  3472. 19:Telepills
  3473. 20:48 Hour Energy!
  3474. 21:Hematemesis
  3475. 22:Paralysis
  3476. 23:I can see forever!
  3477. 24:Pheromones
  3478. 25:Amnesia/I can see forever!
  3479. 26:Lemon Party
  3480. 27:R U A Wizard?
  3481. 28:Percs!
  3482. 29:Addicted!
  3483. 30:Re-Lax
  3484. 31:???
  3485. 32:One makes you larger
  3486. 33:One makes you small
  3487. 34:Infested!
  3488. 35:Infested?
  3489. 36:Power Pill!
  3490. 37:Retro Vision
  3491. </DropDownList>
  3492. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3493. <Color>80000008</Color>
  3494. <VariableType>4 Bytes</VariableType>
  3495. <Address>pFloor</Address>
  3496. <Offsets>
  3497. <Offset>9834</Offset>
  3498. </Offsets>
  3499. </CheatEntry>
  3500. <CheatEntry>
  3501. <ID>441</ID>
  3502. <Description>"Pill Effect #3"</Description>
  3503. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3504. 1:Bad Trip/Balls of Steel
  3505. 2:Balls of Steel
  3506. 3:Bombs are Key
  3507. 4:Explosive Diarrhea
  3508. 5:Full Health
  3509. 6:Health Down/Up
  3510. 7:Health Up
  3511. 8:I Found Pills
  3512. 9:Puberty
  3513. 10:Pretty Fly
  3514. 11:Range Down/Up
  3515. 12:Range Up
  3516. 13:Speed Down/Up
  3517. 14:Speed Up
  3518. 15:Tears DownUp
  3519. 16:Tears Up
  3520. 17:Luck Down/Up
  3521. 18:Luck Up
  3522. 19:Telepills
  3523. 20:48 Hour Energy!
  3524. 21:Hematemesis
  3525. 22:Paralysis
  3526. 23:I can see forever!
  3527. 24:Pheromones
  3528. 25:Amnesia/I can see forever!
  3529. 26:Lemon Party
  3530. 27:R U A Wizard?
  3531. 28:Percs!
  3532. 29:Addicted!
  3533. 30:Re-Lax
  3534. 31:???
  3535. 32:One makes you larger
  3536. 33:One makes you small
  3537. 34:Infested!
  3538. 35:Infested?
  3539. 36:Power Pill!
  3540. 37:Retro Vision
  3541. </DropDownList>
  3542. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3543. <Color>80000008</Color>
  3544. <VariableType>4 Bytes</VariableType>
  3545. <Address>pFloor</Address>
  3546. <Offsets>
  3547. <Offset>9838</Offset>
  3548. </Offsets>
  3549. </CheatEntry>
  3550. <CheatEntry>
  3551. <ID>442</ID>
  3552. <Description>"Pill Effect #4"</Description>
  3553. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3554. 1:Bad Trip/Balls of Steel
  3555. 2:Balls of Steel
  3556. 3:Bombs are Key
  3557. 4:Explosive Diarrhea
  3558. 5:Full Health
  3559. 6:Health Down/Up
  3560. 7:Health Up
  3561. 8:I Found Pills
  3562. 9:Puberty
  3563. 10:Pretty Fly
  3564. 11:Range Down/Up
  3565. 12:Range Up
  3566. 13:Speed Down/Up
  3567. 14:Speed Up
  3568. 15:Tears DownUp
  3569. 16:Tears Up
  3570. 17:Luck Down/Up
  3571. 18:Luck Up
  3572. 19:Telepills
  3573. 20:48 Hour Energy!
  3574. 21:Hematemesis
  3575. 22:Paralysis
  3576. 23:I can see forever!
  3577. 24:Pheromones
  3578. 25:Amnesia/I can see forever!
  3579. 26:Lemon Party
  3580. 27:R U A Wizard?
  3581. 28:Percs!
  3582. 29:Addicted!
  3583. 30:Re-Lax
  3584. 31:???
  3585. 32:One makes you larger
  3586. 33:One makes you small
  3587. 34:Infested!
  3588. 35:Infested?
  3589. 36:Power Pill!
  3590. 37:Retro Vision
  3591. </DropDownList>
  3592. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3593. <Color>80000008</Color>
  3594. <VariableType>4 Bytes</VariableType>
  3595. <Address>pFloor</Address>
  3596. <Offsets>
  3597. <Offset>983C</Offset>
  3598. </Offsets>
  3599. </CheatEntry>
  3600. <CheatEntry>
  3601. <ID>443</ID>
  3602. <Description>"Pill Effect #5"</Description>
  3603. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3604. 1:Bad Trip/Balls of Steel
  3605. 2:Balls of Steel
  3606. 3:Bombs are Key
  3607. 4:Explosive Diarrhea
  3608. 5:Full Health
  3609. 6:Health Down/Up
  3610. 7:Health Up
  3611. 8:I Found Pills
  3612. 9:Puberty
  3613. 10:Pretty Fly
  3614. 11:Range Down/Up
  3615. 12:Range Up
  3616. 13:Speed Down/Up
  3617. 14:Speed Up
  3618. 15:Tears DownUp
  3619. 16:Tears Up
  3620. 17:Luck Down/Up
  3621. 18:Luck Up
  3622. 19:Telepills
  3623. 20:48 Hour Energy!
  3624. 21:Hematemesis
  3625. 22:Paralysis
  3626. 23:I can see forever!
  3627. 24:Pheromones
  3628. 25:Amnesia/I can see forever!
  3629. 26:Lemon Party
  3630. 27:R U A Wizard?
  3631. 28:Percs!
  3632. 29:Addicted!
  3633. 30:Re-Lax
  3634. 31:???
  3635. 32:One makes you larger
  3636. 33:One makes you small
  3637. 34:Infested!
  3638. 35:Infested?
  3639. 36:Power Pill!
  3640. 37:Retro Vision
  3641. </DropDownList>
  3642. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3643. <Color>80000008</Color>
  3644. <VariableType>4 Bytes</VariableType>
  3645. <Address>pFloor</Address>
  3646. <Offsets>
  3647. <Offset>9840</Offset>
  3648. </Offsets>
  3649. </CheatEntry>
  3650. <CheatEntry>
  3651. <ID>444</ID>
  3652. <Description>"Pill Effect #6"</Description>
  3653. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3654. 1:Bad Trip/Balls of Steel
  3655. 2:Balls of Steel
  3656. 3:Bombs are Key
  3657. 4:Explosive Diarrhea
  3658. 5:Full Health
  3659. 6:Health Down/Up
  3660. 7:Health Up
  3661. 8:I Found Pills
  3662. 9:Puberty
  3663. 10:Pretty Fly
  3664. 11:Range Down/Up
  3665. 12:Range Up
  3666. 13:Speed Down/Up
  3667. 14:Speed Up
  3668. 15:Tears DownUp
  3669. 16:Tears Up
  3670. 17:Luck Down/Up
  3671. 18:Luck Up
  3672. 19:Telepills
  3673. 20:48 Hour Energy!
  3674. 21:Hematemesis
  3675. 22:Paralysis
  3676. 23:I can see forever!
  3677. 24:Pheromones
  3678. 25:Amnesia/I can see forever!
  3679. 26:Lemon Party
  3680. 27:R U A Wizard?
  3681. 28:Percs!
  3682. 29:Addicted!
  3683. 30:Re-Lax
  3684. 31:???
  3685. 32:One makes you larger
  3686. 33:One makes you small
  3687. 34:Infested!
  3688. 35:Infested?
  3689. 36:Power Pill!
  3690. 37:Retro Vision
  3691. </DropDownList>
  3692. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3693. <Color>80000008</Color>
  3694. <VariableType>4 Bytes</VariableType>
  3695. <Address>pFloor</Address>
  3696. <Offsets>
  3697. <Offset>9844</Offset>
  3698. </Offsets>
  3699. </CheatEntry>
  3700. <CheatEntry>
  3701. <ID>445</ID>
  3702. <Description>"Pill Effect #7"</Description>
  3703. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3704. 1:Bad Trip/Balls of Steel
  3705. 2:Balls of Steel
  3706. 3:Bombs are Key
  3707. 4:Explosive Diarrhea
  3708. 5:Full Health
  3709. 6:Health Down/Up
  3710. 7:Health Up
  3711. 8:I Found Pills
  3712. 9:Puberty
  3713. 10:Pretty Fly
  3714. 11:Range Down/Up
  3715. 12:Range Up
  3716. 13:Speed Down/Up
  3717. 14:Speed Up
  3718. 15:Tears DownUp
  3719. 16:Tears Up
  3720. 17:Luck Down/Up
  3721. 18:Luck Up
  3722. 19:Telepills
  3723. 20:48 Hour Energy!
  3724. 21:Hematemesis
  3725. 22:Paralysis
  3726. 23:I can see forever!
  3727. 24:Pheromones
  3728. 25:Amnesia/I can see forever!
  3729. 26:Lemon Party
  3730. 27:R U A Wizard?
  3731. 28:Percs!
  3732. 29:Addicted!
  3733. 30:Re-Lax
  3734. 31:???
  3735. 32:One makes you larger
  3736. 33:One makes you small
  3737. 34:Infested!
  3738. 35:Infested?
  3739. 36:Power Pill!
  3740. 37:Retro Vision
  3741. </DropDownList>
  3742. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3743. <Color>80000008</Color>
  3744. <VariableType>4 Bytes</VariableType>
  3745. <Address>pFloor</Address>
  3746. <Offsets>
  3747. <Offset>9848</Offset>
  3748. </Offsets>
  3749. </CheatEntry>
  3750. <CheatEntry>
  3751. <ID>446</ID>
  3752. <Description>"Pill Effect #8"</Description>
  3753. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3754. 1:Bad Trip/Balls of Steel
  3755. 2:Balls of Steel
  3756. 3:Bombs are Key
  3757. 4:Explosive Diarrhea
  3758. 5:Full Health
  3759. 6:Health Down/Up
  3760. 7:Health Up
  3761. 8:I Found Pills
  3762. 9:Puberty
  3763. 10:Pretty Fly
  3764. 11:Range Down/Up
  3765. 12:Range Up
  3766. 13:Speed Down/Up
  3767. 14:Speed Up
  3768. 15:Tears DownUp
  3769. 16:Tears Up
  3770. 17:Luck Down/Up
  3771. 18:Luck Up
  3772. 19:Telepills
  3773. 20:48 Hour Energy!
  3774. 21:Hematemesis
  3775. 22:Paralysis
  3776. 23:I can see forever!
  3777. 24:Pheromones
  3778. 25:Amnesia/I can see forever!
  3779. 26:Lemon Party
  3780. 27:R U A Wizard?
  3781. 28:Percs!
  3782. 29:Addicted!
  3783. 30:Re-Lax
  3784. 31:???
  3785. 32:One makes you larger
  3786. 33:One makes you small
  3787. 34:Infested!
  3788. 35:Infested?
  3789. 36:Power Pill!
  3790. 37:Retro Vision
  3791. </DropDownList>
  3792. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3793. <Color>80000008</Color>
  3794. <VariableType>4 Bytes</VariableType>
  3795. <Address>pFloor</Address>
  3796. <Offsets>
  3797. <Offset>984C</Offset>
  3798. </Offsets>
  3799. </CheatEntry>
  3800. <CheatEntry>
  3801. <ID>447</ID>
  3802. <Description>"Pill Effect #9"</Description>
  3803. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3804. 1:Bad Trip/Balls of Steel
  3805. 2:Balls of Steel
  3806. 3:Bombs are Key
  3807. 4:Explosive Diarrhea
  3808. 5:Full Health
  3809. 6:Health Down/Up
  3810. 7:Health Up
  3811. 8:I Found Pills
  3812. 9:Puberty
  3813. 10:Pretty Fly
  3814. 11:Range Down/Up
  3815. 12:Range Up
  3816. 13:Speed Down/Up
  3817. 14:Speed Up
  3818. 15:Tears DownUp
  3819. 16:Tears Up
  3820. 17:Luck Down/Up
  3821. 18:Luck Up
  3822. 19:Telepills
  3823. 20:48 Hour Energy!
  3824. 21:Hematemesis
  3825. 22:Paralysis
  3826. 23:I can see forever!
  3827. 24:Pheromones
  3828. 25:Amnesia/I can see forever!
  3829. 26:Lemon Party
  3830. 27:R U A Wizard?
  3831. 28:Percs!
  3832. 29:Addicted!
  3833. 30:Re-Lax
  3834. 31:???
  3835. 32:One makes you larger
  3836. 33:One makes you small
  3837. 34:Infested!
  3838. 35:Infested?
  3839. 36:Power Pill!
  3840. 37:Retro Vision
  3841. </DropDownList>
  3842. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3843. <Color>80000008</Color>
  3844. <VariableType>4 Bytes</VariableType>
  3845. <Address>pFloor</Address>
  3846. <Offsets>
  3847. <Offset>9850</Offset>
  3848. </Offsets>
  3849. </CheatEntry>
  3850. <CheatEntry>
  3851. <ID>855</ID>
  3852. <Description>"Pill Effect #10"</Description>
  3853. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3854. 1:Bad Trip/Balls of Steel
  3855. 2:Balls of Steel
  3856. 3:Bombs are Key
  3857. 4:Explosive Diarrhea
  3858. 5:Full Health
  3859. 6:Health Down/Up
  3860. 7:Health Up
  3861. 8:I Found Pills
  3862. 9:Puberty
  3863. 10:Pretty Fly
  3864. 11:Range Down/Up
  3865. 12:Range Up
  3866. 13:Speed Down/Up
  3867. 14:Speed Up
  3868. 15:Tears DownUp
  3869. 16:Tears Up
  3870. 17:Luck Down/Up
  3871. 18:Luck Up
  3872. 19:Telepills
  3873. 20:48 Hour Energy!
  3874. 21:Hematemesis
  3875. 22:Paralysis
  3876. 23:I can see forever!
  3877. 24:Pheromones
  3878. 25:Amnesia/I can see forever!
  3879. 26:Lemon Party
  3880. 27:R U A Wizard?
  3881. 28:Percs!
  3882. 29:Addicted!
  3883. 30:Re-Lax
  3884. 31:???
  3885. 32:One makes you larger
  3886. 33:One makes you small
  3887. 34:Infested!
  3888. 35:Infested?
  3889. 36:Power Pill!
  3890. 37:Retro Vision
  3891. </DropDownList>
  3892. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3893. <Color>80000008</Color>
  3894. <VariableType>4 Bytes</VariableType>
  3895. <Address>pFloor</Address>
  3896. <Offsets>
  3897. <Offset>9854</Offset>
  3898. </Offsets>
  3899. </CheatEntry>
  3900. <CheatEntry>
  3901. <ID>854</ID>
  3902. <Description>"Pill Effect #11"</Description>
  3903. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3904. 1:Bad Trip/Balls of Steel
  3905. 2:Balls of Steel
  3906. 3:Bombs are Key
  3907. 4:Explosive Diarrhea
  3908. 5:Full Health
  3909. 6:Health Down/Up
  3910. 7:Health Up
  3911. 8:I Found Pills
  3912. 9:Puberty
  3913. 10:Pretty Fly
  3914. 11:Range Down/Up
  3915. 12:Range Up
  3916. 13:Speed Down/Up
  3917. 14:Speed Up
  3918. 15:Tears DownUp
  3919. 16:Tears Up
  3920. 17:Luck Down/Up
  3921. 18:Luck Up
  3922. 19:Telepills
  3923. 20:48 Hour Energy!
  3924. 21:Hematemesis
  3925. 22:Paralysis
  3926. 23:I can see forever!
  3927. 24:Pheromones
  3928. 25:Amnesia/I can see forever!
  3929. 26:Lemon Party
  3930. 27:R U A Wizard?
  3931. 28:Percs!
  3932. 29:Addicted!
  3933. 30:Re-Lax
  3934. 31:???
  3935. 32:One makes you larger
  3936. 33:One makes you small
  3937. 34:Infested!
  3938. 35:Infested?
  3939. 36:Power Pill!
  3940. 37:Retro Vision
  3941. </DropDownList>
  3942. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3943. <Color>80000008</Color>
  3944. <VariableType>4 Bytes</VariableType>
  3945. <Address>pFloor</Address>
  3946. <Offsets>
  3947. <Offset>9858</Offset>
  3948. </Offsets>
  3949. </CheatEntry>
  3950. <CheatEntry>
  3951. <ID>853</ID>
  3952. <Description>"Pill Effect #12"</Description>
  3953. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3954. 1:Bad Trip/Balls of Steel
  3955. 2:Balls of Steel
  3956. 3:Bombs are Key
  3957. 4:Explosive Diarrhea
  3958. 5:Full Health
  3959. 6:Health Down/Up
  3960. 7:Health Up
  3961. 8:I Found Pills
  3962. 9:Puberty
  3963. 10:Pretty Fly
  3964. 11:Range Down/Up
  3965. 12:Range Up
  3966. 13:Speed Down/Up
  3967. 14:Speed Up
  3968. 15:Tears DownUp
  3969. 16:Tears Up
  3970. 17:Luck Down/Up
  3971. 18:Luck Up
  3972. 19:Telepills
  3973. 20:48 Hour Energy!
  3974. 21:Hematemesis
  3975. 22:Paralysis
  3976. 23:I can see forever!
  3977. 24:Pheromones
  3978. 25:Amnesia/I can see forever!
  3979. 26:Lemon Party
  3980. 27:R U A Wizard?
  3981. 28:Percs!
  3982. 29:Addicted!
  3983. 30:Re-Lax
  3984. 31:???
  3985. 32:One makes you larger
  3986. 33:One makes you small
  3987. 34:Infested!
  3988. 35:Infested?
  3989. 36:Power Pill!
  3990. 37:Retro Vision
  3991. </DropDownList>
  3992. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3993. <Color>80000008</Color>
  3994. <VariableType>4 Bytes</VariableType>
  3995. <Address>pFloor</Address>
  3996. <Offsets>
  3997. <Offset>985C</Offset>
  3998. </Offsets>
  3999. </CheatEntry>
  4000. <CheatEntry>
  4001. <ID>852</ID>
  4002. <Description>"Pill Effect #13"</Description>
  4003. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  4004. 1:Bad Trip/Balls of Steel
  4005. 2:Balls of Steel
  4006. 3:Bombs are Key
  4007. 4:Explosive Diarrhea
  4008. 5:Full Health
  4009. 6:Health Down/Up
  4010. 7:Health Up
  4011. 8:I Found Pills
  4012. 9:Puberty
  4013. 10:Pretty Fly
  4014. 11:Range Down/Up
  4015. 12:Range Up
  4016. 13:Speed Down/Up
  4017. 14:Speed Up
  4018. 15:Tears DownUp
  4019. 16:Tears Up
  4020. 17:Luck Down/Up
  4021. 18:Luck Up
  4022. 19:Telepills
  4023. 20:48 Hour Energy!
  4024. 21:Hematemesis
  4025. 22:Paralysis
  4026. 23:I can see forever!
  4027. 24:Pheromones
  4028. 25:Amnesia/I can see forever!
  4029. 26:Lemon Party
  4030. 27:R U A Wizard?
  4031. 28:Percs!
  4032. 29:Addicted!
  4033. 30:Re-Lax
  4034. 31:???
  4035. 32:One makes you larger
  4036. 33:One makes you small
  4037. 34:Infested!
  4038. 35:Infested?
  4039. 36:Power Pill!
  4040. 37:Retro Vision
  4041. </DropDownList>
  4042. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  4043. <Color>80000008</Color>
  4044. <VariableType>4 Bytes</VariableType>
  4045. <Address>pFloor</Address>
  4046. <Offsets>
  4047. <Offset>9860</Offset>
  4048. </Offsets>
  4049. </CheatEntry>
  4050. </CheatEntries>
  4051. </CheatEntry>
  4052. <CheatEntry>
  4053. <ID>797</ID>
  4054. <Description>"Misc"</Description>
  4055. <Options moHideChildren="1"/>
  4056. <LastState Value="" Activated="1" RealAddress="00000000"/>
  4057. <Color>FF0000</Color>
  4058. <GroupHeader>1</GroupHeader>
  4059. <CheatEntries>
  4060. <CheatEntry>
  4061. <ID>890</ID>
  4062. <Description>"Floor Type"</Description>
  4063. <DropDownList DisplayValueAsItem="1">0: Normal
  4064. 1: Alternate 1
  4065. 2: Alternate 2
  4066. 3: Greed Mode
  4067. </DropDownList>
  4068. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  4069. <Color>80000008</Color>
  4070. <VariableType>4 Bytes</VariableType>
  4071. <Address>pFloor</Address>
  4072. <Offsets>
  4073. <Offset>4</Offset>
  4074. </Offsets>
  4075. </CheatEntry>
  4076. <CheatEntry>
  4077. <ID>829</ID>
  4078. <Description>"Floor Curse(s)"</Description>
  4079. <DropDownList DisplayValueAsItem="1">0: None
  4080. 1: Curse of Darkness
  4081. 2: Curse of the Labyrinth
  4082. 4: Curse of the Lost
  4083. 8: Curse of the Unknown
  4084. 9: Darkness + Unknown
  4085. 16: Curse of the Cursed
  4086. 32: Curse of the Maze
  4087. 64: Curse of the Blind
  4088. </DropDownList>
  4089. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  4090. <Color>80000008</Color>
  4091. <VariableType>Byte</VariableType>
  4092. <Address>pFloor</Address>
  4093. <Offsets>
  4094. <Offset>C</Offset>
  4095. </Offsets>
  4096. </CheatEntry>
  4097. <CheatEntry>
  4098. <ID>798</ID>
  4099. <Description>"Used "I can see forever!"?"</Description>
  4100. <DropDownList DisplayValueAsItem="1">0: No
  4101. 1: Yes
  4102. </DropDownList>
  4103. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  4104. <Color>80000008</Color>
  4105. <VariableType>Byte</VariableType>
  4106. <Address>pFloor</Address>
  4107. <Offsets>
  4108. <Offset>11</Offset>
  4109. </Offsets>
  4110. </CheatEntry>
  4111. <CheatEntry>
  4112. <ID>847</ID>
  4113. <Description>"Invuln. Timer"</Description>
  4114. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  4115. <Color>80000008</Color>
  4116. <VariableType>4 Bytes</VariableType>
  4117. <Address>pFloor</Address>
  4118. <Offsets>
  4119. <Offset>1B98</Offset>
  4120. <Offset>0</Offset>
  4121. <Offset>B7D8</Offset>
  4122. </Offsets>
  4123. </CheatEntry>
  4124. </CheatEntries>
  4125. </CheatEntry>
  4126. <CheatEntry>
  4127. <ID>429</ID>
  4128. <Description>"Current Floor"</Description>
  4129. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  4130. <Color>80000008</Color>
  4131. <VariableType>4 Bytes</VariableType>
  4132. <Address>pFloor</Address>
  4133. <Offsets>
  4134. <Offset>0</Offset>
  4135. </Offsets>
  4136. </CheatEntry>
  4137. </CheatEntries>
  4138. </CheatEntry>
  4139. <CheatEntry>
  4140. <ID>328</ID>
  4141. <Description>"Pedestal Script"</Description>
  4142. <Options moHideChildren="1"/>
  4143. <LastState Activated="1"/>
  4144. <Color>008000</Color>
  4145. <VariableType>Auto Assembler Script</VariableType>
  4146. <AssemblerScript>{ by HenryEx
  4147. for The Binding of Isaac: Afterbirth
  4148.  
  4149. This script allows you to set the item that will be picked up the next time
  4150. you touch a pedestal.
  4151. }
  4152.  
  4153. [ENABLE]
  4154. aobscanmodule(AOB_pedInj,isaac-ng.exe,83 xx 64 0F 85 xx xx xx xx 8B 46 2C 85 C0 0F 84)
  4155. alloc(PedScript,256)
  4156.  
  4157. // Declaration section
  4158. registersymbol(AOB_pedInj)
  4159. registersymbol(PedScript)
  4160. label(_Code)
  4161. label(_ExitPS)
  4162. label(_BackPS)
  4163.  
  4164. //=========================================
  4165. // Hacking Point
  4166.  
  4167. AOB_pedInj+9:
  4168. jmp _Code
  4169. _BackPS:
  4170.  
  4171. //=========================================
  4172. // Var Section
  4173.  
  4174. PedScript:
  4175. dd 0 // Item ID to pick up
  4176.  
  4177. //=========================================
  4178. // Code Section
  4179. _Code:
  4180. mov eax,[PedScript]
  4181. cmp eax,0
  4182. jz short _ExitPS
  4183.  
  4184. mov [esi+2C],eax
  4185. xor eax,eax
  4186. mov [PedScript],eax
  4187.  
  4188. _ExitPS:
  4189. mov eax,[esi+2C]
  4190. test eax,eax
  4191. jmp _BackPS
  4192.  
  4193.  
  4194. [DISABLE]
  4195. AOB_pedInj+9:
  4196. mov eax,[esi+2C]
  4197. test eax,eax
  4198. // db 8B 46 2C 85 C0
  4199.  
  4200. unregistersymbol(AOB_pedInj)
  4201. unregistersymbol(PedScript)
  4202.  
  4203. dealloc(PedScript)
  4204.  
  4205. {
  4206. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+CF257
  4207.  
  4208. "isaac-ng.exe"+CF227: 81 FF 68 01 00 00 - cmp edi,00000168
  4209. "isaac-ng.exe"+CF22D: 0F 84 3E 0C 00 00 - je isaac-ng.exe+CFE71
  4210. "isaac-ng.exe"+CF233: 83 FF 3C - cmp edi,3C
  4211. "isaac-ng.exe"+CF236: 0F 84 43 0C 00 00 - je isaac-ng.exe+CFE7F
  4212. "isaac-ng.exe"+CF23C: 83 FF 34 - cmp edi,34
  4213. "isaac-ng.exe"+CF23F: 0F 84 2C 0C 00 00 - je isaac-ng.exe+CFE71
  4214. "isaac-ng.exe"+CF245: 83 FF 35 - cmp edi,35
  4215. "isaac-ng.exe"+CF248: 0F 84 23 0C 00 00 - je isaac-ng.exe+CFE71
  4216. "isaac-ng.exe"+CF24E: 83 FF 64 - cmp edi,64
  4217. "isaac-ng.exe"+CF251: 0F 85 0F 06 00 00 - jne isaac-ng.exe+CF866
  4218. // ---------- INJECTING HERE ----------
  4219. "isaac-ng.exe"+CF257: 8B 46 2C - mov eax,[esi+2C]
  4220. "isaac-ng.exe"+CF25A: 85 C0 - test eax,eax
  4221. // ---------- DONE INJECTING ----------
  4222. "isaac-ng.exe"+CF25C: 0F 84 04 06 00 00 - je isaac-ng.exe+CF866
  4223. "isaac-ng.exe"+CF262: 8B C3 - mov eax,ebx
  4224. "isaac-ng.exe"+CF264: E8 17 A3 05 00 - call isaac-ng.exe+129580
  4225. "isaac-ng.exe"+CF269: 84 C0 - test al,al
  4226. "isaac-ng.exe"+CF26B: 0F 85 F5 05 00 00 - jne isaac-ng.exe+CF866
  4227. "isaac-ng.exe"+CF271: 83 BB 70 4C 00 00 00 - cmp dword ptr [ebx+00004C70],00
  4228. "isaac-ng.exe"+CF278: 0F 85 E8 05 00 00 - jne isaac-ng.exe+CF866
  4229. "isaac-ng.exe"+CF27E: 83 BE 80 10 00 00 00 - cmp dword ptr [esi+00001080],00
  4230. "isaac-ng.exe"+CF285: 0F 8F DB 05 00 00 - jg isaac-ng.exe+CF866
  4231. "isaac-ng.exe"+CF28B: 8B 46 2C - mov eax,[esi+2C]
  4232. }
  4233. </AssemblerScript>
  4234. <CheatEntries>
  4235. <CheatEntry>
  4236. <ID>329</ID>
  4237. <Description>"Item to pick up"</Description>
  4238. <DropDownList DisplayValueAsItem="1">320:???'s Only Friend - Controlled friend
  4239. 11:1up! - Extra life
  4240. 15:Less than 3 - HP up
  4241. 191:3 Dollar Bill - Rainbow tears
  4242. 359:8 Inch Nails - Stick it to 'em!
  4243. 116:9 Volt - Quicker charge
  4244. 245:20/20 - Double shot
  4245. 130:A Pony - Flight + dash attack
  4246. 18:A Dollar - $$$
  4247. 74:A Quarter - +25 coins
  4248. 132:A Lump of Coal - My Xmas present
  4249. 346:A Snack - HP up
  4250. 230:Abaddon - Evil + DMG up + fear shot
  4251. 188:Abel - Mirrored buddy
  4252. 65:Anarchist Cookbook - Summon bombs
  4253. 214:Anemic - Toxic blood
  4254. 161:Ankh - Eternal life?
  4255. 222:Anti-Gravity - Anti-gravity tears + tears up
  4256. 308:Aquarius - Trail of tears
  4257. 300:Aries - Ramming speed
  4258. 408:Athame - Call to the void
  4259. 231:Ball of Tar - Sticky feet...
  4260. 207:Ball of Bandages - Gotta lick 'em all!
  4261. 272:BBF - Big Beautiful Fly
  4262. 274:Best Bud - Sworn protector
  4263. 136:Best Friend - Friends 'till the end
  4264. 391:Betrayal - Turn your enemy
  4265. 247:BFFS! - Your friends rule
  4266. 279:Big Fan - Fat protector
  4267. 438:Binky - Memories...
  4268. 260:Black Candle - Curse immunity + evil up
  4269. 226:Black Lotus - HP up x3
  4270. 420:Black Powder - Spin the black circle!
  4271. 286:Blank Card - Card mimic
  4272. 119:Blood Bag - HP up
  4273. 254:Blood Clot - DMG + range up
  4274. 7:Blood of the Martyr - DMG up
  4275. 186:Blood Rights - Mass enemy damage at a cost
  4276. 157:Bloody Lust - RAGE!
  4277. 246:Blue Map - Secrets
  4278. 342:Blue Cap - HP + tears up + shot speed down
  4279. 273:Bob's Brain - Explosive thoughts
  4280. 140:Bob's Curse - +5 poison bombs
  4281. 42:Bob's Rotten Head - Reusable ranged bomb
  4282. 125:Bobby-Bomb - Homing bombs
  4283. 250:BOGO Bombs - 1+1 BOOM!
  4284. 131:Bomb Bag - Gives bombs
  4285. 353:Bomber Boy - Explosive blast!
  4286. 78:Book of Revelations - Reusable soul protection
  4287. 287:Book of Secrets - ???
  4288. 58:Book of Shadows - Temporary invincibility
  4289. 19:Boom! - 10 bombs
  4290. 357:Box of Friends - Double your friends
  4291. 288:Box of Spiders - It's a box of spiders
  4292. 198:Box - Stuff
  4293. 25:Breakfast - HP up
  4294. 326:Breath of Life - Invincibility at a cost
  4295. 118:Brimstone - Blood laser barrage
  4296. 337:Broken Watch - I think it's broken
  4297. 8:Brother Bobby - Friends 'till the end
  4298. 129:Bucket of Lard - HP up
  4299. 385:Bumbo - Bumbo want coin!
  4300. 144:Bum Friend - He's greedy
  4301. 377:Bursting Sack - Spider love
  4302. 209:Butt Bombs - Toxic blast +5 bombs
  4303. 294:Butter Bean - Reusable knock-back
  4304. 340:Caffeine Pill - Speed up + size down
  4305. 319:Cain's Other Eye - Near-sighted friend
  4306. 412:Cambion Conception - Feed them hate
  4307. 301:Cancer - HP up + you feel protected
  4308. 307:Capricorn - All stats up
  4309. 356:Car Battery - Double charge!
  4310. 165:Cat-o-nine-tails - Shot speed + damage up
  4311. 162:Celtic Cross - You feel blessed
  4312. 387:Censer - Peace be with you
  4313. 216:Ceremonial Robes - Sin up
  4314. 208:Champion Belt - DMG + Challenge up
  4315. 402:Chaos - !!!
  4316. 372:Charged Baby - Bbbzzzzzt!
  4317. 62:Charm of the Vampire - Kills heal
  4318. 154:Chemical Peel - DMG up
  4319. 69:Chocolate Milk - Charge shots
  4320. 423:Circle of Protection - protect me from myself
  4321. 369:Continuum - Transcendent tears
  4322. 241:Contract from Below - Wealth... but at what cost?
  4323. 296:Converter - Convert your soul
  4324. 354:Crack Jacks - Don't swallow the prize!
  4325. 160:Crack the Sky - Holy white death
  4326. 4:Cricket's Head - DMG up
  4327. 224:Cricket's Body - Splash damage + tears up
  4328. 415:Crown of Light - The untainted gain power
  4329. 158:Crystal Ball - I see my future
  4330. 73:Cube of Meat - Gotta meat 'em all
  4331. 48:Cupid's Arrow - Piercing shots
  4332. 371:Curse of the Tower - You feel cursed...
  4333. 316:Cursed Eye - Cursed charge shot
  4334. 285:D10 - Reroll enemies
  4335. 283:D100 - REEROLLLLL!
  4336. 386:D12 - Rerolls rocks
  4337. 166:D20 - Reroll the basics
  4338. 284:D4 - Reroll into something else
  4339. 437:D7 - Reroll Rewards!
  4340. 406:D8 - Reroll stats
  4341. 175:Dad's Key - Opens all doors...
  4342. 170:Daddy Longlegs - Daddy's love
  4343. 278:Dark Bum - He wants to take your life
  4344. 259:Dark Matter - Fear shot
  4345. 117:Dead Bird - Protective buddy
  4346. 81:Dead Cat - 9 lives
  4347. 185:Dead Dove - Flight + spectral tears
  4348. 373:Dead Eye - Accuracy brings power!
  4349. 336:Dead Onion - Toxic aura tears
  4350. 124:Dead Sea Scrolls - It's a mystery
  4351. 237:Death's Touch - Penetrative shot + DMG up
  4352. 85:Deck of Cards - Reusable card generator
  4353. 416:Deep Pockets - More stuff to carry!
  4354. 113:Demon Baby - Auto-turret friend
  4355. 24:Dessert - HP up
  4356. 23:Dinner - HP up
  4357. 347:Diplopia - Double item vision
  4358. 57:Distant Admiration - Attack fly
  4359. 47:Doctor's Remote - Reusable air strike
  4360. 52:Dr. Fetus - ???
  4361. 265:Dry Baby - Immortal friend
  4362. 236:E. Coli - Turdy touch
  4363. 381:Eden's Blessing - Your future shines brighter
  4364. 409:Empty Vessel - I reward an empty vessel
  4365. 168:Epic Fetus - On-demand air strike
  4366. 368:Epiphora - Intensifying tears
  4367. 310:Eve's Mascara - Shot speed down + DMG up
  4368. 410:Evil Eye - Eye shot!
  4369. 240:Experimental Treatment - All stats up... then shuffled
  4370. 401:Explosivo - Sticky bomb shot!
  4371. 204:Fanny Pack - Filled with goodies
  4372. 404:Farting Baby - He farts!
  4373. 179:Fate - Flight eternal
  4374. 361:Fate's reward - Your fate beside you
  4375. 257:Fire Mind - Flaming tears
  4376. 291:Flush! - ...
  4377. 128:Forever alone - Attack fly
  4378. 127:Forget Me Now - I don't remember...
  4379. 364:Friend Zone - Friendly fly
  4380. 382:Friendly Ball - Gotta fetch 'em all!
  4381. 418:Fruit Cake - Rainbow Effects!
  4382. 405:GB Bug - Game breaking bug, right away!
  4383. 318:Gemini - Conjoined friend
  4384. 163:Ghost Baby - Spectral buddy
  4385. 225:Gimpy - Sweet suffering
  4386. 352:Glass Cannon - Be gentle...
  4387. 432:Glitter Bombs - Prize Bombs!
  4388. 422:Glowing Hour Glass - Turn back time
  4389. 210:Gnawed Leaf - Unbreakable
  4390. 215:Goat Head - He accepts your offering
  4391. 331:Godhead - God tears
  4392. 398:God's Flesh - Shrink shot!
  4393. 70:Growth Hormones - Speed + DMG up
  4394. 112:Guardian Angel - Extra protection
  4395. 206:Guillotine - An out-of-body experience
  4396. 212:Guppy's Collar - Eternal life?
  4397. 187:Guppy's Hairball - Swing it
  4398. 145:Guppy's Head - Reusable fly hive
  4399. 133:Guppy's Paw - Soul converter
  4400. 134:Guppy's Tail - Cursed?
  4401. 156:Habit - Item martyr
  4402. 10:Halo of Flies - Projectile protection
  4403. 167:Harlequin Baby - Double shot buddy
  4404. 293:Head of Krampus - Krampus rage
  4405. 429:Head of the Keeper - Penny tears!
  4406. 269:Headless Baby - Bloody friend
  4407. 248:Hive Mind - Giant spiders and flies
  4408. 184:Holy Grail - Flight + HP up
  4409. 374:Holy Light - Holy shot!
  4410. 313:Holy Mantle - Holy shield
  4411. 178:Holy Water - Splash!
  4412. 375:Host Hat - Nice hat!
  4413. 256:Hot Bombs - Burning blast +5 bombs
  4414. 282:How to Jump - It's time you learned how
  4415. 203:Humbleing Bundle - 1+1 free 4Evar
  4416. 413:Immaculate Conception - Feed them love
  4417. 360:Incubus - Dark friend
  4418. 242:Infamy - Damage reduction
  4419. 148:Infestation - They grow inside
  4420. 234:Infestation 2 - Infestation shot
  4421. 149:Ipecac - Explosive shots
  4422. 201:Iron Bar - Concussive tears
  4423. 276:Isaac's Heart - Protect it
  4424. 323:Isaac's Tears - Collected tears
  4425. 135:IV Bag - Portable blood bank
  4426. 434:Jar of Flies - gotta catch 'em all?
  4427. 197:Jesus Juice - Damage + range up
  4428. 311:Judas' Shadow - Sweet revenge
  4429. 266:Juicy Sack - Sticky babies
  4430. 40:Kamikaze! - Become the bomb!
  4431. 388:Key Bum - He wants your keys!
  4432. 238:Key Piece 1 - ???
  4433. 239:Key Piece 2 - ???
  4434. 421:Kidney Bean - Love Toots!
  4435. 440:Kidney Stone - Matt's Kidney Stone
  4436. 343:Latch Key - Luck up
  4437. 332:Lazarus' Rags - Eternal life?
  4438. 270:Leech - Blood sucker
  4439. 56:Lemon Mishap - Oops...
  4440. 302:Leo - Stompy
  4441. 304:Libra - You feel balanced
  4442. 362:Lil Chest - What's in the box?
  4443. 384:Lil Gurdy - A gurd of your own!
  4444. 435:Lil Loki - 4-way buddy!
  4445. 275:Lil' Brimstone - Evil friend
  4446. 277:Lil' Haunt - Fear him
  4447. 252:Little Baggy - Extra pill room
  4448. 96:Little C.H.A.D. - Gives kisses
  4449. 88:Little Chubby - Attack buddy
  4450. 99:Little Gish - Sticky friend
  4451. 100:Little Steven - Psychic friend
  4452. 87:Loki's Horns - Cross tears
  4453. 82:Lord of the Pit - Demon wings
  4454. 213:Lost Contact - Shielded tears
  4455. 365:Lost Fly - Lost protector
  4456. 46:Lucky Foot - Luck up
  4457. 22:Lunch - HP up
  4458. 411:Lusty Blood - Their blood brings rage!
  4459. 312:Maggy's Bow - HP up + you feel healthy
  4460. 194:Magic 8 Ball - Shot speed up
  4461. 295:Magic Fingers - Pay to play
  4462. 12:Magic Mushroom - All stats up!
  4463. 253:Magic Scab - HP + luck up
  4464. 53:Magneto - Item snatcher
  4465. 394:Marked - Directed tears
  4466. 344:Match Book - Evil up
  4467. 399:Maw Of The Void - Consume thy enemy!
  4468. 193:MEAT! - DMG + HP up
  4469. 351:Mega Bean - Giga Fart!
  4470. 441:Mega Blast - Laser breath
  4471. 202:Midas' Touch - Golden touch
  4472. 436:Milk! - Don't cry over it...
  4473. 427:Mine Crafter - Booom!
  4474. 71:Mini Mush - Speed + range up
  4475. 258:Missing No. - Syntax error
  4476. 262:Missing Page 2 - Evil up. Your enemies will pay!
  4477. 173:Mitre - You feel blessed
  4478. 102:Mom's Bottle of Pills - Reusable pill generator
  4479. 439:Mom's Box - What's inside?
  4480. 39:Mom's Bra - Mass fear
  4481. 195:Mom's Coin Purse - What's all this...?
  4482. 110:Mom's Contacts - Freeze effect
  4483. 55:Mom's Eye - Eye in the back of your head
  4484. 200:Mom's Eyeshadow - Charm tears
  4485. 30:Mom's Heels - Range up
  4486. 199:Mom's Key - Less is now more +2 keys
  4487. 114:Mom's Knife - Stab stab stab
  4488. 31:Mom's Lipstick - Range up
  4489. 41:Mom's Pad - Gross...
  4490. 355:Mom's Pearls - Range + luck up
  4491. 228:Mom's Perfume - Fear shot
  4492. 139:Mom's Purse - More trinket room
  4493. 29:Mom's Underwear - Range up
  4494. 217:Mom's Wig - You feel itchy...
  4495. 109:Money = Power - $$$ = DMG
  4496. 322:Mongo Baby - Mongo friend
  4497. 123:Monster Manual - Temporary buddy generator
  4498. 229:Monstro's Lung - Charged attack
  4499. 86:Monstro's Tooth - Summon Monstro
  4500. 414:More Options - There are even more options!
  4501. 37:Mr. Boom - Reusable bomb buddy
  4502. 106:Mr. Mega - Blast damage
  4503. 370:Mr. Dolly - Range + tears up
  4504. 431:Multidimensional Baby - ydduB Buddy
  4505. 153:Mutant Spider - Quad shot
  4506. 5:My Reflection - Boomerang tears
  4507. 77:My Little Unicorn - Temporary badass
  4508. 433:My Shadow - Me! and my shaaaadow!
  4509. 317:Mysterious Liquid - Toxic splash damage
  4510. 271:Mystery Sack - ?
  4511. 425:Night Light - scared of the dark?
  4512. 378:No. 2 - Uh oh...
  4513. 0:-None-
  4514. 147:Notched Axe - Rocks don't stand a chance
  4515. 6:Number One - Tears up
  4516. 426:Obsessed Fan - Follows my every move...
  4517. 121:Odd Mushroom - DMG up
  4518. 120:Odd Mushroom - Fire rate up
  4519. 219:Old Bandage - HP up
  4520. 115:Ouija Board - Spectral tears
  4521. 141:Pageant Boy - Ultimate grand supreme
  4522. 297:Pandora's Box - ? ?
  4523. 430:Papa Fly - Turret follower
  4524. 380:Pay To Play - Money talks
  4525. 51:Pentagram - DMG up
  4526. 75:PHD - Better pills
  4527. 227:Piggy Bank - My life savings
  4528. 309:Pisces - Tears up + knock-back shot
  4529. 428:PJs - You feel cozy
  4530. 348:Placebo - Pill mimic
  4531. 218:Placenta - Regeneration + HP up
  4532. 169:Polyphemus - Mega tears
  4533. 177:Portable Slot - Gamble 24/7
  4534. 146:Prayer Card - Reusable eternity
  4535. 261:Proptosis - Short range mega tears
  4536. 281:Punching Bag - Scape goat
  4537. 379:Pupula Duplex - Wide shot
  4538. 407:Purity - Aura stat boost
  4539. 190:Pyro - 99 bombs
  4540. 223:Pyromaniac - It hurts so good +5 bombs
  4541. 174:Rainbow Baby - Random buddy
  4542. 16:Raw Liver - HP up
  4543. 126:Razor Blade - Feel my pain
  4544. 289:Red Candle - Flame on
  4545. 137:Remote Detonator - Remote bomb detonation
  4546. 376:Restock - Never ending stores!
  4547. 95:Robo-Baby - Friends 'till the bbbbzzzt
  4548. 267:Robo-Baby 2.0 - We worked out all the kinks
  4549. 14:Roid Rage - Speed and range up
  4550. 72:Rosary - Faith up
  4551. 26:Rotten Meat - HP up
  4552. 268:Rotten Baby - Infested friend
  4553. 221:Rubber Cement - Bouncing tears
  4554. 389:Rune Bag - Rune generator
  4555. 94:Sack of Pennies - Gives money
  4556. 424:Sack Head - More sacks!
  4557. 182:Sacred Heart - Homing shots + DMG up
  4558. 172:Sacrificial Dagger - My fate protects me
  4559. 220:Sad Bombs - Tear blasts +5 bombs
  4560. 339:Safety Pin - Evil + range + shot speed up
  4561. 306:Sagittarius - Penetrative shot + speed up
  4562. 321:Samson's Chains - The ol' ball and chain
  4563. 292:Satanic Bible - Reusable evil
  4564. 142:Scapular - You have been blessed
  4565. 366:Scatter Bombs - We put bombs in your bombs!
  4566. 325:Scissors - Lose your head
  4567. 305:Scorpio - Poison tears
  4568. 255:Screw - Tears + shot speed up
  4569. 390:Seraphim - Sworn friend
  4570. 393:Serpent's Kiss - The kiss of death
  4571. 205:Sharp Plug - Charge with blood
  4572. 49:Shoop da Whoop! - BLLLARRRRGGG!
  4573. 280:Sissy Longlegs - She loves you
  4574. 67:Sister Maggy - Friends 'till the end
  4575. 9:Skatole - Fly love
  4576. 17:Skeleton Key - 99 keys
  4577. 264:Smart Fly - Revenge fly
  4578. 189:SMB Super Fan - All stats up
  4579. 330:Soy Milk - DMG down + tears way up
  4580. 400:Spear Of Destiny - Your destiny
  4581. 143:Speed Ball - Speed + shot speed up
  4582. 91:Spelunker Hat - See-through doors
  4583. 89:Spider Bite - Slow effect
  4584. 171:Spider Butt - Mass enemy slowdown + damage
  4585. 403:Spider Mod - Mod buddy!
  4586. 211:Spiderbaby - Spider revenge
  4587. 159:Spirit of the Night - Scary
  4588. 3:Spoon Bender - Homing shots
  4589. 196:Squeezy - Tears up
  4590. 251:Starter Deck - Extra card room
  4591. 64:Steam Sale - 50% off
  4592. 176:Stem Cells - HP up
  4593. 50:Steven - DMG up
  4594. 367:Sticky Bombs - Egg sack bombs!
  4595. 138:Stigmata - DMG + HP up
  4596. 232:Stop Watch - Let's slow this down a bit...
  4597. 315:Strange Attractor - Magnetic tears
  4598. 417:Succubus - Damage booster
  4599. 92:Super Bandage - +2 hearts
  4600. 363:Sworn Protector - Protective friend
  4601. 345:Synthoil - DMG + range up
  4602. 38:Tammy's Head - Reusable tear burst
  4603. 299:Taurus - Speed down + rage is building
  4604. 383:Tear Detonator - Remote tear detonation
  4605. 395:Tech X - Laser ring tears
  4606. 244:Tech.5 - It's still being tested...
  4607. 68:Technology - Laser tears
  4608. 152:Technology 2 - Laser
  4609. 192:Telepathy For Dummies - Temporary psychic shot
  4610. 44:Teleport! - Teleport!
  4611. 419:Teleport 2.0 - I-teleport!
  4612. 63:The Battery - Stores energy
  4613. 111:The Bean - Toot on command
  4614. 28:The Belt - Speed up
  4615. 33:The Bible - Temporary flight
  4616. 180:The Black Bean - Toot on touch
  4617. 334:The Body - I feel all
  4618. 34:The Book of Belial - Temporary DMG up
  4619. 97:The Book of Sin - Reusable item generator
  4620. 338:The Boomerang - It will never leave you
  4621. 164:The Candle - Reusable flames
  4622. 103:The Common Cold - Poison damage
  4623. 21:The Compass - The end is near
  4624. 105:The D6 - Reroll your destiny
  4625. 93:The Gamekid - Temporary Man-Pac
  4626. 101:The Halo - All stats up
  4627. 66:The Hourglass - Temporary enemy slowdown
  4628. 2:The Inner Eye - Triple shot
  4629. 290:The Jar - Save your life
  4630. 60:The Ladder - Building bridges
  4631. 329:The Ludovico Technique - Controlled tears
  4632. 79:The Mark - DMG up
  4633. 333:The Mind - I know all
  4634. 151:The Mulligan - They grow inside
  4635. 83:The Nail - Temporary demon form
  4636. 35:The Necronomicon - Mass room damage
  4637. 328:The Negative - Fate chosen
  4638. 80:The Pact - DMG + tears up
  4639. 104:The Parasite - Split shot
  4640. 155:The Peeper - Plop!
  4641. 107:The Pinking Shears - Cut and run
  4642. 327:The Polaroid - Fate chosen
  4643. 36:The Poop - Plop!
  4644. 98:The Relic - Soul generator
  4645. 1:The Sad Onion - Tears up
  4646. 90:The Small Rock - DMG up
  4647. 335:The Soul - I am all
  4648. 13:The Virus - Poison touch
  4649. 108:The Wafer - Damage resistance
  4650. 358:The Wiz - Double wiz shot!
  4651. 249:There's Options - More options
  4652. 314:Thunder Thighs - HP up + speed down + you feel stompy
  4653. 233:Tiny Planet - Orbiting tears + range up
  4654. 183:Tooth Picks - Tears + shot speed up
  4655. 341:Torn Photo - Tears + shot speed up
  4656. 150:Tough Love - Tooth shot
  4657. 350:Toxic Shock - Mass poison
  4658. 397:Tractor Beam - Controlled tears
  4659. 20:Transcendence - We all float down here...
  4660. 54:Treasure Map - Full visible map
  4661. 243:Trinity Shield - You feel guarded
  4662. 324:Undefined - Undefined
  4663. 298:Unicorn Stump - You feel stumped
  4664. 396:Ventricle Razor - Short cutter
  4665. 303:Virgo - You feel refreshed and protected
  4666. 84:We Need To Go Deeper! - Reusable level skip
  4667. 181:White Pony - Flight + holy death
  4668. 122:Whore of Babylon - Curse up
  4669. 32:Wire Coat Hanger - Tears up
  4670. 27:Wooden Spoon - Speed up
  4671. 349:Wooden Nickel - Flip a coin
  4672. 76:X-Ray Vision - I've seen everything
  4673. 45:Yum Heart - Reusable regeneration
  4674. 392:Zodiac - The heavens will change you
  4675. </DropDownList>
  4676. <LastState Value="0" Activated="0" RealAddress="06580000"/>
  4677. <Color>80000008</Color>
  4678. <VariableType>4 Bytes</VariableType>
  4679. <Address>PedScript</Address>
  4680. </CheatEntry>
  4681. </CheatEntries>
  4682. </CheatEntry>
  4683. <CheatEntry>
  4684. <ID>413</ID>
  4685. <Description>"Misc Scripts"</Description>
  4686. <Options moHideChildren="1"/>
  4687. <LastState Value="" Activated="0" RealAddress="00000000"/>
  4688. <Color>008000</Color>
  4689. <GroupHeader>1</GroupHeader>
  4690. <CheatEntries>
  4691. <CheatEntry>
  4692. <ID>921</ID>
  4693. <Description>"Devil / Angel Deals"</Description>
  4694. <Options moHideChildren="1"/>
  4695. <LastState Value="" Activated="0" RealAddress="00000000"/>
  4696. <Color>FF0000</Color>
  4697. <GroupHeader>1</GroupHeader>
  4698. <CheatEntries>
  4699. <CheatEntry>
  4700. <ID>319</ID>
  4701. <Description>"Devil Room always possible"</Description>
  4702. <LastState Activated="0"/>
  4703. <Color>80000008</Color>
  4704. <VariableType>Auto Assembler Script</VariableType>
  4705. <AssemblerScript>{ by HenryEx
  4706. for The Binding of Isaac: Afterbirth
  4707.  
  4708. Devil rooms can now spawn even on floor 1 and past the Womb.
  4709. }
  4710.  
  4711. [ENABLE]
  4712. aobscanmodule(AOB_UnblockDR,isaac-ng.exe,84 C0 0F 84 xx xx xx xx 8B 3D xx xx xx xx 8B 87)
  4713. registersymbol(AOB_UnblockDR)
  4714.  
  4715. AOB_UnblockDR+2:
  4716. db EB 04
  4717. // jmp +4
  4718.  
  4719. [DISABLE]
  4720. AOB_UnblockDR+2:
  4721. db 0F 84
  4722. // je long (isaac-ng.exe+13B483)
  4723.  
  4724. unregistersymbol(AOB_UnblockDR)
  4725.  
  4726. {
  4727. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+13B248
  4728.  
  4729. "isaac-ng.exe"+13B228: 56 - push esi
  4730. "isaac-ng.exe"+13B229: 57 - push edi
  4731. "isaac-ng.exe"+13B22A: A1 18 F0 0C 01 - mov eax,[isaac-ng.exe+2CF018]
  4732. "isaac-ng.exe"+13B22F: 33 C5 - xor eax,ebp
  4733. "isaac-ng.exe"+13B231: 50 - push eax
  4734. "isaac-ng.exe"+13B232: 8D 45 F4 - lea eax,[ebp-0C]
  4735. "isaac-ng.exe"+13B235: 64 A3 00 00 00 00 - mov fs:[00000000],eax
  4736. "isaac-ng.exe"+13B23B: 8B 35 04 F6 0D 01 - mov esi,[isaac-ng.exe+2DF604]
  4737. "isaac-ng.exe"+13B241: E8 5A B6 FB FF - call isaac-ng.exe+F68A0
  4738. "isaac-ng.exe"+13B246: 84 C0 - test al,al
  4739. // ---------- INJECTING HERE ----------
  4740. "isaac-ng.exe"+13B248: 0F 84 35 02 00 00 - je isaac-ng.exe+13B483
  4741. // ---------- DONE INJECTING ----------
  4742. "isaac-ng.exe"+13B24E: 8B 3D 04 F6 0D 01 - mov edi,[isaac-ng.exe+2DF604]
  4743. "isaac-ng.exe"+13B254: 8B 87 D8 B7 00 00 - mov eax,[edi+0000B7D8]
  4744. "isaac-ng.exe"+13B25A: 2B 87 D4 B7 00 00 - sub eax,[edi+0000B7D4]
  4745. "isaac-ng.exe"+13B260: 8D B7 D4 B7 00 00 - lea esi,[edi+0000B7D4]
  4746. "isaac-ng.exe"+13B266: A9 FC FF FF FF - test eax,FFFFFFFC
  4747. "isaac-ng.exe"+13B26B: 75 15 - jne isaac-ng.exe+13B282
  4748. "isaac-ng.exe"+13B26D: 68 5C CA 06 01 - push isaac-ng.exe+26CA5C
  4749. "isaac-ng.exe"+13B272: 6A 00 - push 00
  4750. "isaac-ng.exe"+13B274: E8 77 DC 09 00 - call isaac-ng.exe+1D8EF0
  4751. "isaac-ng.exe"+13B279: 8B 3D 04 F6 0D 01 - mov edi,[isaac-ng.exe+2DF604]
  4752. }
  4753. </AssemblerScript>
  4754. </CheatEntry>
  4755. <CheatEntry>
  4756. <ID>306</ID>
  4757. <Description>"100% chance for Devil/Angel Room"</Description>
  4758. <LastState Activated="0"/>
  4759. <Color>80000008</Color>
  4760. <VariableType>Auto Assembler Script</VariableType>
  4761. <AssemblerScript>{ by HenryEx
  4762. for The Binding of Isaac: Afterbirth
  4763.  
  4764. This will always open up the Devil/Angel room when it's possible.
  4765. }
  4766.  
  4767. [ENABLE]
  4768. aobscanmodule(AOB_AlwaysDR,isaac-ng.exe,E8 * * * * D9 45 * D8 D1 DF E0 DD D9)
  4769. alloc(AlwaysDR,256)
  4770.  
  4771. registersymbol(AOB_AlwaysDR)
  4772. label(_BackDR)
  4773.  
  4774. AOB_AlwaysDR+8:
  4775. jmp AlwaysDR
  4776. nop
  4777. _BackDR:
  4778.  
  4779.  
  4780. AlwaysDR:
  4781. fstp st(0) // pop off old chance
  4782. fld1 // load up 1 instead
  4783. fcom st(0),st(1) // Original code
  4784. fnstsw ax
  4785. fstp st(1)
  4786. jmp _BackDR
  4787.  
  4788. [DISABLE]
  4789. AOB_AlwaysDR+8:
  4790. fcom st(0),st(1)
  4791. fnstsw ax
  4792. fstp st(1)
  4793. // db D8 D1 DF E0 DD D9
  4794.  
  4795. unregistersymbol(AOB_AlwaysDR)
  4796. dealloc(AlwaysDR)
  4797.  
  4798. {
  4799. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+13B463
  4800.  
  4801. "isaac-ng.exe"+13B441: 83 BE 3C 70 00 00 0B - cmp dword ptr [esi+0000703C],0B
  4802. "isaac-ng.exe"+13B448: 72 04 - jb isaac-ng.exe+13B44E
  4803. "isaac-ng.exe"+13B44A: DD D8 - fstp st(0)
  4804. "isaac-ng.exe"+13B44C: D9 E8 - fld1
  4805. "isaac-ng.exe"+13B44E: D9 5D F0 - fstp dword ptr [ebp-10]
  4806. "isaac-ng.exe"+13B451: EB 02 - jmp isaac-ng.exe+13B455
  4807. "isaac-ng.exe"+13B453: DD D8 - fstp st(0)
  4808. "isaac-ng.exe"+13B455: 81 C6 FC 6F 00 00 - add esi,00006FFC
  4809. "isaac-ng.exe"+13B45B: E8 70 95 FF FF - call isaac-ng.exe+1349D0
  4810. "isaac-ng.exe"+13B460: D9 45 F0 - fld dword ptr [ebp-10]
  4811. // ---------- INJECTING HERE ----------
  4812. "isaac-ng.exe"+13B463: D8 D1 - fcom st(0),st(1)
  4813. "isaac-ng.exe"+13B465: DF E0 - fnstsw ax
  4814. "isaac-ng.exe"+13B467: DD D9 - fstp st(1)
  4815. // ---------- DONE INJECTING ----------
  4816. "isaac-ng.exe"+13B469: F6 C4 41 - test ah,41
  4817. "isaac-ng.exe"+13B46C: 74 2B - je isaac-ng.exe+13B499
  4818. "isaac-ng.exe"+13B46E: D9 E8 - fld1
  4819. "isaac-ng.exe"+13B470: DE D9 - fcompp
  4820. "isaac-ng.exe"+13B472: DF E0 - fnstsw ax
  4821. "isaac-ng.exe"+13B474: F6 C4 41 - test ah,41
  4822. "isaac-ng.exe"+13B477: 7B 22 - jnp isaac-ng.exe+13B49B
  4823. "isaac-ng.exe"+13B479: 8B 15 04 F6 67 01 - mov edx,[isaac-ng.exe+2DF604]
  4824. "isaac-ng.exe"+13B47F: C6 42 09 01 - mov byte ptr [edx+09],01
  4825. "isaac-ng.exe"+13B483: 32 C0 - xor al,al
  4826. }
  4827. </AssemblerScript>
  4828. </CheatEntry>
  4829. <CheatEntry>
  4830. <ID>842</ID>
  4831. <Description>"No Angel Room Spawn Conditions"</Description>
  4832. <LastState Activated="0"/>
  4833. <Color>80000008</Color>
  4834. <VariableType>Auto Assembler Script</VariableType>
  4835. <AssemblerScript>{ by HenryEx
  4836. for The Binding of Isaac: Rebirth
  4837.  
  4838. This removes the "seen devil room before and didn't take deals"
  4839. requirement, so your first devil room can be an angel room
  4840. and taking devil deals won't lock you out of angel rooms.
  4841. }
  4842.  
  4843. [ENABLE]
  4844. aobscanmodule(AOB_UnblockAR,isaac-ng.exe,74 * 39 * * * * * 75 * 8D 41 01 EB)
  4845. registersymbol(AOB_UnblockAR)
  4846.  
  4847. AOB_UnblockAR:
  4848. db EB 08
  4849. // jmp +08
  4850.  
  4851. [DISABLE]
  4852. AOB_UnblockAR:
  4853. db 74 0D
  4854. // je +13
  4855.  
  4856. unregistersymbol(AOB_UnblockAR)
  4857.  
  4858. {
  4859. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+F6CDF
  4860.  
  4861. "isaac-ng.exe"+F6CC0: 24 01 - and al,01
  4862. "isaac-ng.exe"+F6CC2: 3A C8 - cmp cl,al
  4863. "isaac-ng.exe"+F6CC4: 75 06 - jne isaac-ng.exe+F6CCC
  4864. "isaac-ng.exe"+F6CC6: 8A 55 F0 - mov dl,[ebp-10]
  4865. "isaac-ng.exe"+F6CC9: 88 55 F3 - mov [ebp-0D],dl
  4866. "isaac-ng.exe"+F6CCC: 8B 3D 04 F6 0D 01 - mov edi,[isaac-ng.exe+2DF604]
  4867. "isaac-ng.exe"+F6CD2: 8B 87 C8 4D 17 00 - mov eax,[edi+00174DC8]
  4868. "isaac-ng.exe"+F6CD8: 83 E0 20 - and eax,20
  4869. "isaac-ng.exe"+F6CDB: 33 C9 - xor ecx,ecx
  4870. "isaac-ng.exe"+F6CDD: 0B C1 - or eax,ecx
  4871. // ---------- JUMPING HERE ----------
  4872. "isaac-ng.exe"+F6CDF: 74 0D - je isaac-ng.exe+F6CEE
  4873. // ---------- JUMPING HERE ----------
  4874. "isaac-ng.exe"+F6CE1: 39 8F E4 4D 17 00 - cmp [edi+00174DE4],ecx
  4875. "isaac-ng.exe"+F6CE7: 75 05 - jne isaac-ng.exe+F6CEE
  4876. "isaac-ng.exe"+F6CE9: 8D 41 01 - lea eax,[ecx+01]
  4877. "isaac-ng.exe"+F6CEC: EB 02 - jmp isaac-ng.exe+F6CF0
  4878. "isaac-ng.exe"+F6CEE: 33 C0 - xor eax,eax
  4879. "isaac-ng.exe"+F6CF0: 20 45 F3 - and [ebp-0D],al
  4880. "isaac-ng.exe"+F6CF3: 8B 07 - mov eax,[edi]
  4881. "isaac-ng.exe"+F6CF5: 89 45 E8 - mov [ebp-18],eax
  4882. "isaac-ng.exe"+F6CF8: E8 63 E4 FD FF - call isaac-ng.exe+D5160
  4883. "isaac-ng.exe"+F6CFD: 8B D8 - mov ebx,eax
  4884. "isaac-ng.exe"+F6CFF: 0B 5E 0C - or ebx,[esi+0C]
  4885. }
  4886. </AssemblerScript>
  4887. </CheatEntry>
  4888. <CheatEntry>
  4889. <ID>843</ID>
  4890. <Description>"Get Angel instead of Devil Room"</Description>
  4891. <LastState Activated="0"/>
  4892. <Color>80000008</Color>
  4893. <VariableType>Auto Assembler Script</VariableType>
  4894. <AssemblerScript>{ by HenryEx
  4895. for The Binding of Isaac: Afterbirth
  4896.  
  4897. This will set the Angel Room chance to appear to 100%, but the usual
  4898. conditions for its appearance still need to be true.
  4899. }
  4900.  
  4901. [ENABLE]
  4902. aobscanmodule(AOB_AlwaysAR,isaac-ng.exe,EB 02 33 C0 20 45 F3 8B 0F 89 4D E8)
  4903. alloc(AlwaysAR,256)
  4904.  
  4905. registersymbol(AOB_AlwaysAR)
  4906. label(_BackAR)
  4907.  
  4908. AOB_AlwaysAR+7:
  4909. jmp AlwaysAR
  4910. _BackAR:
  4911.  
  4912.  
  4913. AlwaysAR:
  4914. mov al,1
  4915. and [ebp-0D],al
  4916. mov ecx,[edi]
  4917. mov [ebp-18],ecx
  4918. jmp _BackAR
  4919.  
  4920. [DISABLE]
  4921. AOB_AlwaysAR+7:
  4922. mov ecx,[edi]
  4923. mov [ebp-18],ecx
  4924. // db 8B 0F 89 4D E8
  4925.  
  4926. unregistersymbol(AOB_AlwaysAR)
  4927. dealloc(AlwaysAR)
  4928.  
  4929. {
  4930. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+F9263
  4931. "isaac-ng.exe"+F9242: 8B 87 88 4D 17 00 - mov eax,[edi+00174D88]
  4932. "isaac-ng.exe"+F9248: 83 E0 20 - and eax,20
  4933. "isaac-ng.exe"+F924B: 33 C9 - xor ecx,ecx
  4934. "isaac-ng.exe"+F924D: 0B C1 - or eax,ecx
  4935. "isaac-ng.exe"+F924F: 74 0D - je isaac-ng.exe+F925E
  4936. "isaac-ng.exe"+F9251: 39 8F A4 4D 17 00 - cmp [edi+00174DA4],ecx
  4937. "isaac-ng.exe"+F9257: 75 05 - jne isaac-ng.exe+F925E
  4938. "isaac-ng.exe"+F9259: 8D 41 01 - lea eax,[ecx+01]
  4939. "isaac-ng.exe"+F925C: EB 02 - jmp isaac-ng.exe+F9260
  4940. "isaac-ng.exe"+F925E: 33 C0 - xor eax,eax
  4941. "isaac-ng.exe"+F9260: 20 45 F3 - and [ebp-0D],al
  4942. // ---------- INJECTING HERE ----------
  4943. "isaac-ng.exe"+F9263: 8B 0F - mov ecx,[edi]
  4944. "isaac-ng.exe"+F9265: 89 4D E8 - mov [ebp-18],ecx
  4945. // ---------- DONE INJECTING ----------
  4946. "isaac-ng.exe"+F9268: E8 43 DA FD FF - call isaac-ng.exe+D6CB0
  4947. "isaac-ng.exe"+F926D: 8B 55 08 - mov edx,[ebp+08]
  4948. "isaac-ng.exe"+F9270: 8B D8 - mov ebx,eax
  4949. "isaac-ng.exe"+F9272: 0B 5A 0C - or ebx,[edx+0C]
  4950. "isaac-ng.exe"+F9275: E8 56 DB FD FF - call isaac-ng.exe+D6DD0
  4951. "isaac-ng.exe"+F927A: F7 D0 - not eax
  4952. "isaac-ng.exe"+F927C: 23 D8 - and ebx,eax
  4953. "isaac-ng.exe"+F927E: F6 C3 02 - test bl,02
  4954. "isaac-ng.exe"+F9281: 74 03 - je isaac-ng.exe+F9286
  4955. "isaac-ng.exe"+F9283: FF 45 E8 - inc [ebp-18]
  4956. }
  4957. </AssemblerScript>
  4958. </CheatEntry>
  4959. </CheatEntries>
  4960. </CheatEntry>
  4961. <CheatEntry>
  4962. <ID>922</ID>
  4963. <Description>"Gambling / Stores related"</Description>
  4964. <Options moHideChildren="1"/>
  4965. <LastState Value="" Activated="0" RealAddress="00000000"/>
  4966. <Color>FF0000</Color>
  4967. <GroupHeader>1</GroupHeader>
  4968. <CheatEntries>
  4969. <CheatEntry>
  4970. <ID>408</ID>
  4971. <Description>"Guaranteed Bum Reward"</Description>
  4972. <LastState Activated="0"/>
  4973. <Color>80000008</Color>
  4974. <VariableType>Auto Assembler Script</VariableType>
  4975. <AssemblerScript>{ by HenryEx
  4976. for The Binding of Isaac: Afterbirth
  4977.  
  4978. Bums should always give a reward with this
  4979. }
  4980.  
  4981. [ENABLE]
  4982. aobscanmodule(AOB_Bum,isaac-ng.exe,39 83 * * * * 7E * 6A 02 E8)
  4983. registersymbol(AOB_Bum)
  4984.  
  4985. AOB_Bum:
  4986. db EB 06
  4987. // jmp short +6
  4988.  
  4989. [DISABLE]
  4990.  
  4991. AOB_Bum:
  4992. db 39 83
  4993. // cmp [ebx+00000B9C],eax
  4994.  
  4995. unregistersymbol(AOB_Bum)
  4996.  
  4997. {
  4998. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9C6EB
  4999.  
  5000. "isaac-ng.exe"+9C6C5: 03 C7 - add eax,edi
  5001. "isaac-ng.exe"+9C6C7: 83 BA 20 50 17 00 01 - cmp dword ptr [edx+00175020],01
  5002. "isaac-ng.exe"+9C6CE: 89 44 24 10 - mov [esp+10],eax
  5003. "isaac-ng.exe"+9C6D2: 75 17 - jne isaac-ng.exe+9C6EB
  5004. "isaac-ng.exe"+9C6D4: 83 F8 05 - cmp eax,05
  5005. "isaac-ng.exe"+9C6D7: C7 44 24 0C 05 00 00 00 - mov [esp+0C],00000005
  5006. "isaac-ng.exe"+9C6DF: 8D 44 24 10 - lea eax,[esp+10]
  5007. "isaac-ng.exe"+9C6E3: 7F 04 - jg isaac-ng.exe+9C6E9
  5008. "isaac-ng.exe"+9C6E5: 8D 44 24 0C - lea eax,[esp+0C]
  5009. "isaac-ng.exe"+9C6E9: 8B 00 - mov eax,[eax]
  5010. // ---------- REPLACING HERE ----------
  5011. "isaac-ng.exe"+9C6EB: 39 83 9C 0B 00 00 - cmp [ebx+00000B9C],eax
  5012. // ---------- REPLACING HERE ----------
  5013. "isaac-ng.exe"+9C6F1: 7E 3C - jle isaac-ng.exe+9C72F
  5014. "isaac-ng.exe"+9C6F3: 6A 02 - push 02
  5015. "isaac-ng.exe"+9C6F5: E8 86 82 09 00 - call isaac-ng.exe+134980
  5016. "isaac-ng.exe"+9C6FA: 8B 35 04 F6 0D 01 - mov esi,[isaac-ng.exe+2DF604]
  5017. "isaac-ng.exe"+9C700: 83 C0 02 - add eax,02
  5018. "isaac-ng.exe"+9C703: 33 FF - xor edi,edi
  5019. "isaac-ng.exe"+9C705: 89 83 9C 0B 00 00 - mov [ebx+00000B9C],eax
  5020. "isaac-ng.exe"+9C70B: E8 20 43 F7 FF - call isaac-ng.exe+10A30
  5021. "isaac-ng.exe"+9C710: 39 B8 3C 1E 00 00 - cmp [eax+00001E3C],edi
  5022. "isaac-ng.exe"+9C716: 7E 06 - jle isaac-ng.exe+9C71E
  5023. }
  5024. </AssemblerScript>
  5025. </CheatEntry>
  5026. <CheatEntry>
  5027. <ID>830</ID>
  5028. <Description>"Win shell game"</Description>
  5029. <LastState Activated="0"/>
  5030. <Color>80000008</Color>
  5031. <VariableType>Auto Assembler Script</VariableType>
  5032. <AssemblerScript>{ by HenryEx
  5033. for The Binding of Isaac: Afterbirth
  5034.  
  5035. Rigs the shell game in your favor.
  5036. }
  5037.  
  5038. [ENABLE]
  5039. aobscanmodule(AOB_Shell,isaac-ng.exe,6A 03 8B F3 89 5C 24 * E8 * * * * 85 C0 0F 84)
  5040. registersymbol(AOB_Shell)
  5041.  
  5042. AOB_Shell+F:
  5043. db 90 E9
  5044.  
  5045. [DISABLE]
  5046. AOB_Shell+F:
  5047. db 0F 84
  5048.  
  5049. unregistersymbol(AOB_Shell)
  5050.  
  5051. {
  5052. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9AC67
  5053.  
  5054. "isaac-ng.exe"+9AC43: 8B C7 - mov eax,edi
  5055. "isaac-ng.exe"+9AC45: E8 26 8C F6 FF - call isaac-ng.exe+3870
  5056. "isaac-ng.exe"+9AC4A: 84 C0 - test al,al
  5057. "isaac-ng.exe"+9AC4C: 0F 84 0C 03 00 00 - je isaac-ng.exe+9AF5E
  5058. "isaac-ng.exe"+9AC52: 8D 9E 70 0B 00 00 - lea ebx,[esi+00000B70]
  5059. "isaac-ng.exe"+9AC58: 6A 03 - push 03
  5060. "isaac-ng.exe"+9AC5A: 8B F3 - mov esi,ebx
  5061. "isaac-ng.exe"+9AC5C: 89 5C 24 3C - mov [esp+3C],ebx
  5062. "isaac-ng.exe"+9AC60: E8 1B 9D 09 00 - call isaac-ng.exe+134980
  5063. "isaac-ng.exe"+9AC65: 85 C0 - test eax,eax
  5064. // ---------- JUMP HERE ----------
  5065. "isaac-ng.exe"+9AC67: 0F 84 FB 00 00 00 - je isaac-ng.exe+9AD68
  5066. // ---------- JUMP HERE ----------
  5067. "isaac-ng.exe"+9AC6D: 8B 35 04 F6 0D 01 - mov esi,[isaac-ng.exe+2DF604]
  5068. "isaac-ng.exe"+9AC73: 6A 2E - push 2E
  5069. "isaac-ng.exe"+9AC75: 33 FF - xor edi,edi
  5070. "isaac-ng.exe"+9AC77: E8 B4 5D F7 FF - call isaac-ng.exe+10A30
  5071. "isaac-ng.exe"+9AC7C: 8B C8 - mov ecx,eax
  5072. "isaac-ng.exe"+9AC7E: E8 5D A1 06 00 - call isaac-ng.exe+104DE0
  5073. "isaac-ng.exe"+9AC83: 84 C0 - test al,al
  5074. "isaac-ng.exe"+9AC85: 74 13 - je isaac-ng.exe+9AC9A
  5075. "isaac-ng.exe"+9AC87: 8B 74 24 18 - mov esi,[esp+18]
  5076. "isaac-ng.exe"+9AC8B: 6A 03 - push 03
  5077. }
  5078. </AssemblerScript>
  5079. </CheatEntry>
  5080. <CheatEntry>
  5081. <ID>867</ID>
  5082. <Description>"Store Free"</Description>
  5083. <LastState Activated="0"/>
  5084. <Color>80000008</Color>
  5085. <VariableType>Auto Assembler Script</VariableType>
  5086. <AssemblerScript>{ by HenryEx
  5087. for The Binding of Isaac: Afterbirth
  5088.  
  5089. All store items will be free.
  5090. }
  5091.  
  5092. [ENABLE]
  5093. aobscanmodule(AOB_FreeStore,isaac-ng.exe,8B * E8 * * * * 84 C0 75 * 83 * 02)
  5094. registersymbol(AOB_FreeStore)
  5095.  
  5096. AOB_FreeStore+9:
  5097. db EB
  5098.  
  5099. [DISABLE]
  5100. AOB_FreeStore+9:
  5101. db 75
  5102.  
  5103. unregistersymbol(AOB_FreeStore)
  5104.  
  5105. {
  5106. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+C8E86
  5107.  
  5108. "isaac-ng.exe"+C8E6A: 75 2E - jne isaac-ng.exe+C8E9A
  5109. "isaac-ng.exe"+C8E6C: 83 7D 0C 00 - cmp dword ptr [ebp+0C],00
  5110. "isaac-ng.exe"+C8E70: 74 28 - je isaac-ng.exe+C8E9A
  5111. "isaac-ng.exe"+C8E72: 6A 0D - push 0D
  5112. "isaac-ng.exe"+C8E74: 33 FF - xor edi,edi
  5113. "isaac-ng.exe"+C8E76: 8B F2 - mov esi,edx
  5114. "isaac-ng.exe"+C8E78: E8 A3 79 F4 FF - call isaac-ng.exe+10820
  5115. "isaac-ng.exe"+C8E7D: 8B C8 - mov ecx,eax
  5116. "isaac-ng.exe"+C8E7F: E8 AC AB 03 00 - call isaac-ng.exe+103A30
  5117. "isaac-ng.exe"+C8E84: 84 C0 - test al,al
  5118. // ---------- JUMPING HERE ----------
  5119. "isaac-ng.exe"+C8E86: 75 05 - jne isaac-ng.exe+C8E8D
  5120. // ---------- JUMPING HERE ----------
  5121. "isaac-ng.exe"+C8E88: 83 FB 02 - cmp ebx,02
  5122. "isaac-ng.exe"+C8E8B: 7C 0D - jnge isaac-ng.exe+C8E9A
  5123. "isaac-ng.exe"+C8E8D: 8B 4D 08 - mov ecx,[ebp+08]
  5124. "isaac-ng.exe"+C8E90: C7 81 74 10 00 00 18 FC FF FF - mov [ecx+00001074],FFFFFC18
  5125. "isaac-ng.exe"+C8E9A: 8B 45 08 - mov eax,[ebp+08]
  5126. "isaac-ng.exe"+C8E9D: 83 B8 74 10 00 00 00 - cmp dword ptr [eax+00001074],00
  5127. "isaac-ng.exe"+C8EA4: 0F 84 C2 03 00 00 - je isaac-ng.exe+C926C
  5128. "isaac-ng.exe"+C8EAA: 8B D8 - mov ebx,eax
  5129. "isaac-ng.exe"+C8EAC: 8D 93 88 02 00 00 - lea edx,[ebx+00000288]
  5130. "isaac-ng.exe"+C8EB2: 33 C0 - xor eax,eax
  5131. "isaac-ng.exe"+C8EB4: E8 07 91 F3 FF - call isaac-ng.exe+1FC0
  5132. }
  5133. </AssemblerScript>
  5134. </CheatEntry>
  5135. <CheatEntry>
  5136. <ID>952</ID>
  5137. <Description>"Store Restocks"</Description>
  5138. <LastState Activated="0"/>
  5139. <Color>80000008</Color>
  5140. <VariableType>Auto Assembler Script</VariableType>
  5141. <AssemblerScript>{ by HenryEx
  5142. for The Binding of Isaac: Afterbirth
  5143.  
  5144. Stores will restock.
  5145. }
  5146.  
  5147. [ENABLE]
  5148. aobscanmodule(AOB_RestockSmall,isaac-ng.exe,E8 * * * * 39 * * * * * 7E * A1)
  5149. aobscanmodule(AOB_RestockBig,isaac-ng.exe,E8 * * * * 39 * * * * * 0F 9F C0 84 C0 0F 84 * * * * 8B)
  5150. registersymbol(AOB_RestockSmall)
  5151. registersymbol(AOB_RestockBig)
  5152.  
  5153. AOB_RestockSmall+B:
  5154. db 7C // jl
  5155.  
  5156. AOB_RestockBig+10:
  5157. db EB 04 // jmp +4
  5158.  
  5159. [DISABLE]
  5160. AOB_RestockSmall+B:
  5161. db 7E // jle
  5162.  
  5163. AOB_RestockBig+10:
  5164. db 0F 84 // je
  5165.  
  5166.  
  5167. unregistersymbol(AOB_RestockSmall)
  5168. unregistersymbol(AOB_RestockBig)
  5169.  
  5170. {
  5171. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+D251C
  5172.  
  5173. "isaac-ng.exe"+D24EE: 81 8B 94 1D 00 00 00 04 00 00 - or [ebx+00001D94],00000400
  5174. "isaac-ng.exe"+D24F8: 8B 74 24 18 - mov esi,[esp+18]
  5175. "isaac-ng.exe"+D24FC: 83 7E 28 64 - cmp dword ptr [esi+28],64
  5176. "isaac-ng.exe"+D2500: 74 5A - je isaac-ng.exe+D255C
  5177. "isaac-ng.exe"+D2502: 83 7C 24 54 00 - cmp dword ptr [esp+54],00
  5178. "isaac-ng.exe"+D2507: 74 4A - je isaac-ng.exe+D2553
  5179. "isaac-ng.exe"+D2509: 8B 35 34 26 6C 01 - mov esi,[isaac-ng.exe+2E2634]
  5180. "isaac-ng.exe"+D250F: 33 FF - xor edi,edi
  5181. "isaac-ng.exe"+D2511: E8 EA E1 F3 FF - call isaac-ng.exe+10700
  5182. "isaac-ng.exe"+D2516: 39 B8 84 23 00 00 - cmp [eax+00002384],edi
  5183. // ---------- DON'T JUMP HERE ----------
  5184. "isaac-ng.exe"+D251C: 7E 31 - jle isaac-ng.exe+D254F
  5185. // ---------- DON'T JUMP HERE ----------
  5186. "isaac-ng.exe"+D251E: A1 34 26 6C 01 - mov eax,[isaac-ng.exe+2E2634]
  5187. "isaac-ng.exe"+D2523: 8B 90 14 70 00 00 - mov edx,[eax+00007014]
  5188. "isaac-ng.exe"+D2529: 83 7A 08 02 - cmp dword ptr [edx+08],02
  5189. "isaac-ng.exe"+D252D: 75 20 - jne isaac-ng.exe+D254F
  5190. "isaac-ng.exe"+D252F: 8B 44 24 18 - mov eax,[esp+18]
  5191. "isaac-ng.exe"+D2533: 8B 88 78 10 00 00 - mov ecx,[eax+00001078]
  5192. "isaac-ng.exe"+D2539: 8B F2 - mov esi,edx
  5193. "isaac-ng.exe"+D253B: 51 - push ecx
  5194. "isaac-ng.exe"+D253C: 8D B8 18 06 00 00 - lea edi,[eax+00000618]
  5195. "isaac-ng.exe"+D2542: 8B DE - mov ebx,esi
  5196. "isaac-ng.exe"+D2544: E8 F7 6B 07 00 - call isaac-ng.exe+149140
  5197. }
  5198. {
  5199. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+D17D0
  5200.  
  5201. "isaac-ng.exe"+D17A4: E8 07 19 F3 FF - call isaac-ng.exe+30B0
  5202. "isaac-ng.exe"+D17A9: 8B 5C 24 18 - mov ebx,[esp+18]
  5203. "isaac-ng.exe"+D17AD: 80 7C 24 43 00 - cmp byte ptr [esp+43],00
  5204. "isaac-ng.exe"+D17B2: 0F 84 A7 00 00 00 - je isaac-ng.exe+D185F
  5205. "isaac-ng.exe"+D17B8: 8B 35 34 26 5B 00 - mov esi,[isaac-ng.exe+2E2634]
  5206. "isaac-ng.exe"+D17BE: 33 FF - xor edi,edi
  5207. "isaac-ng.exe"+D17C0: E8 3B EF F3 FF - call isaac-ng.exe+10700
  5208. "isaac-ng.exe"+D17C5: 39 B8 84 23 00 00 - cmp [eax+00002384],edi
  5209. "isaac-ng.exe"+D17CB: 0F 9F C0 - setg al
  5210. "isaac-ng.exe"+D17CE: 84 C0 - test al,al
  5211. // ---------- DON'T JUMP HERE ----------
  5212. "isaac-ng.exe"+D17D0: 0F 84 89 00 00 00 - je isaac-ng.exe+D185F
  5213. // ---------- DON'T JUMP HERE ----------
  5214. "isaac-ng.exe"+D17D6: 8B 35 34 26 5B 00 - mov esi,[isaac-ng.exe+2E2634]
  5215. "isaac-ng.exe"+D17DC: 8B 86 14 70 00 00 - mov eax,[esi+00007014]
  5216. "isaac-ng.exe"+D17E2: 83 78 08 02 - cmp dword ptr [eax+08],02
  5217. "isaac-ng.exe"+D17E6: 0F 85 79 00 00 00 - jne isaac-ng.exe+D1865
  5218. "isaac-ng.exe"+D17EC: 8B F0 - mov esi,eax
  5219. "isaac-ng.exe"+D17EE: 8B 83 78 10 00 00 - mov eax,[ebx+00001078]
  5220. "isaac-ng.exe"+D17F4: 8D BB 18 06 00 00 - lea edi,[ebx+00000618]
  5221. "isaac-ng.exe"+D17FA: 50 - push eax
  5222. "isaac-ng.exe"+D17FB: 8B DE - mov ebx,esi
  5223. "isaac-ng.exe"+D17FD: E8 3E 79 07 00 - call isaac-ng.exe+149140
  5224. }
  5225. </AssemblerScript>
  5226. </CheatEntry>
  5227. <CheatEntry>
  5228. <ID>951</ID>
  5229. <Description>"Improve Slots Chances"</Description>
  5230. <LastState Activated="0"/>
  5231. <Color>80000008</Color>
  5232. <VariableType>Auto Assembler Script</VariableType>
  5233. <AssemblerScript>{ by HenryEx
  5234. for The Binding of Isaac: Afterbirth
  5235.  
  5236. Dramatically improves the chance for a Slot Machine payout,
  5237. and prevent them from blowing up
  5238. }
  5239.  
  5240. [ENABLE]
  5241. aobscanmodule(AOB_Slots,isaac-ng.exe,6A 32 89 * * * E8 * * * * 85 C0 75 * E8)
  5242. aobscanmodule(AOB_SlotsCh,isaac-ng.exe,74 04 6A 0F EB 02 6A 15)
  5243. aobscanmodule(AOB_SlotsHM,isaac-ng.exe,75 11 6A 02 E8 * * * * 85 C0 75)
  5244. aobscanmodule(AOB_SlotsFly,isaac-ng.exe,6A 03 89 * * * E8 * * * * 85 C0 75 * 8B)
  5245. registersymbol(AOB_Slots)
  5246. registersymbol(AOB_SlotsCh)
  5247. registersymbol(AOB_SlotsHM)
  5248. registersymbol(AOB_SlotsFly)
  5249.  
  5250. // Break Chance
  5251. AOB_Slots+D:
  5252. db EB
  5253.  
  5254. // Payout Chance
  5255. AOB_SlotsCh+3:
  5256. db 0A
  5257.  
  5258. // Payout Chance (Lucky Foot)
  5259. AOB_SlotsCh+7:
  5260. db 0A
  5261.  
  5262. // Hard Mode chance reduction
  5263. AOB_SlotsHM:
  5264. db EB
  5265.  
  5266. // Pretty Fly
  5267. AOB_SlotsFly+1:
  5268. db 01
  5269.  
  5270. [DISABLE]
  5271. AOB_Slots+D:
  5272. db 75
  5273.  
  5274. AOB_SlotsCh+3:
  5275. db 0F
  5276.  
  5277. AOB_SlotsCh+7:
  5278. db 15
  5279.  
  5280. AOB_SlotsHM:
  5281. db 75
  5282.  
  5283. AOB_SlotsFly+1:
  5284. db 03
  5285.  
  5286. unregistersymbol(AOB_Slots)
  5287. unregistersymbol(AOB_SlotsCh)
  5288. unregistersymbol(AOB_SlotsHM)
  5289. unregistersymbol(AOB_SlotsFly)
  5290.  
  5291. {
  5292. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+985DB
  5293.  
  5294. "isaac-ng.exe"+985B6: 6A 00 - push 00
  5295. "isaac-ng.exe"+985B8: B8 B8 C9 10 01 - mov eax,isaac-ng.exe+28C9B8
  5296. "isaac-ng.exe"+985BD: 8B F7 - mov esi,edi
  5297. "isaac-ng.exe"+985BF: E8 2C AD F6 FF - call isaac-ng.exe+32F0
  5298. "isaac-ng.exe"+985C4: 8B 5C 24 14 - mov ebx,[esp+14]
  5299. "isaac-ng.exe"+985C8: 8D B3 70 0B 00 00 - lea esi,[ebx+00000B70]
  5300. "isaac-ng.exe"+985CE: 6A 32 - push 32
  5301. "isaac-ng.exe"+985D0: 89 74 24 3C - mov [esp+3C],esi
  5302. "isaac-ng.exe"+985D4: E8 77 EE 09 00 - call isaac-ng.exe+137450
  5303. "isaac-ng.exe"+985D9: 85 C0 - test eax,eax
  5304. // ---------- JUMPING HERE ----------
  5305. "isaac-ng.exe"+985DB: 75 49 - jne isaac-ng.exe+98626
  5306. // ---------- JUMPING HERE ----------
  5307. "isaac-ng.exe"+985DD: E8 2E A8 03 00 - call isaac-ng.exe+D2E10
  5308. "isaac-ng.exe"+985E2: 50 - push eax
  5309. "isaac-ng.exe"+985E3: A1 34 26 16 01 - mov eax,[isaac-ng.exe+2E2634]
  5310. "isaac-ng.exe"+985E8: 6A 00 - push 00
  5311. "isaac-ng.exe"+985EA: 6A 00 - push 00
  5312. "isaac-ng.exe"+985EC: 6A 01 - push 01
  5313. "isaac-ng.exe"+985EE: 68 E8 03 00 00 - push 000003E8
  5314. "isaac-ng.exe"+985F3: 50 - push eax
  5315. "isaac-ng.exe"+985F4: 8D 8B 18 06 00 00 - lea ecx,[ebx+00000618]
  5316. "isaac-ng.exe"+985FA: B8 FC 41 16 01 - mov eax,isaac-ng.exe+2E41FC
  5317. "isaac-ng.exe"+985FF: E8 2C F9 03 00 - call isaac-ng.exe+D7F30
  5318. }
  5319. {
  5320. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9864C
  5321.  
  5322. "isaac-ng.exe"+9861C: E8 8F AA F6 FF - call isaac-ng.exe+30B0
  5323. "isaac-ng.exe"+98621: E9 09 0C 00 00 - jmp isaac-ng.exe+9922F
  5324. "isaac-ng.exe"+98626: 8B 35 34 26 16 01 - mov esi,[isaac-ng.exe+2E2634]
  5325. "isaac-ng.exe"+9862C: 33 FF - xor edi,edi
  5326. "isaac-ng.exe"+9862E: C7 83 94 0B 00 00 00 00 00 00 - mov [ebx+00000B94],00000000
  5327. "isaac-ng.exe"+98638: E8 C3 80 F7 FF - call isaac-ng.exe+10700
  5328. "isaac-ng.exe"+9863D: 39 B8 5C 1E 00 00 - cmp [eax+00001E5C],edi
  5329. "isaac-ng.exe"+98643: 8B 74 24 38 - mov esi,[esp+38]
  5330. "isaac-ng.exe"+98647: 0F 9F C0 - setg al
  5331. "isaac-ng.exe"+9864A: 84 C0 - test al,al
  5332. "isaac-ng.exe"+9864C: 74 04 - je isaac-ng.exe+98652
  5333. // ---------- CHANCES ----------
  5334. "isaac-ng.exe"+9864E: 6A 0F - push 0F
  5335. "isaac-ng.exe"+98650: EB 02 - jmp isaac-ng.exe+98654
  5336. "isaac-ng.exe"+98652: 6A 15 - push 15
  5337. // ---------- CHANCES ----------
  5338. "isaac-ng.exe"+98654: E8 F7 ED 09 00 - call isaac-ng.exe+137450
  5339. "isaac-ng.exe"+98659: 83 C0 03 - add eax,03
  5340. "isaac-ng.exe"+9865C: 89 83 94 0B 00 00 - mov [ebx+00000B94],eax
  5341. "isaac-ng.exe"+98662: 83 F8 09 - cmp eax,09
  5342. "isaac-ng.exe"+98665: 72 11 - jb isaac-ng.exe+98678
  5343. "isaac-ng.exe"+98667: 6A 0A - push 0A
  5344. "isaac-ng.exe"+98669: E8 E2 ED 09 00 - call isaac-ng.exe+137450
  5345. "isaac-ng.exe"+9866E: 85 C0 - test eax,eax
  5346. "isaac-ng.exe"+98670: 74 06 - je isaac-ng.exe+98678
  5347. }
  5348. {
  5349. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+98791
  5350.  
  5351. "isaac-ng.exe"+98765: 75 19 - jne isaac-ng.exe+98780
  5352. "isaac-ng.exe"+98767: 8B 74 24 20 - mov esi,[esp+20]
  5353. "isaac-ng.exe"+9876B: 6A 05 - push 05
  5354. "isaac-ng.exe"+9876D: E8 DE EC 09 00 - call isaac-ng.exe+137450
  5355. "isaac-ng.exe"+98772: 85 C0 - test eax,eax
  5356. "isaac-ng.exe"+98774: 74 0A - je isaac-ng.exe+98780
  5357. "isaac-ng.exe"+98776: C7 83 94 0B 00 00 0A 00 00 00 - mov [ebx+00000B94],0000000A
  5358. "isaac-ng.exe"+98780: 8B 15 34 26 16 01 - mov edx,[isaac-ng.exe+2E2634]
  5359. "isaac-ng.exe"+98786: 83 BA DC 4F 17 00 01 - cmp dword ptr [edx+00174FDC],01
  5360. "isaac-ng.exe"+9878D: 8B 74 24 38 - mov esi,[esp+38]
  5361. // ---------- JUMPING HERE ----------
  5362. "isaac-ng.exe"+98791: 75 11 - jne isaac-ng.exe+987A4
  5363. // ---------- JUMPING HERE ----------
  5364. "isaac-ng.exe"+98793: 6A 02 - push 02
  5365. "isaac-ng.exe"+98795: E8 B6 EC 09 00 - call isaac-ng.exe+137450
  5366. "isaac-ng.exe"+9879A: 85 C0 - test eax,eax
  5367. // ---------- OR HERE ----------
  5368. "isaac-ng.exe"+9879C: 75 06 - jne isaac-ng.exe+987A4
  5369. // ---------- OR HERE ----------
  5370. "isaac-ng.exe"+9879E: 89 83 94 0B 00 00 - mov [ebx+00000B94],eax
  5371. "isaac-ng.exe"+987A4: 8B 83 94 0B 00 00 - mov eax,[ebx+00000B94]
  5372. "isaac-ng.exe"+987AA: 83 C0 FD - add eax,-03
  5373. "isaac-ng.exe"+987AD: 83 F8 09 - cmp eax,09
  5374. "isaac-ng.exe"+987B0: 0F 87 FA 08 00 00 - ja isaac-ng.exe+990B0
  5375. "isaac-ng.exe"+987B6: FF 24 85 0C C1 F1 00 - jmp dword ptr [eax*4+isaac-ng.exe+9C10C]
  5376. "isaac-ng.exe"+987BD: 8B 5C 24 44 - mov ebx,[esp+44]
  5377. "isaac-ng.exe"+987C1: 83 7B 3C 00 - cmp dword ptr [ebx+3C],00
  5378. "isaac-ng.exe"+987C5: 0F 84 64 0A 00 00 - je isaac-ng.exe+9922F
  5379. "isaac-ng.exe"+987CB: 8B 43 38 - mov eax,[ebx+38]
  5380. "isaac-ng.exe"+987CE: 8D 7B 38 - lea edi,[ebx+38]
  5381. }
  5382. {
  5383. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+99344
  5384.  
  5385. "isaac-ng.exe"+9931C: 8B 86 94 0B 00 00 - mov eax,[esi+00000B94]
  5386. "isaac-ng.exe"+99322: 83 C0 FD - add eax,-03
  5387. "isaac-ng.exe"+99325: 83 F8 09 - cmp eax,09
  5388. "isaac-ng.exe"+99328: 77 44 - ja isaac-ng.exe+9936E
  5389. "isaac-ng.exe"+9932A: FF 24 85 60 C1 F1 00 - jmp dword ptr [eax*4+isaac-ng.exe+9C160]
  5390. "isaac-ng.exe"+99331: 81 C6 70 0B 00 00 - add esi,00000B70
  5391. "isaac-ng.exe"+99337: 6A 03 - push 03
  5392. "isaac-ng.exe"+99339: 89 74 24 3C - mov [esp+3C],esi
  5393. "isaac-ng.exe"+9933D: E8 0E E1 09 00 - call isaac-ng.exe+137450
  5394. "isaac-ng.exe"+99342: 85 C0 - test eax,eax
  5395. // ---------- JUMPING HERE ----------
  5396. "isaac-ng.exe"+99344: 75 37 - jne isaac-ng.exe+9937D
  5397. // ---------- JUMPING HERE ----------
  5398. "isaac-ng.exe"+99346: 8B 35 34 26 16 01 - mov esi,[isaac-ng.exe+2E2634]
  5399. "isaac-ng.exe"+9934C: 33 FF - xor edi,edi
  5400. "isaac-ng.exe"+9934E: E8 AD 73 F7 FF - call isaac-ng.exe+10700
  5401. "isaac-ng.exe"+99353: E8 58 D1 08 00 - call isaac-ng.exe+1264B0
  5402. "isaac-ng.exe"+99358: 8B 35 34 26 16 01 - mov esi,[isaac-ng.exe+2E2634]
  5403. "isaac-ng.exe"+9935E: E8 9D 73 F7 FF - call isaac-ng.exe+10700
  5404. "isaac-ng.exe"+99363: 8B F8 - mov edi,eax
  5405. "isaac-ng.exe"+99365: E8 66 D0 08 00 - call isaac-ng.exe+1263D0
  5406. "isaac-ng.exe"+9936A: 8B 74 24 14 - mov esi,[esp+14]
  5407. "isaac-ng.exe"+9936E: C7 86 90 0B 00 00 01 00 00 00 - mov [esi+00000B90],00000001
  5408. "isaac-ng.exe"+99378: E9 9C 12 00 00 - jmp isaac-ng.exe+9A619
  5409. }
  5410. </AssemblerScript>
  5411. </CheatEntry>
  5412. <CheatEntry>
  5413. <ID>897</ID>
  5414. <Description>"Shuffle Machines Always Work"</Description>
  5415. <LastState Activated="0"/>
  5416. <Color>80000008</Color>
  5417. <VariableType>Auto Assembler Script</VariableType>
  5418. <AssemblerScript>{ by HenryEx
  5419. for The Binding of Isaac: Afterbirth
  5420.  
  5421. Pickup Cycle machines (in stores, item room etc) will always cycle items.
  5422. }
  5423.  
  5424. [ENABLE]
  5425. aobscanmodule(AOB_ShuffleDo,isaac-ng.exe,E8 * * * * 85 C0 0F 94 C0 84 C0 0F 84)
  5426. aobscanmodule(AOB_ShuffleBreak,isaac-ng.exe,76 * 6A 02 E8 * * * * 85 C0 75)
  5427. registersymbol(AOB_ShuffleDo)
  5428. registersymbol(AOB_ShuffleBreak)
  5429.  
  5430. AOB_ShuffleDo+0C:
  5431. db EB 04
  5432.  
  5433. AOB_ShuffleBreak+0B:
  5434. db EB
  5435.  
  5436. [DISABLE]
  5437. AOB_ShuffleDo+0C:
  5438. db 0F 84
  5439. // je long
  5440.  
  5441. AOB_ShuffleBreak+0B:
  5442. db 75
  5443. // jne short
  5444.  
  5445. unregistersymbol(AOB_ShuffleDo)
  5446. unregistersymbol(AOB_ShuffleBreak)
  5447.  
  5448. {
  5449. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9BC43
  5450.  
  5451. "isaac-ng.exe"+9BC2B: EB 14 - jmp isaac-ng.exe+9BC41
  5452. "isaac-ng.exe"+9BC2D: 6A 02 - push 02
  5453. "isaac-ng.exe"+9BC2F: EB 06 - jmp isaac-ng.exe+9BC37
  5454. "isaac-ng.exe"+9BC31: 6A 03 - push 03
  5455. "isaac-ng.exe"+9BC33: EB 02 - jmp isaac-ng.exe+9BC37
  5456. "isaac-ng.exe"+9BC35: 6A 04 - push 04
  5457. "isaac-ng.exe"+9BC37: E8 44 8D 09 00 - call isaac-ng.exe+134980
  5458. "isaac-ng.exe"+9BC3C: 85 C0 - test eax,eax
  5459. "isaac-ng.exe"+9BC3E: 0F 94 C0 - sete al
  5460. "isaac-ng.exe"+9BC41: 84 C0 - test al,al
  5461. // ---------- JUMPING HERE ----------
  5462. "isaac-ng.exe"+9BC43: 0F 84 86 00 00 00 - je isaac-ng.exe+9BCCF
  5463. // ---------- JUMPING HERE ----------
  5464. "isaac-ng.exe"+9BC49: 8B 0D 04 F6 42 00 - mov ecx,[isaac-ng.exe+2DF604]
  5465. "isaac-ng.exe"+9BC4F: 8B 91 14 70 00 00 - mov edx,[ecx+00007014]
  5466. "isaac-ng.exe"+9BC55: 52 - push edx
  5467. "isaac-ng.exe"+9BC56: E8 75 BE 0A 00 - call isaac-ng.exe+147AD0
  5468. "isaac-ng.exe"+9BC5B: 8B 7C 24 14 - mov edi,[esp+14]
  5469. "isaac-ng.exe"+9BC5F: 01 9F A0 0B 00 00 - add [edi+00000BA0],ebx
  5470. "isaac-ng.exe"+9BC65: 83 BF A0 0B 00 00 04 - cmp dword ptr [edi+00000BA0],04
  5471. "isaac-ng.exe"+9BC6C: C7 87 9C 0B 00 00 00 00 00 00 - mov [edi+00000B9C],00000000
  5472. "isaac-ng.exe"+9BC76: 76 63 - jna isaac-ng.exe+9BCDB
  5473. "isaac-ng.exe"+9BC78: 6A 02 - push 02
  5474. }
  5475. {
  5476. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9BC81
  5477.  
  5478. "isaac-ng.exe"+9BC55: 52 - push edx
  5479. "isaac-ng.exe"+9BC56: E8 75 BE 0A 00 - call isaac-ng.exe+147AD0
  5480. "isaac-ng.exe"+9BC5B: 8B 7C 24 14 - mov edi,[esp+14]
  5481. "isaac-ng.exe"+9BC5F: 01 9F A0 0B 00 00 - add [edi+00000BA0],ebx
  5482. "isaac-ng.exe"+9BC65: 83 BF A0 0B 00 00 04 - cmp dword ptr [edi+00000BA0],04
  5483. "isaac-ng.exe"+9BC6C: C7 87 9C 0B 00 00 00 00 00 00 - mov [edi+00000B9C],00000000
  5484. "isaac-ng.exe"+9BC76: 76 63 - jna isaac-ng.exe+9BCDB
  5485. "isaac-ng.exe"+9BC78: 6A 02 - push 02
  5486. "isaac-ng.exe"+9BC7A: E8 01 8D 09 00 - call isaac-ng.exe+134980
  5487. "isaac-ng.exe"+9BC7F: 85 C0 - test eax,eax
  5488. // ---------- JUMPING HERE ----------
  5489. "isaac-ng.exe"+9BC81: 75 58 - jne isaac-ng.exe+9BCDB
  5490. // ---------- JUMPING HERE ----------
  5491. "isaac-ng.exe"+9BC83: E8 18 63 03 00 - call isaac-ng.exe+D1FA0
  5492. "isaac-ng.exe"+9BC88: 50 - push eax
  5493. "isaac-ng.exe"+9BC89: A1 04 F6 39 01 - mov eax,[isaac-ng.exe+2DF604]
  5494. "isaac-ng.exe"+9BC8E: 6A 00 - push 00
  5495. "isaac-ng.exe"+9BC90: 6A 00 - push 00
  5496. "isaac-ng.exe"+9BC92: 6A 01 - push 01
  5497. "isaac-ng.exe"+9BC94: 68 E8 03 00 00 - push 000003E8
  5498. "isaac-ng.exe"+9BC99: 50 - push eax
  5499. "isaac-ng.exe"+9BC9A: 8D 8F 18 06 00 00 - lea ecx,[edi+00000618]
  5500. "isaac-ng.exe"+9BCA0: B8 CC 11 3A 01 - mov eax,isaac-ng.exe+2E11CC
  5501. "isaac-ng.exe"+9BCA5: E8 76 B0 03 00 - call isaac-ng.exe+D6D20
  5502. }
  5503. </AssemblerScript>
  5504. </CheatEntry>
  5505. <CheatEntry>
  5506. <ID>834</ID>
  5507. <Description>"Donation Machines Don't Glitch"</Description>
  5508. <LastState Activated="0"/>
  5509. <Color>80000008</Color>
  5510. <VariableType>Auto Assembler Script</VariableType>
  5511. <AssemblerScript>{ by HenryEx
  5512. for The Binding of Isaac: Afterbirth
  5513.  
  5514. Store &amp; Greed Donation Machines won't glitch out anymore. Happy donating!
  5515. }
  5516.  
  5517. [ENABLE]
  5518. aobscanmodule(AOB_SDM,isaac-ng.exe,8B * * * 6A 14 E8 * * * * 85 C0 0F 85)
  5519. aobscanmodule(AOB_GDM,isaac-ng.exe,E8 * * * * DC 5C * * DF E0 F6 C4 41 0F 85)
  5520. registersymbol(AOB_SDM)
  5521. registersymbol(AOB_GDM)
  5522.  
  5523. AOB_SDM+0D:
  5524. db 90 E9
  5525.  
  5526. AOB_GDM+0E:
  5527. db 90 E9
  5528.  
  5529. [DISABLE]
  5530. AOB_SDM+0D:
  5531. db 0F 85
  5532.  
  5533. AOB_GDM+0E:
  5534. db 0F 85
  5535.  
  5536. unregistersymbol(AOB_SDM)
  5537. unregistersymbol(AOB_GDM)
  5538.  
  5539. {
  5540. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9B634
  5541.  
  5542. "isaac-ng.exe"+9B603: B8 18 00 00 00 - mov eax,00000018
  5543. "isaac-ng.exe"+9B608: D9 1C 24 - fstp dword ptr [esp]
  5544. "isaac-ng.exe"+9B60B: C7 86 A4 0B 00 00 0F 00 00 00 - mov [esi+00000BA4],0000000F
  5545. "isaac-ng.exe"+9B615: E8 D6 FA 0E 00 - call isaac-ng.exe+18B0F0
  5546. "isaac-ng.exe"+9B61A: 83 BE 90 0B 00 00 03 - cmp dword ptr [esi+00000B90],03
  5547. "isaac-ng.exe"+9B621: 0F 84 2E EC FF FF - je isaac-ng.exe+9A255
  5548. "isaac-ng.exe"+9B627: 8B 74 24 38 - mov esi,[esp+38]
  5549. "isaac-ng.exe"+9B62B: 6A 14 - push 14
  5550. "isaac-ng.exe"+9B62D: E8 0E A1 09 00 - call isaac-ng.exe+135740
  5551. "isaac-ng.exe"+9B632: 85 C0 - test eax,eax
  5552. // ---------- JUMPING HERE ----------
  5553. "isaac-ng.exe"+9B634: 0F 85 1B EC FF FF - jne isaac-ng.exe+9A255
  5554. // ---------- JUMPING HERE ----------
  5555. "isaac-ng.exe"+9B63A: 50 - push eax
  5556. "isaac-ng.exe"+9B63B: E8 E0 BE FF FF - call isaac-ng.exe+97520
  5557. "isaac-ng.exe"+9B640: 8B 7C 24 48 - mov edi,[esp+48]
  5558. "isaac-ng.exe"+9B644: 8B D8 - mov ebx,eax
  5559. "isaac-ng.exe"+9B646: E8 55 7A F6 FF - call isaac-ng.exe+30A0
  5560. "isaac-ng.exe"+9B64B: B0 01 - mov al,01
  5561. "isaac-ng.exe"+9B64D: B9 12 00 00 00 - mov ecx,00000012
  5562. "isaac-ng.exe"+9B652: E8 59 D0 FD FF - call isaac-ng.exe+786B0
  5563. "isaac-ng.exe"+9B657: 8B 54 24 14 - mov edx,[esp+14]
  5564. "isaac-ng.exe"+9B65B: C7 82 90 0B 00 00 03 00 00 00 - mov [edx+00000B90],00000003
  5565. }
  5566. {
  5567. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9BE2C
  5568.  
  5569. "isaac-ng.exe"+9BE05: DC 0D 68 2C 67 01 - fmul qword ptr [isaac-ng.exe+2A2C68]
  5570. "isaac-ng.exe"+9BE0B: 8B 35 34 26 6B 01 - mov esi,[isaac-ng.exe+2E2634]
  5571. "isaac-ng.exe"+9BE11: 33 FF - xor edi,edi
  5572. "isaac-ng.exe"+9BE13: DD 5C 24 7C - fstp qword ptr [esp+7C]
  5573. "isaac-ng.exe"+9BE17: E8 E4 48 F7 FF - call isaac-ng.exe+10700
  5574. "isaac-ng.exe"+9BE1C: 8B C8 - mov ecx,eax
  5575. "isaac-ng.exe"+9BE1E: E8 5D 60 09 00 - call isaac-ng.exe+131E80
  5576. "isaac-ng.exe"+9BE23: DC 5C 24 7C - fcomp qword ptr [esp+7C]
  5577. "isaac-ng.exe"+9BE27: DF E0 - fnstsw ax
  5578. "isaac-ng.exe"+9BE29: F6 C4 41 - test ah,41
  5579. // ---------- JUMPING HERE ----------
  5580. "isaac-ng.exe"+9BE2C: 0F 85 E3 E7 FF FF - jne isaac-ng.exe+9A615
  5581. // ---------- JUMPING HERE ----------
  5582. "isaac-ng.exe"+9BE32: 57 - push edi
  5583. "isaac-ng.exe"+9BE33: E8 B8 BA FF FF - call isaac-ng.exe+978F0
  5584. "isaac-ng.exe"+9BE38: 8B 7C 24 48 - mov edi,[esp+48]
  5585. "isaac-ng.exe"+9BE3C: 8B D8 - mov ebx,eax
  5586. "isaac-ng.exe"+9BE3E: E8 6D 72 F6 FF - call isaac-ng.exe+30B0
  5587. "isaac-ng.exe"+9BE43: B0 01 - mov al,01
  5588. "isaac-ng.exe"+9BE45: B9 22 00 00 00 - mov ecx,00000022
  5589. "isaac-ng.exe"+9BE4A: E8 B1 D0 FD FF - call isaac-ng.exe+78F00
  5590. "isaac-ng.exe"+9BE4F: 8B 54 24 14 - mov edx,[esp+14]
  5591. "isaac-ng.exe"+9BE53: C7 82 90 0B 00 00 03 00 00 00 - mov [edx+00000B90],00000003
  5592. }
  5593. </AssemblerScript>
  5594. </CheatEntry>
  5595. </CheatEntries>
  5596. </CheatEntry>
  5597. <CheatEntry>
  5598. <ID>923</ID>
  5599. <Description>"Disable Time Limits"</Description>
  5600. <Options moHideChildren="1"/>
  5601. <LastState Value="" Activated="0" RealAddress="00000000"/>
  5602. <Color>FF0000</Color>
  5603. <GroupHeader>1</GroupHeader>
  5604. <CheatEntries>
  5605. <CheatEntry>
  5606. <ID>411</ID>
  5607. <Description>"Get Boss Rush / Hush"</Description>
  5608. <LastState Activated="0"/>
  5609. <Color>80000008</Color>
  5610. <VariableType>Auto Assembler Script</VariableType>
  5611. <AssemblerScript>{ by HenryEx
  5612. for The Binding of Isaac: Afterbirth
  5613.  
  5614. Will always open up the boss rush &amp; hush, no matter your time.
  5615. }
  5616.  
  5617. [ENABLE]
  5618. aobscanmodule(AOB_BossRush,isaac-ng.exe,3B 88 * * * * 0f 8f * * * * 68)
  5619. aobscanmodule(AOB_BossHush,isaac-ng.exe,8B 88 * * * * 3B 88 * * * * 0F 8F * * * * 83)
  5620. registersymbol(AOB_BossRush)
  5621. registersymbol(AOB_BossHush)
  5622.  
  5623. AOB_BossRush+6:
  5624. db EB 04 // jmp short +4
  5625.  
  5626. AOB_BossHush+C:
  5627. db EB 04 // jmp short +4
  5628.  
  5629. [DISABLE]
  5630. AOB_BossRush+6:
  5631. db 0F 8F
  5632.  
  5633. AOB_BossHush+C:
  5634. db 0F 8F
  5635.  
  5636. unregistersymbol(AOB_BossRush)
  5637. unregistersymbol(AOB_BossHush)
  5638.  
  5639. {
  5640. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+13BB56
  5641.  
  5642. "isaac-ng.exe"+13BB26: E8 55 D3 09 00 - call isaac-ng.exe+1D8E80
  5643. "isaac-ng.exe"+13BB2B: 8B 0D 04 F6 0D 01 - mov ecx,[isaac-ng.exe+2DF604]
  5644. "isaac-ng.exe"+13BB31: 8B 81 1C 4D 13 00 - mov eax,[ecx+00134D1C]
  5645. "isaac-ng.exe"+13BB37: 50 - push eax
  5646. "isaac-ng.exe"+13BB38: 68 5C 09 09 01 - push isaac-ng.exe+29095C
  5647. "isaac-ng.exe"+13BB3D: E8 3E D3 09 00 - call isaac-ng.exe+1D8E80
  5648. "isaac-ng.exe"+13BB42: A1 04 F6 0D 01 - mov eax,[isaac-ng.exe+2DF604]
  5649. "isaac-ng.exe"+13BB47: 8B 88 18 4D 13 00 - mov ecx,[eax+00134D18]
  5650. "isaac-ng.exe"+13BB4D: 83 C4 10 - add esp,10
  5651. "isaac-ng.exe"+13BB50: 3B 88 1C 4D 13 00 - cmp ecx,[eax+00134D1C]
  5652. // ---------- CHANGING HERE ----------
  5653. "isaac-ng.exe"+13BB56: 0F 8F 1E 02 00 00 - jg isaac-ng.exe+13BD7A
  5654. // ---------- DONE CHANGING ----------
  5655. "isaac-ng.exe"+13BB5C: 68 6C 09 09 01 - push isaac-ng.exe+29096C
  5656. "isaac-ng.exe"+13BB61: E8 1A D3 09 00 - call isaac-ng.exe+1D8E80
  5657. "isaac-ng.exe"+13BB66: 8B 0D 04 F6 0D 01 - mov ecx,[isaac-ng.exe+2DF604]
  5658. "isaac-ng.exe"+13BB6C: 8B 81 1C 70 00 00 - mov eax,[ecx+0000701C]
  5659. "isaac-ng.exe"+13BB72: 8B B1 28 70 00 00 - mov esi,[ecx+00007028]
  5660. "isaac-ng.exe"+13BB78: 83 C4 04 - add esp,04
  5661. "isaac-ng.exe"+13BB7B: 83 F8 FB - cmp eax,-05
  5662. "isaac-ng.exe"+13BB7E: 75 13 - jne isaac-ng.exe+13BB93
  5663. "isaac-ng.exe"+13BB80: 85 F6 - test esi,esi
  5664. "isaac-ng.exe"+13BB82: 78 0F - js isaac-ng.exe+13BB93
  5665. }
  5666.  
  5667. {
  5668. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+151E44
  5669.  
  5670. "isaac-ng.exe"+151E12: 0F 85 44 02 00 00 - jne isaac-ng.exe+15205C
  5671. "isaac-ng.exe"+151E18: A1 04 F6 0D 01 - mov eax,[isaac-ng.exe+2DF604]
  5672. "isaac-ng.exe"+151E1D: 3B B8 F0 4E 17 00 - cmp edi,[eax+00174EF0]
  5673. "isaac-ng.exe"+151E23: 7C 0A - jnge isaac-ng.exe+151E2F
  5674. "isaac-ng.exe"+151E25: 80 7D F3 00 - cmp byte ptr [ebp-0D],00
  5675. "isaac-ng.exe"+151E29: 0F 85 2D 02 00 00 - jne isaac-ng.exe+15205C
  5676. "isaac-ng.exe"+151E2F: 83 FF 08 - cmp edi,08
  5677. "isaac-ng.exe"+151E32: 0F 85 24 02 00 00 - jne isaac-ng.exe+15205C
  5678. "isaac-ng.exe"+151E38: 8B 88 18 4D 13 00 - mov ecx,[eax+00134D18]
  5679. "isaac-ng.exe"+151E3E: 3B 88 20 4D 13 00 - cmp ecx,[eax+00134D20]
  5680. // ---------- CHANGING HERE ----------
  5681. "isaac-ng.exe"+151E44: 0F 8F 12 02 00 00 - jg isaac-ng.exe+15205C
  5682. // ---------- DONE CHANGING ----------
  5683. "isaac-ng.exe"+151E4A: 83 B8 1C 70 00 00 F8 - cmp dword ptr [eax+0000701C],-08
  5684. "isaac-ng.exe"+151E51: 8B B0 28 70 00 00 - mov esi,[eax+00007028]
  5685. "isaac-ng.exe"+151E57: 75 13 - jne isaac-ng.exe+151E6C
  5686. "isaac-ng.exe"+151E59: 85 F6 - test esi,esi
  5687. "isaac-ng.exe"+151E5B: 78 0F - js isaac-ng.exe+151E6C
  5688. "isaac-ng.exe"+151E5D: 8B 5D 08 - mov ebx,[ebp+08]
  5689. "isaac-ng.exe"+151E60: 83 BC B3 24 07 00 00 00 - cmp dword ptr [ebx+esi*4+00000724],00
  5690. "isaac-ng.exe"+151E68: 75 05 - jne isaac-ng.exe+151E6F
  5691. "isaac-ng.exe"+151E6A: EB 75 - jmp isaac-ng.exe+151EE1
  5692. "isaac-ng.exe"+151E6C: 8B 5D 08 - mov ebx,[ebp+08]
  5693. }
  5694. </AssemblerScript>
  5695. </CheatEntry>
  5696. <CheatEntry>
  5697. <ID>916</ID>
  5698. <Description>"No Time Limit (Speed)"</Description>
  5699. <LastState Activated="0"/>
  5700. <Color>80000008</Color>
  5701. <VariableType>Auto Assembler Script</VariableType>
  5702. <AssemblerScript>{ by HenryEx
  5703. for The Binding of Isaac: Afterbirth
  5704.  
  5705. Removes the time limit from Challenge 22: Speed!
  5706. }
  5707.  
  5708. [ENABLE]
  5709. aobscanmodule(AOB_SpeedLimit,isaac-ng.exe,83 * 16 75 * 8B * * * * * 81)
  5710. registersymbol(AOB_SpeedLimit)
  5711.  
  5712. AOB_SpeedLimit+3:
  5713. db EB
  5714.  
  5715. [DISABLE]
  5716. AOB_SpeedLimit+3:
  5717. db 75
  5718.  
  5719. unregistersymbol(AOB_SpeedLimit)
  5720.  
  5721. {
  5722. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+11DE67
  5723.  
  5724. "isaac-ng.exe"+11DE40: 33 C4 - xor eax,esp
  5725. "isaac-ng.exe"+11DE42: 50 - push eax
  5726. "isaac-ng.exe"+11DE43: 8D 84 24 78 01 00 00 - lea eax,[esp+00000178]
  5727. "isaac-ng.exe"+11DE4A: 64 A3 00 00 00 00 - mov fs:[00000000],eax
  5728. "isaac-ng.exe"+11DE50: D9 E8 - fld1
  5729. "isaac-ng.exe"+11DE52: 8B D9 - mov ebx,ecx
  5730. "isaac-ng.exe"+11DE54: 8B 0D 04 06 65 00 - mov ecx,[isaac-ng.exe+2E0604]
  5731. "isaac-ng.exe"+11DE5A: 8B 81 F4 4D 17 00 - mov eax,[ecx+00174DF4]
  5732. "isaac-ng.exe"+11DE60: 89 5C 24 40 - mov [esp+40],ebx
  5733. "isaac-ng.exe"+11DE64: 83 F8 16 - cmp eax,16
  5734. // ---------- JUMPING HERE ----------
  5735. "isaac-ng.exe"+11DE67: 75 62 - jne isaac-ng.exe+11DECB
  5736. // ---------- JUMPING HERE ----------
  5737. "isaac-ng.exe"+11DE69: 8B 89 18 4D 13 00 - mov ecx,[ecx+00134D18]
  5738. "isaac-ng.exe"+11DE6F: 81 F9 80 70 00 00 - cmp ecx,00007080
  5739. "isaac-ng.exe"+11DE75: 7E 78 - jle isaac-ng.exe+11DEEF
  5740. "isaac-ng.exe"+11DE77: 8B 83 20 05 00 00 - mov eax,[ebx+00000520]
  5741. "isaac-ng.exe"+11DE7D: C1 E8 0E - shr eax,0E
  5742. "isaac-ng.exe"+11DE80: A8 01 - test al,01
  5743. "isaac-ng.exe"+11DE82: 75 6B - jne isaac-ng.exe+11DEEF
  5744. "isaac-ng.exe"+11DE84: B8 B5 81 4E 1B - mov eax,1B4E81B5
  5745. "isaac-ng.exe"+11DE89: F7 E9 - imul ecx
  5746. "isaac-ng.exe"+11DE8B: C1 FA 05 - sar edx,05
  5747. "isaac-ng.exe"+11DE8E: 8B C2 - mov eax,edx
  5748. }
  5749. </AssemblerScript>
  5750. </CheatEntry>
  5751. </CheatEntries>
  5752. </CheatEntry>
  5753. <CheatEntry>
  5754. <ID>796</ID>
  5755. <Description>"No negative pill effects"</Description>
  5756. <LastState Activated="0"/>
  5757. <Color>80000008</Color>
  5758. <VariableType>Auto Assembler Script</VariableType>
  5759. <AssemblerScript>{ by HenryEx
  5760. for The Binding of Isaac: Afterbirth
  5761.  
  5762. Never get negative pill effects, like having PHD/Libra
  5763. Also auto-identifies them
  5764. }
  5765.  
  5766. [ENABLE]
  5767. aobscanmodule(AOB_PHDEffect,isaac-ng.exe,8B * 83 B8 * * * * 00 7F * 8B * * * * * 8B * * * * * 2B)
  5768. aobscanmodule(AOB_Identify,isaac-ng.exe,80 BC * * * * * 00 74 * 8B 35)
  5769. registersymbol(AOB_PHDEffect)
  5770. registersymbol(AOB_Identify)
  5771.  
  5772. AOB_PHDEffect+9:
  5773. db EB
  5774.  
  5775. AOB_Identify+7:
  5776. db 02
  5777.  
  5778. [DISABLE]
  5779. AOB_PHDEffect+9:
  5780. db 7F
  5781.  
  5782. AOB_Identify+7:
  5783. db 00
  5784.  
  5785. unregistersymbol(AOB_PHDEffect)
  5786. unregistersymbol(AOB_Identify)
  5787.  
  5788. {
  5789. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+EB783
  5790.  
  5791. "isaac-ng.exe"+EB75E: 8B 86 D8 B7 00 00 - mov eax,[esi+0000B7D8]
  5792. "isaac-ng.exe"+EB764: 2B 86 D4 B7 00 00 - sub eax,[esi+0000B7D4]
  5793. "isaac-ng.exe"+EB76A: C1 F8 02 - sar eax,02
  5794. "isaac-ng.exe"+EB76D: 85 C0 - test eax,eax
  5795. "isaac-ng.exe"+EB76F: 74 0A - je isaac-ng.exe+EB77B
  5796. "isaac-ng.exe"+EB771: 8B B6 D4 B7 00 00 - mov esi,[esi+0000B7D4]
  5797. "isaac-ng.exe"+EB777: 8B 06 - mov eax,[esi]
  5798. "isaac-ng.exe"+EB779: EB 08 - jmp isaac-ng.exe+EB783
  5799. "isaac-ng.exe"+EB77B: 8B 8E D4 B7 00 00 - mov ecx,[esi+0000B7D4]
  5800. "isaac-ng.exe"+EB781: 8B 01 - mov eax,[ecx]
  5801. // ---------- CHECKING PHD HERE ----------
  5802. "isaac-ng.exe"+EB783: 83 B8 B0 1E 00 00 00 - cmp dword ptr [eax+00001EB0],00
  5803. // ---------- DONE CHECKING PHD ----------
  5804. "isaac-ng.exe"+EB78A: 7F 72 - jg isaac-ng.exe+EB7FE
  5805. "isaac-ng.exe"+EB78C: 8B 35 04 F6 0D 01 - mov esi,[isaac-ng.exe+2DF604]
  5806. "isaac-ng.exe"+EB792: 8B 96 D8 B7 00 00 - mov edx,[esi+0000B7D8]
  5807. "isaac-ng.exe"+EB798: 2B 96 D4 B7 00 00 - sub edx,[esi+0000B7D4]
  5808. "isaac-ng.exe"+EB79E: F7 C2 FC FF FF FF - test edx,FFFFFFFC
  5809. "isaac-ng.exe"+EB7A4: 75 0F - jne isaac-ng.exe+EB7B5
  5810. "isaac-ng.exe"+EB7A6: 68 5C CA 06 01 - push isaac-ng.exe+26CA5C
  5811. "isaac-ng.exe"+EB7AB: 6A 00 - push 00
  5812. "isaac-ng.exe"+EB7AD: E8 3E D7 0E 00 - call isaac-ng.exe+1D8EF0
  5813. "isaac-ng.exe"+EB7B2: 83 C4 08 - add esp,08
  5814. }
  5815.  
  5816. {
  5817. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+1B8051
  5818.  
  5819. "isaac-ng.exe"+1B8029: 51 - push ecx
  5820. "isaac-ng.exe"+1B802A: 8D 46 38 - lea eax,[esi+38]
  5821. "isaac-ng.exe"+1B802D: D9 1C 24 - fstp dword ptr [esp]
  5822. "isaac-ng.exe"+1B8030: E8 2B A2 E4 FF - call isaac-ng.exe+2260
  5823. "isaac-ng.exe"+1B8035: 83 7E 3C 00 - cmp dword ptr [esi+3C],00
  5824. "isaac-ng.exe"+1B8039: 74 07 - je isaac-ng.exe+1B8042
  5825. "isaac-ng.exe"+1B803B: C6 86 44 02 00 00 00 - mov byte ptr [esi+00000244],00
  5826. "isaac-ng.exe"+1B8042: 8B 44 24 5C - mov eax,[esp+5C]
  5827. "isaac-ng.exe"+1B8046: 8B 88 C0 4B 00 00 - mov ecx,[eax+00004BC0]
  5828. "isaac-ng.exe"+1B804C: A1 04 F6 0D 01 - mov eax,[isaac-ng.exe+2DF604]
  5829. // ---------- CHECKING HERE ----------
  5830. "isaac-ng.exe"+1B8051: 80 BC 01 64 98 00 00 00 - cmp byte ptr [ecx+eax+00009864],00
  5831. // ---------- DONE CHECKING ----------
  5832. "isaac-ng.exe"+1B8059: 74 37 - je isaac-ng.exe+1B8092
  5833. "isaac-ng.exe"+1B805B: 8B 35 4C 11 0E 01 - mov esi,[isaac-ng.exe+2E114C]
  5834. "isaac-ng.exe"+1B8061: 05 40 8B 00 00 - add eax,00008B40
  5835. "isaac-ng.exe"+1B8066: E8 B5 36 F3 FF - call isaac-ng.exe+EB720
  5836. "isaac-ng.exe"+1B806B: 83 F8 25 - cmp eax,25
  5837. "isaac-ng.exe"+1B806E: 77 38 - ja isaac-ng.exe+1B80A8
  5838. "isaac-ng.exe"+1B8070: 8B 84 86 54 2F 04 00 - mov eax,[esi+eax*4+00042F54]
  5839. "isaac-ng.exe"+1B8077: 85 C0 - test eax,eax
  5840. "isaac-ng.exe"+1B8079: 74 2D - je isaac-ng.exe+1B80A8
  5841. "isaac-ng.exe"+1B807B: 83 C0 08 - add eax,08
  5842. }
  5843. </AssemblerScript>
  5844. </CheatEntry>
  5845. <CheatEntry>
  5846. <ID>924</ID>
  5847. <Description>"No Damage"</Description>
  5848. <LastState Activated="0"/>
  5849. <Color>80000008</Color>
  5850. <VariableType>Auto Assembler Script</VariableType>
  5851. <AssemblerScript>{ by HenryEx
  5852. for The Binding of Isaac: Afterbirth
  5853.  
  5854. Just like the title says, makes you invulnerable. By giving you the post-hit
  5855. invulnerability, to be exact.
  5856. }
  5857.  
  5858. [ENABLE]
  5859. aobscanmodule(AOB_NoDmg,isaac-ng.exe,83 * * * * * 00 0F 8F * * * * D9 EE)
  5860. registersymbol(AOB_NoDmg)
  5861.  
  5862. AOB_NoDmg+7:
  5863. db 90 E9 // jmp
  5864.  
  5865. [DISABLE]
  5866. AOB_NoDmg+7:
  5867. db 0F 8F // jg
  5868.  
  5869. unregistersymbol(AOB_NoDmg)
  5870.  
  5871. {
  5872. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+107B01
  5873.  
  5874. "isaac-ng.exe"+107ADC: 83 F8 0B - cmp eax,0B
  5875. "isaac-ng.exe"+107ADF: 75 12 - jne isaac-ng.exe+107AF3
  5876. "isaac-ng.exe"+107AE1: 80 BB 0C 91 01 00 00 - cmp byte ptr [ebx+0001910C],00
  5877. "isaac-ng.exe"+107AE8: 74 09 - je isaac-ng.exe+107AF3
  5878. "isaac-ng.exe"+107AEA: C6 83 0C 91 01 00 00 - mov byte ptr [ebx+0001910C],00
  5879. "isaac-ng.exe"+107AF1: EB 05 - jmp isaac-ng.exe+107AF8
  5880. "isaac-ng.exe"+107AF3: 83 F8 18 - cmp eax,18
  5881. "isaac-ng.exe"+107AF6: 75 02 - jne isaac-ng.exe+107AFA
  5882. "isaac-ng.exe"+107AF8: B1 01 - mov cl,01
  5883. "isaac-ng.exe"+107AFA: 83 BB 98 1B 00 00 00 - cmp dword ptr [ebx+00001B98],00
  5884. // ---------- JUMPING HERE ----------
  5885. "isaac-ng.exe"+107B01: 0F 8F 2F 1C 00 00 - jg isaac-ng.exe+109736
  5886. // ---------- JUMPING HERE ----------
  5887. "isaac-ng.exe"+107B07: D9 EE - fldz
  5888. "isaac-ng.exe"+107B09: D8 5D 08 - fcomp dword ptr [ebp+08]
  5889. "isaac-ng.exe"+107B0C: DF E0 - fnstsw ax
  5890. "isaac-ng.exe"+107B0E: F6 C4 05 - test ah,05
  5891. "isaac-ng.exe"+107B11: 0F 8A 1F 1C 00 00 - jp isaac-ng.exe+109736
  5892. "isaac-ng.exe"+107B17: 84 C9 - test cl,cl
  5893. "isaac-ng.exe"+107B19: 0F 85 17 1C 00 00 - jne isaac-ng.exe+109736
  5894. "isaac-ng.exe"+107B1F: BF 39 01 00 00 - mov edi,00000139
  5895. "isaac-ng.exe"+107B24: 8B C6 - mov eax,esi
  5896. "isaac-ng.exe"+107B26: C6 83 94 1B 00 00 01 - mov byte ptr [ebx+00001B94],01
  5897. }
  5898. </AssemblerScript>
  5899. </CheatEntry>
  5900. <CheatEntry>
  5901. <ID>896</ID>
  5902. <Description>"Custom Seeds w/ Achievements"</Description>
  5903. <LastState Activated="0"/>
  5904. <Color>80000008</Color>
  5905. <VariableType>Auto Assembler Script</VariableType>
  5906. <AssemblerScript>{ by HenryEx
  5907. for The Binding of Isaac: Afterbirth
  5908.  
  5909. Disables the "seed lock" when using custom seeds
  5910.  
  5911. Pro: Enables achievements on that run again
  5912. Con: Resetting with R will change the seed again
  5913. }
  5914.  
  5915. [ENABLE]
  5916. aobscanmodule(AOB_SeedLock,isaac-ng.exe,E8 * * * * A1 * * * * C6 80 * * * * 01 8B)
  5917. registersymbol(AOB_SeedLock)
  5918.  
  5919. AOB_SeedLock+10:
  5920. db 00
  5921.  
  5922. [DISABLE]
  5923. AOB_SeedLock+10:
  5924. db 01
  5925.  
  5926. unregistersymbol(AOB_SeedLock)
  5927.  
  5928. {
  5929. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+184C59
  5930.  
  5931. "isaac-ng.exe"+184C37: 88 9A 04 15 0A 00 - mov [edx+000A1504],bl
  5932. "isaac-ng.exe"+184C3D: EB 21 - jmp isaac-ng.exe+184C60
  5933. "isaac-ng.exe"+184C3F: 53 - push ebx
  5934. "isaac-ng.exe"+184C40: 51 - push ecx
  5935. "isaac-ng.exe"+184C41: B8 08 00 00 00 - mov eax,00000008
  5936. "isaac-ng.exe"+184C46: D9 1C 24 - fstp dword ptr [esp]
  5937. "isaac-ng.exe"+184C49: E8 82 59 00 00 - call isaac-ng.exe+18A5D0
  5938. "isaac-ng.exe"+184C4E: 56 - push esi
  5939. "isaac-ng.exe"+184C4F: E8 7C BF FF FF - call isaac-ng.exe+180BD0
  5940. "isaac-ng.exe"+184C54: A1 50 11 43 00 - mov eax,[isaac-ng.exe+2E1150]
  5941. // ---------- INJECTING HERE ----------
  5942. "isaac-ng.exe"+184C59: C6 80 04 15 0A 00 01 - mov byte ptr [eax+000A1504],01
  5943. // ---------- DONE INJECTING ----------
  5944. "isaac-ng.exe"+184C60: 8B 4D F4 - mov ecx,[ebp-0C]
  5945. "isaac-ng.exe"+184C63: 64 89 0D 00 00 00 00 - mov fs:[00000000],ecx
  5946. "isaac-ng.exe"+184C6A: 59 - pop ecx
  5947. "isaac-ng.exe"+184C6B: 5F - pop edi
  5948. "isaac-ng.exe"+184C6C: 5E - pop esi
  5949. "isaac-ng.exe"+184C6D: 5B - pop ebx
  5950. "isaac-ng.exe"+184C6E: 8B 4D F0 - mov ecx,[ebp-10]
  5951. "isaac-ng.exe"+184C71: 33 CD - xor ecx,ebp
  5952. "isaac-ng.exe"+184C73: E8 F6 88 0D 00 - call isaac-ng.exe+25D56E
  5953. "isaac-ng.exe"+184C78: 8B E5 - mov esp,ebp
  5954. }
  5955. </AssemblerScript>
  5956. </CheatEntry>
  5957. <CheatEntry>
  5958. <ID>926</ID>
  5959. <Description>"Load old GameStates"</Description>
  5960. <LastState Activated="0"/>
  5961. <Color>80000008</Color>
  5962. <VariableType>Auto Assembler Script</VariableType>
  5963. <AssemblerScript>{ by HenryEx
  5964. for The Binding of Isaac: Afterbirth
  5965.  
  5966. Patches the Checksum verification for GameStates, so you can play backed-up
  5967. versions of interim saves. Yay!
  5968. }
  5969.  
  5970. [ENABLE]
  5971. aobscanmodule(AOB_NoChksum,isaac-ng.exe,81 * 96 69 69 96 89 * * * * * 3b * 0F 85 * * * * 8B * * * * * 3B * * * * * 0F 85)
  5972. registersymbol(AOB_NoChksum)
  5973.  
  5974. AOB_NoChksum+E:
  5975. db EB 04
  5976.  
  5977. AOB_NoChksum+20:
  5978. db EB 04
  5979.  
  5980. [DISABLE]
  5981. AOB_NoChksum+E:
  5982. db 0F 85
  5983.  
  5984. AOB_NoChksum+20:
  5985. db 0F 85
  5986.  
  5987. unregistersymbol(AOB_NoChksum)
  5988.  
  5989. {
  5990. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+1CBE1D
  5991.  
  5992. "isaac-ng.exe"+1CBDF8: 8B 01 - mov eax,[ecx]
  5993. "isaac-ng.exe"+1CBDFA: 8B 50 0C - mov edx,[eax+0C]
  5994. "isaac-ng.exe"+1CBDFD: 6A 00 - push 00
  5995. "isaac-ng.exe"+1CBDFF: 6A 10 - push 10
  5996. "isaac-ng.exe"+1CBE01: FF D2 - call edx
  5997. "isaac-ng.exe"+1CBE03: 8B 8D 64 FF FF FF - mov ecx,[ebp-0000009C]
  5998. "isaac-ng.exe"+1CBE09: 8B 86 C4 41 01 00 - mov eax,[esi+000141C4]
  5999. "isaac-ng.exe"+1CBE0F: 81 F1 96 69 69 96 - xor ecx,96696996
  6000. "isaac-ng.exe"+1CBE15: 89 8D 64 FF FF FF - mov [ebp-0000009C],ecx
  6001. "isaac-ng.exe"+1CBE1B: 3B C8 - cmp ecx,eax
  6002. // ---------- JUMPING HERE ----------
  6003. "isaac-ng.exe"+1CBE1D: 0F 85 6F 0B 00 00 - jne isaac-ng.exe+1CC992
  6004. // ---------- JUMPING HERE ----------
  6005. "isaac-ng.exe"+1CBE23: 8B 0D 7C 41 6B 01 - mov ecx,[isaac-ng.exe+2E417C]
  6006. "isaac-ng.exe"+1CBE29: 3B 81 F0 06 00 00 - cmp eax,[ecx+000006F0]
  6007. // ---------- ALSO JUMPING HERE ----------
  6008. "isaac-ng.exe"+1CBE2F: 0F 85 5D 0B 00 00 - jne isaac-ng.exe+1CC992
  6009. // ---------- ALSO JUMPING HERE ----------
  6010. "isaac-ng.exe"+1CBE35: 8B 17 - mov edx,[edi]
  6011. "isaac-ng.exe"+1CBE37: 8B C6 - mov eax,esi
  6012. "isaac-ng.exe"+1CBE39: 8B CB - mov ecx,ebx
  6013. "isaac-ng.exe"+1CBE3B: 89 53 08 - mov [ebx+08],edx
  6014. "isaac-ng.exe"+1CBE3E: E8 8D 39 00 00 - call isaac-ng.exe+1CF7D0
  6015. "isaac-ng.exe"+1CBE43: 8D 85 73 FF FF FF - lea eax,[ebp-0000008D]
  6016. "isaac-ng.exe"+1CBE49: 8B CB - mov ecx,ebx
  6017. }
  6018. </AssemblerScript>
  6019. </CheatEntry>
  6020. </CheatEntries>
  6021. </CheatEntry>
  6022. </CheatEntries>
  6023. <UserdefinedSymbols>
  6024. <SymbolEntry>
  6025. <Name>AOB_pedInj</Name>
  6026. <Address> 013C201A</Address>
  6027. </SymbolEntry>
  6028. </UserdefinedSymbols>
  6029. <Comments>Table by HenryEx, version 23/12/2015
  6030. Made for BoI:Afterbirth v1.06.0077
  6031. </Comments>
  6032. </CheatTable>
Add Comment
Please, Sign In to add comment