Mysteryem

Afterbirth table, updated to use actual coordinates

Jan 22nd, 2016
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 221.21 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="00000000"/>
  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="1" 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>618</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>61C</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="03A80004"/>
  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. </CheatEntries>
  2375. </CheatEntry>
  2376. <CheatEntry>
  2377. <ID>516</ID>
  2378. <Description>"Game Stats"</Description>
  2379. <Options moHideChildren="1"/>
  2380. <LastState Value="" Activated="0" RealAddress="00000000"/>
  2381. <Color>FF0000</Color>
  2382. <GroupHeader>1</GroupHeader>
  2383. <CheatEntries>
  2384. <CheatEntry>
  2385. <ID>515</ID>
  2386. <Description>"(( Stats Structure ))"</Description>
  2387. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2388. <Color>80000008</Color>
  2389. <VariableType>Byte</VariableType>
  2390. <Address>pStats</Address>
  2391. <Offsets>
  2392. <Offset>0</Offset>
  2393. </Offsets>
  2394. </CheatEntry>
  2395. <CheatEntry>
  2396. <ID>551</ID>
  2397. <Description>"Best Streak"</Description>
  2398. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2399. <Color>80000008</Color>
  2400. <VariableType>4 Bytes</VariableType>
  2401. <Address>pStats</Address>
  2402. <Offsets>
  2403. <Offset>1BC</Offset>
  2404. </Offsets>
  2405. </CheatEntry>
  2406. <CheatEntry>
  2407. <ID>537</ID>
  2408. <Description>"Loss Streak"</Description>
  2409. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2410. <Color>80000008</Color>
  2411. <VariableType>4 Bytes</VariableType>
  2412. <Address>pStats</Address>
  2413. <Offsets>
  2414. <Offset>2DC</Offset>
  2415. </Offsets>
  2416. </CheatEntry>
  2417. <CheatEntry>
  2418. <ID>536</ID>
  2419. <Description>"Win Streak"</Description>
  2420. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2421. <Color>80000008</Color>
  2422. <VariableType>4 Bytes</VariableType>
  2423. <Address>pStats</Address>
  2424. <Offsets>
  2425. <Offset>1B8</Offset>
  2426. </Offsets>
  2427. </CheatEntry>
  2428. <CheatEntry>
  2429. <ID>535</ID>
  2430. <Description>"Devil Deals Taken?"</Description>
  2431. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2432. <Color>80000008</Color>
  2433. <VariableType>4 Bytes</VariableType>
  2434. <Address>pStats</Address>
  2435. <Offsets>
  2436. <Offset>1A0</Offset>
  2437. </Offsets>
  2438. </CheatEntry>
  2439. <CheatEntry>
  2440. <ID>534</ID>
  2441. <Description>"Angel Items Taken?"</Description>
  2442. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2443. <Color>80000008</Color>
  2444. <VariableType>4 Bytes</VariableType>
  2445. <Address>pStats</Address>
  2446. <Offsets>
  2447. <Offset>19C</Offset>
  2448. </Offsets>
  2449. </CheatEntry>
  2450. <CheatEntry>
  2451. <ID>533</ID>
  2452. <Description>"Eden Tokens"</Description>
  2453. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2454. <Color>80000008</Color>
  2455. <VariableType>4 Bytes</VariableType>
  2456. <Address>pStats</Address>
  2457. <Offsets>
  2458. <Offset>1B4</Offset>
  2459. </Offsets>
  2460. </CheatEntry>
  2461. <CheatEntry>
  2462. <ID>532</ID>
  2463. <Description>"Donated Coins"</Description>
  2464. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2465. <Color>80000008</Color>
  2466. <VariableType>4 Bytes</VariableType>
  2467. <Address>pStats</Address>
  2468. <Offsets>
  2469. <Offset>1B0</Offset>
  2470. </Offsets>
  2471. </CheatEntry>
  2472. <CheatEntry>
  2473. <ID>531</ID>
  2474. <Description>"Slot Machines Destroyed"</Description>
  2475. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2476. <Color>80000008</Color>
  2477. <VariableType>4 Bytes</VariableType>
  2478. <Address>pStats</Address>
  2479. <Offsets>
  2480. <Offset>1A8</Offset>
  2481. </Offsets>
  2482. </CheatEntry>
  2483. <CheatEntry>
  2484. <ID>530</ID>
  2485. <Description>"Blood Donations?"</Description>
  2486. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2487. <Color>80000008</Color>
  2488. <VariableType>4 Bytes</VariableType>
  2489. <Address>pStats</Address>
  2490. <Offsets>
  2491. <Offset>1A4</Offset>
  2492. </Offsets>
  2493. </CheatEntry>
  2494. <CheatEntry>
  2495. <ID>529</ID>
  2496. <Description>"Arcades Visited?"</Description>
  2497. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2498. <Color>80000008</Color>
  2499. <VariableType>4 Bytes</VariableType>
  2500. <Address>pStats</Address>
  2501. <Offsets>
  2502. <Offset>184</Offset>
  2503. </Offsets>
  2504. </CheatEntry>
  2505. <CheatEntry>
  2506. <ID>528</ID>
  2507. <Description>"Shell Game Played?"</Description>
  2508. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2509. <Color>80000008</Color>
  2510. <VariableType>4 Bytes</VariableType>
  2511. <Address>pStats</Address>
  2512. <Offsets>
  2513. <Offset>198</Offset>
  2514. </Offsets>
  2515. </CheatEntry>
  2516. <CheatEntry>
  2517. <ID>527</ID>
  2518. <Description>"Lamb Kills?"</Description>
  2519. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2520. <Color>80000008</Color>
  2521. <VariableType>4 Bytes</VariableType>
  2522. <Address>pStats</Address>
  2523. <Offsets>
  2524. <Offset>1C4</Offset>
  2525. </Offsets>
  2526. </CheatEntry>
  2527. <CheatEntry>
  2528. <ID>526</ID>
  2529. <Description>"??? Kills?"</Description>
  2530. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2531. <Color>80000008</Color>
  2532. <VariableType>4 Bytes</VariableType>
  2533. <Address>pStats</Address>
  2534. <Offsets>
  2535. <Offset>1C0</Offset>
  2536. </Offsets>
  2537. </CheatEntry>
  2538. <CheatEntry>
  2539. <ID>525</ID>
  2540. <Description>"Satan Kills?"</Description>
  2541. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2542. <Color>80000008</Color>
  2543. <VariableType>4 Bytes</VariableType>
  2544. <Address>pStats</Address>
  2545. <Offsets>
  2546. <Offset>194</Offset>
  2547. </Offsets>
  2548. </CheatEntry>
  2549. <CheatEntry>
  2550. <ID>524</ID>
  2551. <Description>"Isaac Kills?"</Description>
  2552. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2553. <Color>80000008</Color>
  2554. <VariableType>4 Bytes</VariableType>
  2555. <Address>pStats</Address>
  2556. <Offsets>
  2557. <Offset>18C</Offset>
  2558. </Offsets>
  2559. </CheatEntry>
  2560. <CheatEntry>
  2561. <ID>523</ID>
  2562. <Description>"Death Cards used?"</Description>
  2563. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2564. <Color>80000008</Color>
  2565. <VariableType>4 Bytes</VariableType>
  2566. <Address>pStats</Address>
  2567. <Offsets>
  2568. <Offset>17C</Offset>
  2569. </Offsets>
  2570. </CheatEntry>
  2571. <CheatEntry>
  2572. <ID>522</ID>
  2573. <Description>"Shop Keepers Destroyed"</Description>
  2574. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2575. <Color>80000008</Color>
  2576. <VariableType>4 Bytes</VariableType>
  2577. <Address>pStats</Address>
  2578. <Offsets>
  2579. <Offset>190</Offset>
  2580. </Offsets>
  2581. </CheatEntry>
  2582. <CheatEntry>
  2583. <ID>521</ID>
  2584. <Description>"Poop Destroyed"</Description>
  2585. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2586. <Color>80000008</Color>
  2587. <VariableType>4 Bytes</VariableType>
  2588. <Address>pStats</Address>
  2589. <Offsets>
  2590. <Offset>174</Offset>
  2591. </Offsets>
  2592. </CheatEntry>
  2593. <CheatEntry>
  2594. <ID>520</ID>
  2595. <Description>"Tinted/Marked Rocks Destroryed"</Description>
  2596. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2597. <Color>80000008</Color>
  2598. <VariableType>4 Bytes</VariableType>
  2599. <Address>pStats</Address>
  2600. <Offsets>
  2601. <Offset>170</Offset>
  2602. </Offsets>
  2603. </CheatEntry>
  2604. <CheatEntry>
  2605. <ID>519</ID>
  2606. <Description>"Rocks Destroyed"</Description>
  2607. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2608. <Color>80000008</Color>
  2609. <VariableType>4 Bytes</VariableType>
  2610. <Address>pStats</Address>
  2611. <Offsets>
  2612. <Offset>16C</Offset>
  2613. </Offsets>
  2614. </CheatEntry>
  2615. <CheatEntry>
  2616. <ID>518</ID>
  2617. <Description>"Mom Kills"</Description>
  2618. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2619. <Color>80000008</Color>
  2620. <VariableType>4 Bytes</VariableType>
  2621. <Address>pStats</Address>
  2622. <Offsets>
  2623. <Offset>168</Offset>
  2624. </Offsets>
  2625. </CheatEntry>
  2626. <CheatEntry>
  2627. <ID>517</ID>
  2628. <Description>"Deaths"</Description>
  2629. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2630. <Color>80000008</Color>
  2631. <VariableType>4 Bytes</VariableType>
  2632. <Address>pStats</Address>
  2633. <Offsets>
  2634. <Offset>188</Offset>
  2635. </Offsets>
  2636. </CheatEntry>
  2637. <CheatEntry>
  2638. <ID>911</ID>
  2639. <Description>"Greed Donation Machine"</Description>
  2640. <Options moHideChildren="1"/>
  2641. <LastState Value="" Activated="0" RealAddress="00000000"/>
  2642. <Color>80000008</Color>
  2643. <GroupHeader>1</GroupHeader>
  2644. <CheatEntries>
  2645. <CheatEntry>
  2646. <ID>893</ID>
  2647. <Description>"Total Coins Donated"</Description>
  2648. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2649. <Color>80000008</Color>
  2650. <VariableType>4 Bytes</VariableType>
  2651. <Address>pStats</Address>
  2652. <Offsets>
  2653. <Offset>314</Offset>
  2654. </Offsets>
  2655. </CheatEntry>
  2656. <CheatEntry>
  2657. <ID>899</ID>
  2658. <Description>"Donated on Isaac"</Description>
  2659. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2660. <Color>80000008</Color>
  2661. <VariableType>4 Bytes</VariableType>
  2662. <Address>pStats</Address>
  2663. <Offsets>
  2664. <Offset>3B8</Offset>
  2665. </Offsets>
  2666. </CheatEntry>
  2667. <CheatEntry>
  2668. <ID>903</ID>
  2669. <Description>"Donated on Magdalene"</Description>
  2670. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2671. <Color>80000008</Color>
  2672. <VariableType>4 Bytes</VariableType>
  2673. <Address>pStats</Address>
  2674. <Offsets>
  2675. <Offset>3BC</Offset>
  2676. </Offsets>
  2677. </CheatEntry>
  2678. <CheatEntry>
  2679. <ID>902</ID>
  2680. <Description>"Donated on Cain"</Description>
  2681. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2682. <Color>80000008</Color>
  2683. <VariableType>4 Bytes</VariableType>
  2684. <Address>pStats</Address>
  2685. <Offsets>
  2686. <Offset>3C0</Offset>
  2687. </Offsets>
  2688. </CheatEntry>
  2689. <CheatEntry>
  2690. <ID>901</ID>
  2691. <Description>"Donated on Judas"</Description>
  2692. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2693. <Color>80000008</Color>
  2694. <VariableType>4 Bytes</VariableType>
  2695. <Address>pStats</Address>
  2696. <Offsets>
  2697. <Offset>3C4</Offset>
  2698. </Offsets>
  2699. </CheatEntry>
  2700. <CheatEntry>
  2701. <ID>904</ID>
  2702. <Description>"Donated on ???"</Description>
  2703. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2704. <Color>80000008</Color>
  2705. <VariableType>4 Bytes</VariableType>
  2706. <Address>pStats</Address>
  2707. <Offsets>
  2708. <Offset>3C8</Offset>
  2709. </Offsets>
  2710. </CheatEntry>
  2711. <CheatEntry>
  2712. <ID>906</ID>
  2713. <Description>"Donated on Eve"</Description>
  2714. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2715. <Color>80000008</Color>
  2716. <VariableType>4 Bytes</VariableType>
  2717. <Address>pStats</Address>
  2718. <Offsets>
  2719. <Offset>3CC</Offset>
  2720. </Offsets>
  2721. </CheatEntry>
  2722. <CheatEntry>
  2723. <ID>905</ID>
  2724. <Description>"Donated on Samson"</Description>
  2725. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2726. <Color>80000008</Color>
  2727. <VariableType>4 Bytes</VariableType>
  2728. <Address>pStats</Address>
  2729. <Offsets>
  2730. <Offset>3D0</Offset>
  2731. </Offsets>
  2732. </CheatEntry>
  2733. <CheatEntry>
  2734. <ID>907</ID>
  2735. <Description>"Donated on Azazel"</Description>
  2736. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2737. <Color>80000008</Color>
  2738. <VariableType>4 Bytes</VariableType>
  2739. <Address>pStats</Address>
  2740. <Offsets>
  2741. <Offset>3D4</Offset>
  2742. </Offsets>
  2743. </CheatEntry>
  2744. <CheatEntry>
  2745. <ID>908</ID>
  2746. <Description>"Donated on Lazarus"</Description>
  2747. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2748. <Color>80000008</Color>
  2749. <VariableType>4 Bytes</VariableType>
  2750. <Address>pStats</Address>
  2751. <Offsets>
  2752. <Offset>3D8</Offset>
  2753. </Offsets>
  2754. </CheatEntry>
  2755. <CheatEntry>
  2756. <ID>909</ID>
  2757. <Description>"Donated on Eden"</Description>
  2758. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2759. <Color>80000008</Color>
  2760. <VariableType>4 Bytes</VariableType>
  2761. <Address>pStats</Address>
  2762. <Offsets>
  2763. <Offset>3DC</Offset>
  2764. </Offsets>
  2765. </CheatEntry>
  2766. <CheatEntry>
  2767. <ID>910</ID>
  2768. <Description>"Donated on The Lost"</Description>
  2769. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2770. <Color>80000008</Color>
  2771. <VariableType>4 Bytes</VariableType>
  2772. <Address>pStats</Address>
  2773. <Offsets>
  2774. <Offset>3E0</Offset>
  2775. </Offsets>
  2776. </CheatEntry>
  2777. <CheatEntry>
  2778. <ID>912</ID>
  2779. <Description>"Donated on Lilith?"</Description>
  2780. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2781. <Color>80000008</Color>
  2782. <VariableType>4 Bytes</VariableType>
  2783. <Address>pStats</Address>
  2784. <Offsets>
  2785. <Offset>3E4</Offset>
  2786. </Offsets>
  2787. </CheatEntry>
  2788. </CheatEntries>
  2789. </CheatEntry>
  2790. <CheatEntry>
  2791. <ID>928</ID>
  2792. <Description>"Endings Seen"</Description>
  2793. <Options moHideChildren="1"/>
  2794. <LastState Value="" Activated="0" RealAddress="00000000"/>
  2795. <Color>80000008</Color>
  2796. <GroupHeader>1</GroupHeader>
  2797. <CheatEntries>
  2798. <CheatEntry>
  2799. <ID>929</ID>
  2800. <Description>"Ending 1"</Description>
  2801. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2802. <Color>80000008</Color>
  2803. <VariableType>4 Bytes</VariableType>
  2804. <Address>pStats</Address>
  2805. <Offsets>
  2806. <Offset>654</Offset>
  2807. </Offsets>
  2808. </CheatEntry>
  2809. <CheatEntry>
  2810. <ID>945</ID>
  2811. <Description>"Ending 2"</Description>
  2812. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2813. <Color>80000008</Color>
  2814. <VariableType>4 Bytes</VariableType>
  2815. <Address>pStats</Address>
  2816. <Offsets>
  2817. <Offset>658</Offset>
  2818. </Offsets>
  2819. </CheatEntry>
  2820. <CheatEntry>
  2821. <ID>944</ID>
  2822. <Description>"Ending 3"</Description>
  2823. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2824. <Color>80000008</Color>
  2825. <VariableType>4 Bytes</VariableType>
  2826. <Address>pStats</Address>
  2827. <Offsets>
  2828. <Offset>65C</Offset>
  2829. </Offsets>
  2830. </CheatEntry>
  2831. <CheatEntry>
  2832. <ID>943</ID>
  2833. <Description>"Ending 4"</Description>
  2834. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2835. <Color>80000008</Color>
  2836. <VariableType>4 Bytes</VariableType>
  2837. <Address>pStats</Address>
  2838. <Offsets>
  2839. <Offset>660</Offset>
  2840. </Offsets>
  2841. </CheatEntry>
  2842. <CheatEntry>
  2843. <ID>942</ID>
  2844. <Description>"Ending 5"</Description>
  2845. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2846. <Color>80000008</Color>
  2847. <VariableType>4 Bytes</VariableType>
  2848. <Address>pStats</Address>
  2849. <Offsets>
  2850. <Offset>664</Offset>
  2851. </Offsets>
  2852. </CheatEntry>
  2853. <CheatEntry>
  2854. <ID>941</ID>
  2855. <Description>"Ending 6"</Description>
  2856. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2857. <Color>80000008</Color>
  2858. <VariableType>4 Bytes</VariableType>
  2859. <Address>pStats</Address>
  2860. <Offsets>
  2861. <Offset>668</Offset>
  2862. </Offsets>
  2863. </CheatEntry>
  2864. <CheatEntry>
  2865. <ID>940</ID>
  2866. <Description>"Ending 7"</Description>
  2867. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2868. <Color>80000008</Color>
  2869. <VariableType>4 Bytes</VariableType>
  2870. <Address>pStats</Address>
  2871. <Offsets>
  2872. <Offset>66C</Offset>
  2873. </Offsets>
  2874. </CheatEntry>
  2875. <CheatEntry>
  2876. <ID>939</ID>
  2877. <Description>"Ending 8"</Description>
  2878. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2879. <Color>80000008</Color>
  2880. <VariableType>4 Bytes</VariableType>
  2881. <Address>pStats</Address>
  2882. <Offsets>
  2883. <Offset>670</Offset>
  2884. </Offsets>
  2885. </CheatEntry>
  2886. <CheatEntry>
  2887. <ID>938</ID>
  2888. <Description>"Ending 9"</Description>
  2889. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2890. <Color>80000008</Color>
  2891. <VariableType>4 Bytes</VariableType>
  2892. <Address>pStats</Address>
  2893. <Offsets>
  2894. <Offset>674</Offset>
  2895. </Offsets>
  2896. </CheatEntry>
  2897. <CheatEntry>
  2898. <ID>937</ID>
  2899. <Description>"Ending 10"</Description>
  2900. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2901. <Color>80000008</Color>
  2902. <VariableType>4 Bytes</VariableType>
  2903. <Address>pStats</Address>
  2904. <Offsets>
  2905. <Offset>678</Offset>
  2906. </Offsets>
  2907. </CheatEntry>
  2908. <CheatEntry>
  2909. <ID>936</ID>
  2910. <Description>"Ending 11"</Description>
  2911. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2912. <Color>80000008</Color>
  2913. <VariableType>4 Bytes</VariableType>
  2914. <Address>pStats</Address>
  2915. <Offsets>
  2916. <Offset>67C</Offset>
  2917. </Offsets>
  2918. </CheatEntry>
  2919. <CheatEntry>
  2920. <ID>935</ID>
  2921. <Description>"Ending 12"</Description>
  2922. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2923. <Color>80000008</Color>
  2924. <VariableType>4 Bytes</VariableType>
  2925. <Address>pStats</Address>
  2926. <Offsets>
  2927. <Offset>680</Offset>
  2928. </Offsets>
  2929. </CheatEntry>
  2930. <CheatEntry>
  2931. <ID>934</ID>
  2932. <Description>"Ending 13"</Description>
  2933. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2934. <Color>80000008</Color>
  2935. <VariableType>4 Bytes</VariableType>
  2936. <Address>pStats</Address>
  2937. <Offsets>
  2938. <Offset>684</Offset>
  2939. </Offsets>
  2940. </CheatEntry>
  2941. <CheatEntry>
  2942. <ID>933</ID>
  2943. <Description>"Ending 14"</Description>
  2944. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2945. <Color>80000008</Color>
  2946. <VariableType>4 Bytes</VariableType>
  2947. <Address>pStats</Address>
  2948. <Offsets>
  2949. <Offset>688</Offset>
  2950. </Offsets>
  2951. </CheatEntry>
  2952. <CheatEntry>
  2953. <ID>932</ID>
  2954. <Description>"Ending 15"</Description>
  2955. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2956. <Color>80000008</Color>
  2957. <VariableType>4 Bytes</VariableType>
  2958. <Address>pStats</Address>
  2959. <Offsets>
  2960. <Offset>68C</Offset>
  2961. </Offsets>
  2962. </CheatEntry>
  2963. <CheatEntry>
  2964. <ID>931</ID>
  2965. <Description>"Ending 16"</Description>
  2966. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2967. <Color>80000008</Color>
  2968. <VariableType>4 Bytes</VariableType>
  2969. <Address>pStats</Address>
  2970. <Offsets>
  2971. <Offset>690</Offset>
  2972. </Offsets>
  2973. </CheatEntry>
  2974. <CheatEntry>
  2975. <ID>930</ID>
  2976. <Description>"Ending 17"</Description>
  2977. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2978. <Color>80000008</Color>
  2979. <VariableType>4 Bytes</VariableType>
  2980. <Address>pStats</Address>
  2981. <Offsets>
  2982. <Offset>694</Offset>
  2983. </Offsets>
  2984. </CheatEntry>
  2985. <CheatEntry>
  2986. <ID>948</ID>
  2987. <Description>"Ending 18"</Description>
  2988. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  2989. <Color>80000008</Color>
  2990. <VariableType>4 Bytes</VariableType>
  2991. <Address>pStats</Address>
  2992. <Offsets>
  2993. <Offset>698</Offset>
  2994. </Offsets>
  2995. </CheatEntry>
  2996. <CheatEntry>
  2997. <ID>946</ID>
  2998. <Description>"Epilogue"</Description>
  2999. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3000. <Color>80000008</Color>
  3001. <VariableType>4 Bytes</VariableType>
  3002. <Address>pStats</Address>
  3003. <Offsets>
  3004. <Offset>650</Offset>
  3005. </Offsets>
  3006. </CheatEntry>
  3007. <CheatEntry>
  3008. <ID>947</ID>
  3009. <Description>"Total?"</Description>
  3010. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3011. <Color>80000008</Color>
  3012. <VariableType>4 Bytes</VariableType>
  3013. <Address>pStats</Address>
  3014. <Offsets>
  3015. <Offset>64C</Offset>
  3016. </Offsets>
  3017. </CheatEntry>
  3018. </CheatEntries>
  3019. </CheatEntry>
  3020. <CheatEntry>
  3021. <ID>925</ID>
  3022. <Description>"Saved GameState Checksum"</Description>
  3023. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3024. <ShowAsHex>1</ShowAsHex>
  3025. <Color>80000008</Color>
  3026. <VariableType>4 Bytes</VariableType>
  3027. <Address>pStats</Address>
  3028. <Offsets>
  3029. <Offset>6F0</Offset>
  3030. </Offsets>
  3031. </CheatEntry>
  3032. </CheatEntries>
  3033. </CheatEntry>
  3034. <CheatEntry>
  3035. <ID>918</ID>
  3036. <Description>"Unlocking Secrets"</Description>
  3037. <Options moHideChildren="1"/>
  3038. <LastState Activated="0"/>
  3039. <Color>FF0000</Color>
  3040. <VariableType>Auto Assembler Script</VariableType>
  3041. <AssemblerScript>[ENABLE]
  3042. pStats+C:
  3043. db 1
  3044.  
  3045. [DISABLE]
  3046. pStats+C:
  3047. db 0
  3048. </AssemblerScript>
  3049. <CheatEntries>
  3050. <CheatEntry>
  3051. <ID>919</ID>
  3052. <Description>"Current Secret"</Description>
  3053. <DropDownList DisplayValueAsItem="1">0: (None)
  3054. 1: Magdalene
  3055. 2: Cain
  3056. 3: Judas
  3057. 4: The Womb
  3058. 5: The Harbingers
  3059. 6: A Cube of Meat
  3060. 7: The Book of Revelations
  3061. 8: Transcendence
  3062. 9: The Nail
  3063. 10: A Quarter
  3064. 11: A Fetus in a Jar
  3065. 12: The Small Rock
  3066. 13: Monstro's Tooth
  3067. 14: Lil Chubby
  3068. 15: Loki's Horns
  3069. 16: Something from the Future
  3070. 17: Something Cute
  3071. 18: Something Sticky
  3072. 19: Super Bandage Girl
  3073. 20: The Relic
  3074. 21: The Coin Bag
  3075. 22: The Book of Sin
  3076. 23: Little Gish
  3077. 24: Little Steven
  3078. 25: Little C.H.A.D.
  3079. 26: The Gamekid
  3080. 27: The Halo
  3081. 28: Mr. Mega!
  3082. 29: The D6!
  3083. 30: The Scissors
  3084. 31: The Parasite
  3085. 32: ???
  3086. 33: Everything is Terrible!!!
  3087. 34: It Lives!
  3088. 35: Mom's Contact
  3089. 36: The Necronomicon
  3090. 37: Basement Boy
  3091. 38: Spelunker Boy
  3092. 39: Dark Boy
  3093. 40: Mama's Boy
  3094. 41: Golden God
  3095. 42: Eve
  3096. 43: Mom's Knife
  3097. 44: The Razor
  3098. 45: Guardian Angel
  3099. 46: The Bomb Bag
  3100. 47: A Demon Baby
  3101. 48: A Forget me Now
  3102. 49: The D20!
  3103. 50: The Celtic Cross
  3104. 51: Abel
  3105. 52: The Curved Horn
  3106. 53: Sacrificial Knife
  3107. 54: Bloody Lust
  3108. 55: The Bloody Penny
  3109. 56: Blood Rights
  3110. 57: The Polaroid
  3111. 58: Dad's Key
  3112. 59: A blue candle
  3113. 60: Burnt Penny
  3114. 61: Lucky Toe!
  3115. 62: Epic Fetus
  3116. 63: Super Fan
  3117. 64: Counterfeit Penny
  3118. 65: Guppy's Hairball
  3119. 66: A Forgotten Horseman
  3120. 67: Samson
  3121. 68: Something Icky
  3122. 69: Platinum God
  3123. 70: Isaac's Head
  3124. 71: Maggy's Faith
  3125. 72: Judas' Tongue
  3126. 73: ???'s Soul
  3127. 74: Samson's Lock
  3128. 75: Cain's eye
  3129. 76: Eve's Bird Foot
  3130. 77: The Left Hand
  3131. 78: The Negative
  3132. 79: Azazel
  3133. 80: Lazarus
  3134. 81: Eden
  3135. 82: The Lost
  3136. 83: Dead Boy
  3137. 84: The Real Platinum God
  3138. 85: A Lucky Rock
  3139. 86: The Cellar
  3140. 87: The Catacombs
  3141. 88: Necropolis
  3142. 89: The Rune of Hagalaz
  3143. 90: The Rune of Jera
  3144. 91: The Rune of Ehwaz
  3145. 92: The Rune of Dagaz
  3146. 93: The Rune of Ansuz
  3147. 94: The Rune of Pertho
  3148. 95: The Rune of Berkano
  3149. 96: The Rune of Algiz
  3150. 97: The Chaos Card
  3151. 98: The Credit Card
  3152. 99: The Rules Card
  3153. 100: Card Against Humanity
  3154. 101: Swallowed Penny
  3155. 102: Robo Baby 2.0!
  3156. 103: Death's Touch
  3157. 104: Tech .5
  3158. 105: Missing No.
  3159. 106: Isaac's Tears
  3160. 107: The Guillotine
  3161. 108: Judas' Shadow
  3162. 109: Maggy's Bow
  3163. 110: Cain's Other Eye
  3164. 111: The Black Lipstick
  3165. 112: Eve's Mascara
  3166. 113: Fate
  3167. 114: ???'s Only Friend
  3168. 115: Samsons's Chains
  3169. 116: Lazarus' Rags
  3170. 117: Broken Ankh
  3171. 118: Store Credit
  3172. 119: Pandora's Box
  3173. 120: Suicide King
  3174. 121: A Blank Card
  3175. 122: The Book Of Secrets
  3176. 123: Mysterious Paper
  3177. 124: Mystery Sack
  3178. 125: Undefined
  3179. 126: The Satanic Bible
  3180. 127: The Demon Tail
  3181. 128: Abaddon
  3182. 129: Isaac's Heart
  3183. 130: The Mind
  3184. 131: The Body
  3185. 132: The Soul
  3186. 133: The D100
  3187. 134: A Blue Map
  3188. 135: There's Options
  3189. 136: A Black Candle
  3190. 137: A Red Candle
  3191. 138: The StopWatch
  3192. 139: The Wire Coat Hanger
  3193. 140: Ipecac
  3194. 141: Experimental Treatment
  3195. 142: Krampus
  3196. 143: Head of Krampus
  3197. 144: Super Meat Boy
  3198. 145: The Butter Bean
  3199. 146: Little Baggy
  3200. 147: Blood Bag
  3201. 148: The D4!
  3202. 149: Lost Poster
  3203. 150: Rubber Cement
  3204. 151: Store Upgrade (Lv.1)
  3205. 152: Store Upgrade (Lv.2)
  3206. 153: Store Upgrade (Lv.3)
  3207. 154: Store Upgrade (Lv.4)
  3208. 155: The Angels Await!!!
  3209. 156: Godhead
  3210. 157: Challenge #4 - Darkness Falls
  3211. 158: Challenge #5 - The Tank
  3212. 159: Challenge #6 - Solar System
  3213. 160: Challenge #7 - Suicide King
  3214. 161: Challenge #8 - Cat Got Your Tongue
  3215. 162: Challenge #9 - Demo Man
  3216. 163: Challenge #10 - Cursed!
  3217. 164: Challenge #11 - Glass Cannon
  3218. 165: Challenge #19 - The Family Man
  3219. 166: Challenge #20 - Purist
  3220. 167: Lost Baby
  3221. 168: Cute Baby
  3222. 169: Crow Baby
  3223. 170: Shadow Baby
  3224. 171: Glass Baby
  3225. 172: Wrapped Baby
  3226. 173: Begotten Baby
  3227. 174: Dead Baby
  3228. 175: -0- Baby
  3229. 176: Glitch Baby
  3230. 177: Fighting Baby
  3231. 178: Lord of the Flies
  3232. 179: Fart Baby
  3233. 180: Purity
  3234. 181: D12
  3235. 182: Betrayal
  3236. 183: Fate's Reward
  3237. 184: Athame
  3238. 185: Blind Rage
  3239. 186: Maw of the Void
  3240. 187: Empty Vessel
  3241. 188: Eden's Blessing
  3242. 189: Sworn Protector
  3243. 190: Incubus
  3244. 191: Keeper holds A Penny
  3245. 192: Lil' Chest
  3246. 193: Censer
  3247. 194: Evil Eye
  3248. 195: My Shadow
  3249. 196: Cracked Dice
  3250. 197: Black Feather
  3251. 198: Lusty Blood
  3252. 199: Lilith
  3253. 200: Key Bum
  3254. 201: GB Bug
  3255. 202: Zodiac
  3256. 203: Box of Friends
  3257. 204: Rib of Greed
  3258. 205: Cry Baby
  3259. 206: Red Baby
  3260. 207: Green Baby
  3261. 208: Brown Baby
  3262. 209: Blue Baby
  3263. 210: Lil' Baby
  3264. 211: Rage Baby
  3265. 212: Black Baby
  3266. 213: Long Baby
  3267. 214: Yellow Baby
  3268. 215: White Baby
  3269. 216: Big Baby
  3270. 217: Noose Baby
  3271. 218: Rune Bag
  3272. 219: Cambion Conception
  3273. 220: Serpent's Kiss
  3274. 221: Succubus
  3275. 222: Immaculate Conception
  3276. 223: Goat Head Baby
  3277. 224: Gold Heart
  3278. 225: Get out of Jail Free Card
  3279. 226: Gold Bomb
  3280. 227: 2 new Pills (#1)
  3281. 228: 2 new Pills (#2)
  3282. 229: Poker Chip
  3283. 230: Stud Finder
  3284. 231: D8
  3285. 232: Kidney Stone
  3286. 233: Blank Rune
  3287. 234: Blue Womb
  3288. 235: 1001%!!
  3289. 236: Keeper holds Wooden Nickel
  3290. 237: Keeper holds Store Key
  3291. 238: Deep Pockets
  3292. 239: Karma
  3293. 240: Sticky Nickels
  3294. 241: Greed Baby
  3295. 242: Lucky Pennies
  3296. 243: Special Hanging Shopkeepers
  3297. 244: Wooden Nickel
  3298. 245: Cain holds Paperclip
  3299. 246: Everything Is Terrible 2!
  3300. 247: Special Shopkeepers
  3301. 248: Eve holds Razor Blade
  3302. 249: Store Key
  3303. 250: Lost holds Holy Mantle
  3304. 251: Keeper
  3305. 252: Hive baby
  3306. 253: Buddy Baby
  3307. 254: Colorful Baby
  3308. 255: Whore Baby
  3309. 256: Cracked Baby
  3310. 257: Dripping Baby
  3311. 258: Blinding Baby
  3312. 259: Sucky Baby
  3313. 260: Dark Baby
  3314. 261: Picky Baby
  3315. 262: Revenge Baby
  3316. 263: Belial Baby
  3317. 264: Sale Baby
  3318. 265: Challenge #21 - XXXXXXXXL
  3319. 266: Challenge #22 - SPEED!
  3320. 267: Challenge #23 - Blue Bomber
  3321. 268: Challenge #24 - PAY TO PLAY
  3322. 269: Challenge #25 - Have A Heart
  3323. 270: Challenge #26 - I RULE!
  3324. 271: Challenge #27 - BRAINS!
  3325. 272: Challenge #28 - PRIDE DAY!
  3326. 273: Challenge #29 - Onan's Streak
  3327. 274: Challenge #30 - The Guardian
  3328. 275: If only everyone was as generous as you are...
  3329. 276: Mega Blast!
  3330. </DropDownList>
  3331. <LastState Value="??" Activated="0" RealAddress="03A80104"/>
  3332. <Color>80000008</Color>
  3333. <VariableType>4 Bytes</VariableType>
  3334. <Address>pStats+4</Address>
  3335. <CheatEntries>
  3336. <CheatEntry>
  3337. <ID>920</ID>
  3338. <Description>"Secret Unlocked?"</Description>
  3339. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:No
  3340. 1:Yes
  3341. </DropDownList>
  3342. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3343. <Color>80000008</Color>
  3344. <VariableType>Byte</VariableType>
  3345. <Address>pStats+8</Address>
  3346. <Offsets>
  3347. <Offset>0</Offset>
  3348. </Offsets>
  3349. </CheatEntry>
  3350. </CheatEntries>
  3351. </CheatEntry>
  3352. </CheatEntries>
  3353. </CheatEntry>
  3354. <CheatEntry>
  3355. <ID>437</ID>
  3356. <Description>"Possible Pill Effects"</Description>
  3357. <Options moHideChildren="1"/>
  3358. <LastState Value="" Activated="0" RealAddress="00000000"/>
  3359. <Color>FF0000</Color>
  3360. <GroupHeader>1</GroupHeader>
  3361. <CheatEntries>
  3362. <CheatEntry>
  3363. <ID>438</ID>
  3364. <Description>"Pills discovered?"</Description>
  3365. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3366. <Color>80000008</Color>
  3367. <VariableType>Array of byte</VariableType>
  3368. <ByteLength>13</ByteLength>
  3369. <Address>pFloor</Address>
  3370. <Offsets>
  3371. <Offset>9865</Offset>
  3372. </Offsets>
  3373. </CheatEntry>
  3374. <CheatEntry>
  3375. <ID>439</ID>
  3376. <Description>"Pill Effect #1"</Description>
  3377. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3378. 1:Bad Trip/Balls of Steel
  3379. 2:Balls of Steel
  3380. 3:Bombs are Key
  3381. 4:Explosive Diarrhea
  3382. 5:Full Health
  3383. 6:Health Down/Up
  3384. 7:Health Up
  3385. 8:I Found Pills
  3386. 9:Puberty
  3387. 10:Pretty Fly
  3388. 11:Range Down/Up
  3389. 12:Range Up
  3390. 13:Speed Down/Up
  3391. 14:Speed Up
  3392. 15:Tears DownUp
  3393. 16:Tears Up
  3394. 17:Luck Down/Up
  3395. 18:Luck Up
  3396. 19:Telepills
  3397. 20:48 Hour Energy!
  3398. 21:Hematemesis
  3399. 22:Paralysis
  3400. 23:I can see forever!
  3401. 24:Pheromones
  3402. 25:Amnesia/I can see forever!
  3403. 26:Lemon Party
  3404. 27:R U A Wizard?
  3405. 28:Percs!
  3406. 29:Addicted!
  3407. 30:Re-Lax
  3408. 31:???
  3409. 32:One makes you larger
  3410. 33:One makes you small
  3411. 34:Infested!
  3412. 35:Infested?
  3413. 36:Power Pill!
  3414. 37:Retro Vision
  3415. </DropDownList>
  3416. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3417. <Color>80000008</Color>
  3418. <VariableType>4 Bytes</VariableType>
  3419. <Address>pFloor</Address>
  3420. <Offsets>
  3421. <Offset>9830</Offset>
  3422. </Offsets>
  3423. </CheatEntry>
  3424. <CheatEntry>
  3425. <ID>440</ID>
  3426. <Description>"Pill Effect #2"</Description>
  3427. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3428. 1:Bad Trip/Balls of Steel
  3429. 2:Balls of Steel
  3430. 3:Bombs are Key
  3431. 4:Explosive Diarrhea
  3432. 5:Full Health
  3433. 6:Health Down/Up
  3434. 7:Health Up
  3435. 8:I Found Pills
  3436. 9:Puberty
  3437. 10:Pretty Fly
  3438. 11:Range Down/Up
  3439. 12:Range Up
  3440. 13:Speed Down/Up
  3441. 14:Speed Up
  3442. 15:Tears DownUp
  3443. 16:Tears Up
  3444. 17:Luck Down/Up
  3445. 18:Luck Up
  3446. 19:Telepills
  3447. 20:48 Hour Energy!
  3448. 21:Hematemesis
  3449. 22:Paralysis
  3450. 23:I can see forever!
  3451. 24:Pheromones
  3452. 25:Amnesia/I can see forever!
  3453. 26:Lemon Party
  3454. 27:R U A Wizard?
  3455. 28:Percs!
  3456. 29:Addicted!
  3457. 30:Re-Lax
  3458. 31:???
  3459. 32:One makes you larger
  3460. 33:One makes you small
  3461. 34:Infested!
  3462. 35:Infested?
  3463. 36:Power Pill!
  3464. 37:Retro Vision
  3465. </DropDownList>
  3466. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3467. <Color>80000008</Color>
  3468. <VariableType>4 Bytes</VariableType>
  3469. <Address>pFloor</Address>
  3470. <Offsets>
  3471. <Offset>9834</Offset>
  3472. </Offsets>
  3473. </CheatEntry>
  3474. <CheatEntry>
  3475. <ID>441</ID>
  3476. <Description>"Pill Effect #3"</Description>
  3477. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3478. 1:Bad Trip/Balls of Steel
  3479. 2:Balls of Steel
  3480. 3:Bombs are Key
  3481. 4:Explosive Diarrhea
  3482. 5:Full Health
  3483. 6:Health Down/Up
  3484. 7:Health Up
  3485. 8:I Found Pills
  3486. 9:Puberty
  3487. 10:Pretty Fly
  3488. 11:Range Down/Up
  3489. 12:Range Up
  3490. 13:Speed Down/Up
  3491. 14:Speed Up
  3492. 15:Tears DownUp
  3493. 16:Tears Up
  3494. 17:Luck Down/Up
  3495. 18:Luck Up
  3496. 19:Telepills
  3497. 20:48 Hour Energy!
  3498. 21:Hematemesis
  3499. 22:Paralysis
  3500. 23:I can see forever!
  3501. 24:Pheromones
  3502. 25:Amnesia/I can see forever!
  3503. 26:Lemon Party
  3504. 27:R U A Wizard?
  3505. 28:Percs!
  3506. 29:Addicted!
  3507. 30:Re-Lax
  3508. 31:???
  3509. 32:One makes you larger
  3510. 33:One makes you small
  3511. 34:Infested!
  3512. 35:Infested?
  3513. 36:Power Pill!
  3514. 37:Retro Vision
  3515. </DropDownList>
  3516. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3517. <Color>80000008</Color>
  3518. <VariableType>4 Bytes</VariableType>
  3519. <Address>pFloor</Address>
  3520. <Offsets>
  3521. <Offset>9838</Offset>
  3522. </Offsets>
  3523. </CheatEntry>
  3524. <CheatEntry>
  3525. <ID>442</ID>
  3526. <Description>"Pill Effect #4"</Description>
  3527. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3528. 1:Bad Trip/Balls of Steel
  3529. 2:Balls of Steel
  3530. 3:Bombs are Key
  3531. 4:Explosive Diarrhea
  3532. 5:Full Health
  3533. 6:Health Down/Up
  3534. 7:Health Up
  3535. 8:I Found Pills
  3536. 9:Puberty
  3537. 10:Pretty Fly
  3538. 11:Range Down/Up
  3539. 12:Range Up
  3540. 13:Speed Down/Up
  3541. 14:Speed Up
  3542. 15:Tears DownUp
  3543. 16:Tears Up
  3544. 17:Luck Down/Up
  3545. 18:Luck Up
  3546. 19:Telepills
  3547. 20:48 Hour Energy!
  3548. 21:Hematemesis
  3549. 22:Paralysis
  3550. 23:I can see forever!
  3551. 24:Pheromones
  3552. 25:Amnesia/I can see forever!
  3553. 26:Lemon Party
  3554. 27:R U A Wizard?
  3555. 28:Percs!
  3556. 29:Addicted!
  3557. 30:Re-Lax
  3558. 31:???
  3559. 32:One makes you larger
  3560. 33:One makes you small
  3561. 34:Infested!
  3562. 35:Infested?
  3563. 36:Power Pill!
  3564. 37:Retro Vision
  3565. </DropDownList>
  3566. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3567. <Color>80000008</Color>
  3568. <VariableType>4 Bytes</VariableType>
  3569. <Address>pFloor</Address>
  3570. <Offsets>
  3571. <Offset>983C</Offset>
  3572. </Offsets>
  3573. </CheatEntry>
  3574. <CheatEntry>
  3575. <ID>443</ID>
  3576. <Description>"Pill Effect #5"</Description>
  3577. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3578. 1:Bad Trip/Balls of Steel
  3579. 2:Balls of Steel
  3580. 3:Bombs are Key
  3581. 4:Explosive Diarrhea
  3582. 5:Full Health
  3583. 6:Health Down/Up
  3584. 7:Health Up
  3585. 8:I Found Pills
  3586. 9:Puberty
  3587. 10:Pretty Fly
  3588. 11:Range Down/Up
  3589. 12:Range Up
  3590. 13:Speed Down/Up
  3591. 14:Speed Up
  3592. 15:Tears DownUp
  3593. 16:Tears Up
  3594. 17:Luck Down/Up
  3595. 18:Luck Up
  3596. 19:Telepills
  3597. 20:48 Hour Energy!
  3598. 21:Hematemesis
  3599. 22:Paralysis
  3600. 23:I can see forever!
  3601. 24:Pheromones
  3602. 25:Amnesia/I can see forever!
  3603. 26:Lemon Party
  3604. 27:R U A Wizard?
  3605. 28:Percs!
  3606. 29:Addicted!
  3607. 30:Re-Lax
  3608. 31:???
  3609. 32:One makes you larger
  3610. 33:One makes you small
  3611. 34:Infested!
  3612. 35:Infested?
  3613. 36:Power Pill!
  3614. 37:Retro Vision
  3615. </DropDownList>
  3616. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3617. <Color>80000008</Color>
  3618. <VariableType>4 Bytes</VariableType>
  3619. <Address>pFloor</Address>
  3620. <Offsets>
  3621. <Offset>9840</Offset>
  3622. </Offsets>
  3623. </CheatEntry>
  3624. <CheatEntry>
  3625. <ID>444</ID>
  3626. <Description>"Pill Effect #6"</Description>
  3627. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3628. 1:Bad Trip/Balls of Steel
  3629. 2:Balls of Steel
  3630. 3:Bombs are Key
  3631. 4:Explosive Diarrhea
  3632. 5:Full Health
  3633. 6:Health Down/Up
  3634. 7:Health Up
  3635. 8:I Found Pills
  3636. 9:Puberty
  3637. 10:Pretty Fly
  3638. 11:Range Down/Up
  3639. 12:Range Up
  3640. 13:Speed Down/Up
  3641. 14:Speed Up
  3642. 15:Tears DownUp
  3643. 16:Tears Up
  3644. 17:Luck Down/Up
  3645. 18:Luck Up
  3646. 19:Telepills
  3647. 20:48 Hour Energy!
  3648. 21:Hematemesis
  3649. 22:Paralysis
  3650. 23:I can see forever!
  3651. 24:Pheromones
  3652. 25:Amnesia/I can see forever!
  3653. 26:Lemon Party
  3654. 27:R U A Wizard?
  3655. 28:Percs!
  3656. 29:Addicted!
  3657. 30:Re-Lax
  3658. 31:???
  3659. 32:One makes you larger
  3660. 33:One makes you small
  3661. 34:Infested!
  3662. 35:Infested?
  3663. 36:Power Pill!
  3664. 37:Retro Vision
  3665. </DropDownList>
  3666. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3667. <Color>80000008</Color>
  3668. <VariableType>4 Bytes</VariableType>
  3669. <Address>pFloor</Address>
  3670. <Offsets>
  3671. <Offset>9844</Offset>
  3672. </Offsets>
  3673. </CheatEntry>
  3674. <CheatEntry>
  3675. <ID>445</ID>
  3676. <Description>"Pill Effect #7"</Description>
  3677. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3678. 1:Bad Trip/Balls of Steel
  3679. 2:Balls of Steel
  3680. 3:Bombs are Key
  3681. 4:Explosive Diarrhea
  3682. 5:Full Health
  3683. 6:Health Down/Up
  3684. 7:Health Up
  3685. 8:I Found Pills
  3686. 9:Puberty
  3687. 10:Pretty Fly
  3688. 11:Range Down/Up
  3689. 12:Range Up
  3690. 13:Speed Down/Up
  3691. 14:Speed Up
  3692. 15:Tears DownUp
  3693. 16:Tears Up
  3694. 17:Luck Down/Up
  3695. 18:Luck Up
  3696. 19:Telepills
  3697. 20:48 Hour Energy!
  3698. 21:Hematemesis
  3699. 22:Paralysis
  3700. 23:I can see forever!
  3701. 24:Pheromones
  3702. 25:Amnesia/I can see forever!
  3703. 26:Lemon Party
  3704. 27:R U A Wizard?
  3705. 28:Percs!
  3706. 29:Addicted!
  3707. 30:Re-Lax
  3708. 31:???
  3709. 32:One makes you larger
  3710. 33:One makes you small
  3711. 34:Infested!
  3712. 35:Infested?
  3713. 36:Power Pill!
  3714. 37:Retro Vision
  3715. </DropDownList>
  3716. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3717. <Color>80000008</Color>
  3718. <VariableType>4 Bytes</VariableType>
  3719. <Address>pFloor</Address>
  3720. <Offsets>
  3721. <Offset>9848</Offset>
  3722. </Offsets>
  3723. </CheatEntry>
  3724. <CheatEntry>
  3725. <ID>446</ID>
  3726. <Description>"Pill Effect #8"</Description>
  3727. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3728. 1:Bad Trip/Balls of Steel
  3729. 2:Balls of Steel
  3730. 3:Bombs are Key
  3731. 4:Explosive Diarrhea
  3732. 5:Full Health
  3733. 6:Health Down/Up
  3734. 7:Health Up
  3735. 8:I Found Pills
  3736. 9:Puberty
  3737. 10:Pretty Fly
  3738. 11:Range Down/Up
  3739. 12:Range Up
  3740. 13:Speed Down/Up
  3741. 14:Speed Up
  3742. 15:Tears DownUp
  3743. 16:Tears Up
  3744. 17:Luck Down/Up
  3745. 18:Luck Up
  3746. 19:Telepills
  3747. 20:48 Hour Energy!
  3748. 21:Hematemesis
  3749. 22:Paralysis
  3750. 23:I can see forever!
  3751. 24:Pheromones
  3752. 25:Amnesia/I can see forever!
  3753. 26:Lemon Party
  3754. 27:R U A Wizard?
  3755. 28:Percs!
  3756. 29:Addicted!
  3757. 30:Re-Lax
  3758. 31:???
  3759. 32:One makes you larger
  3760. 33:One makes you small
  3761. 34:Infested!
  3762. 35:Infested?
  3763. 36:Power Pill!
  3764. 37:Retro Vision
  3765. </DropDownList>
  3766. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3767. <Color>80000008</Color>
  3768. <VariableType>4 Bytes</VariableType>
  3769. <Address>pFloor</Address>
  3770. <Offsets>
  3771. <Offset>984C</Offset>
  3772. </Offsets>
  3773. </CheatEntry>
  3774. <CheatEntry>
  3775. <ID>447</ID>
  3776. <Description>"Pill Effect #9"</Description>
  3777. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3778. 1:Bad Trip/Balls of Steel
  3779. 2:Balls of Steel
  3780. 3:Bombs are Key
  3781. 4:Explosive Diarrhea
  3782. 5:Full Health
  3783. 6:Health Down/Up
  3784. 7:Health Up
  3785. 8:I Found Pills
  3786. 9:Puberty
  3787. 10:Pretty Fly
  3788. 11:Range Down/Up
  3789. 12:Range Up
  3790. 13:Speed Down/Up
  3791. 14:Speed Up
  3792. 15:Tears DownUp
  3793. 16:Tears Up
  3794. 17:Luck Down/Up
  3795. 18:Luck Up
  3796. 19:Telepills
  3797. 20:48 Hour Energy!
  3798. 21:Hematemesis
  3799. 22:Paralysis
  3800. 23:I can see forever!
  3801. 24:Pheromones
  3802. 25:Amnesia/I can see forever!
  3803. 26:Lemon Party
  3804. 27:R U A Wizard?
  3805. 28:Percs!
  3806. 29:Addicted!
  3807. 30:Re-Lax
  3808. 31:???
  3809. 32:One makes you larger
  3810. 33:One makes you small
  3811. 34:Infested!
  3812. 35:Infested?
  3813. 36:Power Pill!
  3814. 37:Retro Vision
  3815. </DropDownList>
  3816. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3817. <Color>80000008</Color>
  3818. <VariableType>4 Bytes</VariableType>
  3819. <Address>pFloor</Address>
  3820. <Offsets>
  3821. <Offset>9850</Offset>
  3822. </Offsets>
  3823. </CheatEntry>
  3824. <CheatEntry>
  3825. <ID>855</ID>
  3826. <Description>"Pill Effect #10"</Description>
  3827. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3828. 1:Bad Trip/Balls of Steel
  3829. 2:Balls of Steel
  3830. 3:Bombs are Key
  3831. 4:Explosive Diarrhea
  3832. 5:Full Health
  3833. 6:Health Down/Up
  3834. 7:Health Up
  3835. 8:I Found Pills
  3836. 9:Puberty
  3837. 10:Pretty Fly
  3838. 11:Range Down/Up
  3839. 12:Range Up
  3840. 13:Speed Down/Up
  3841. 14:Speed Up
  3842. 15:Tears DownUp
  3843. 16:Tears Up
  3844. 17:Luck Down/Up
  3845. 18:Luck Up
  3846. 19:Telepills
  3847. 20:48 Hour Energy!
  3848. 21:Hematemesis
  3849. 22:Paralysis
  3850. 23:I can see forever!
  3851. 24:Pheromones
  3852. 25:Amnesia/I can see forever!
  3853. 26:Lemon Party
  3854. 27:R U A Wizard?
  3855. 28:Percs!
  3856. 29:Addicted!
  3857. 30:Re-Lax
  3858. 31:???
  3859. 32:One makes you larger
  3860. 33:One makes you small
  3861. 34:Infested!
  3862. 35:Infested?
  3863. 36:Power Pill!
  3864. 37:Retro Vision
  3865. </DropDownList>
  3866. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3867. <Color>80000008</Color>
  3868. <VariableType>4 Bytes</VariableType>
  3869. <Address>pFloor</Address>
  3870. <Offsets>
  3871. <Offset>9854</Offset>
  3872. </Offsets>
  3873. </CheatEntry>
  3874. <CheatEntry>
  3875. <ID>854</ID>
  3876. <Description>"Pill Effect #11"</Description>
  3877. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3878. 1:Bad Trip/Balls of Steel
  3879. 2:Balls of Steel
  3880. 3:Bombs are Key
  3881. 4:Explosive Diarrhea
  3882. 5:Full Health
  3883. 6:Health Down/Up
  3884. 7:Health Up
  3885. 8:I Found Pills
  3886. 9:Puberty
  3887. 10:Pretty Fly
  3888. 11:Range Down/Up
  3889. 12:Range Up
  3890. 13:Speed Down/Up
  3891. 14:Speed Up
  3892. 15:Tears DownUp
  3893. 16:Tears Up
  3894. 17:Luck Down/Up
  3895. 18:Luck Up
  3896. 19:Telepills
  3897. 20:48 Hour Energy!
  3898. 21:Hematemesis
  3899. 22:Paralysis
  3900. 23:I can see forever!
  3901. 24:Pheromones
  3902. 25:Amnesia/I can see forever!
  3903. 26:Lemon Party
  3904. 27:R U A Wizard?
  3905. 28:Percs!
  3906. 29:Addicted!
  3907. 30:Re-Lax
  3908. 31:???
  3909. 32:One makes you larger
  3910. 33:One makes you small
  3911. 34:Infested!
  3912. 35:Infested?
  3913. 36:Power Pill!
  3914. 37:Retro Vision
  3915. </DropDownList>
  3916. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3917. <Color>80000008</Color>
  3918. <VariableType>4 Bytes</VariableType>
  3919. <Address>pFloor</Address>
  3920. <Offsets>
  3921. <Offset>9858</Offset>
  3922. </Offsets>
  3923. </CheatEntry>
  3924. <CheatEntry>
  3925. <ID>853</ID>
  3926. <Description>"Pill Effect #12"</Description>
  3927. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3928. 1:Bad Trip/Balls of Steel
  3929. 2:Balls of Steel
  3930. 3:Bombs are Key
  3931. 4:Explosive Diarrhea
  3932. 5:Full Health
  3933. 6:Health Down/Up
  3934. 7:Health Up
  3935. 8:I Found Pills
  3936. 9:Puberty
  3937. 10:Pretty Fly
  3938. 11:Range Down/Up
  3939. 12:Range Up
  3940. 13:Speed Down/Up
  3941. 14:Speed Up
  3942. 15:Tears DownUp
  3943. 16:Tears Up
  3944. 17:Luck Down/Up
  3945. 18:Luck Up
  3946. 19:Telepills
  3947. 20:48 Hour Energy!
  3948. 21:Hematemesis
  3949. 22:Paralysis
  3950. 23:I can see forever!
  3951. 24:Pheromones
  3952. 25:Amnesia/I can see forever!
  3953. 26:Lemon Party
  3954. 27:R U A Wizard?
  3955. 28:Percs!
  3956. 29:Addicted!
  3957. 30:Re-Lax
  3958. 31:???
  3959. 32:One makes you larger
  3960. 33:One makes you small
  3961. 34:Infested!
  3962. 35:Infested?
  3963. 36:Power Pill!
  3964. 37:Retro Vision
  3965. </DropDownList>
  3966. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  3967. <Color>80000008</Color>
  3968. <VariableType>4 Bytes</VariableType>
  3969. <Address>pFloor</Address>
  3970. <Offsets>
  3971. <Offset>985C</Offset>
  3972. </Offsets>
  3973. </CheatEntry>
  3974. <CheatEntry>
  3975. <ID>852</ID>
  3976. <Description>"Pill Effect #13"</Description>
  3977. <DropDownList DescriptionOnly="1" DisplayValueAsItem="1">0:Bad Gas
  3978. 1:Bad Trip/Balls of Steel
  3979. 2:Balls of Steel
  3980. 3:Bombs are Key
  3981. 4:Explosive Diarrhea
  3982. 5:Full Health
  3983. 6:Health Down/Up
  3984. 7:Health Up
  3985. 8:I Found Pills
  3986. 9:Puberty
  3987. 10:Pretty Fly
  3988. 11:Range Down/Up
  3989. 12:Range Up
  3990. 13:Speed Down/Up
  3991. 14:Speed Up
  3992. 15:Tears DownUp
  3993. 16:Tears Up
  3994. 17:Luck Down/Up
  3995. 18:Luck Up
  3996. 19:Telepills
  3997. 20:48 Hour Energy!
  3998. 21:Hematemesis
  3999. 22:Paralysis
  4000. 23:I can see forever!
  4001. 24:Pheromones
  4002. 25:Amnesia/I can see forever!
  4003. 26:Lemon Party
  4004. 27:R U A Wizard?
  4005. 28:Percs!
  4006. 29:Addicted!
  4007. 30:Re-Lax
  4008. 31:???
  4009. 32:One makes you larger
  4010. 33:One makes you small
  4011. 34:Infested!
  4012. 35:Infested?
  4013. 36:Power Pill!
  4014. 37:Retro Vision
  4015. </DropDownList>
  4016. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  4017. <Color>80000008</Color>
  4018. <VariableType>4 Bytes</VariableType>
  4019. <Address>pFloor</Address>
  4020. <Offsets>
  4021. <Offset>9860</Offset>
  4022. </Offsets>
  4023. </CheatEntry>
  4024. </CheatEntries>
  4025. </CheatEntry>
  4026. <CheatEntry>
  4027. <ID>797</ID>
  4028. <Description>"Misc"</Description>
  4029. <Options moHideChildren="1"/>
  4030. <LastState Value="" Activated="0" RealAddress="00000000"/>
  4031. <Color>FF0000</Color>
  4032. <GroupHeader>1</GroupHeader>
  4033. <CheatEntries>
  4034. <CheatEntry>
  4035. <ID>890</ID>
  4036. <Description>"Floor Type"</Description>
  4037. <DropDownList DisplayValueAsItem="1">0: Normal
  4038. 1: Alternate 1
  4039. 2: Alternate 2
  4040. 3: Greed Mode
  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>4</Offset>
  4048. </Offsets>
  4049. </CheatEntry>
  4050. <CheatEntry>
  4051. <ID>829</ID>
  4052. <Description>"Floor Curse(s)"</Description>
  4053. <DropDownList DisplayValueAsItem="1">0: None
  4054. 1: Curse of Darkness
  4055. 2: Curse of the Labyrinth
  4056. 4: Curse of the Lost
  4057. 8: Curse of the Unknown
  4058. 9: Darkness + Unknown
  4059. 16: Curse of the Cursed
  4060. 32: Curse of the Maze
  4061. 64: Curse of the Blind
  4062. </DropDownList>
  4063. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  4064. <Color>80000008</Color>
  4065. <VariableType>Byte</VariableType>
  4066. <Address>pFloor</Address>
  4067. <Offsets>
  4068. <Offset>C</Offset>
  4069. </Offsets>
  4070. </CheatEntry>
  4071. <CheatEntry>
  4072. <ID>798</ID>
  4073. <Description>"Used "I can see forever!"?"</Description>
  4074. <DropDownList DisplayValueAsItem="1">0: No
  4075. 1: Yes
  4076. </DropDownList>
  4077. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  4078. <Color>80000008</Color>
  4079. <VariableType>Byte</VariableType>
  4080. <Address>pFloor</Address>
  4081. <Offsets>
  4082. <Offset>11</Offset>
  4083. </Offsets>
  4084. </CheatEntry>
  4085. <CheatEntry>
  4086. <ID>847</ID>
  4087. <Description>"Invuln. Timer"</Description>
  4088. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  4089. <Color>80000008</Color>
  4090. <VariableType>4 Bytes</VariableType>
  4091. <Address>pFloor</Address>
  4092. <Offsets>
  4093. <Offset>1B98</Offset>
  4094. <Offset>0</Offset>
  4095. <Offset>B7D8</Offset>
  4096. </Offsets>
  4097. </CheatEntry>
  4098. </CheatEntries>
  4099. </CheatEntry>
  4100. <CheatEntry>
  4101. <ID>429</ID>
  4102. <Description>"Current Floor"</Description>
  4103. <LastState Value="??" Activated="0" RealAddress="00000000"/>
  4104. <Color>80000008</Color>
  4105. <VariableType>4 Bytes</VariableType>
  4106. <Address>pFloor</Address>
  4107. <Offsets>
  4108. <Offset>0</Offset>
  4109. </Offsets>
  4110. </CheatEntry>
  4111. </CheatEntries>
  4112. </CheatEntry>
  4113. <CheatEntry>
  4114. <ID>328</ID>
  4115. <Description>"Pedestal Script"</Description>
  4116. <Options moHideChildren="1"/>
  4117. <LastState Activated="0"/>
  4118. <Color>008000</Color>
  4119. <VariableType>Auto Assembler Script</VariableType>
  4120. <AssemblerScript>{ by HenryEx
  4121. for The Binding of Isaac: Afterbirth
  4122.  
  4123. This script allows you to set the item that will be picked up the next time
  4124. you touch a pedestal.
  4125. }
  4126.  
  4127. [ENABLE]
  4128. aobscanmodule(AOB_pedInj,isaac-ng.exe,83 xx 64 0F 85 xx xx xx xx 8B 46 2C 85 C0 0F 84)
  4129. alloc(PedScript,256)
  4130.  
  4131. // Declaration section
  4132. registersymbol(AOB_pedInj)
  4133. registersymbol(PedScript)
  4134. label(_Code)
  4135. label(_ExitPS)
  4136. label(_BackPS)
  4137.  
  4138. //=========================================
  4139. // Hacking Point
  4140.  
  4141. AOB_pedInj+9:
  4142. jmp _Code
  4143. _BackPS:
  4144.  
  4145. //=========================================
  4146. // Var Section
  4147.  
  4148. PedScript:
  4149. dd 0 // Item ID to pick up
  4150.  
  4151. //=========================================
  4152. // Code Section
  4153. _Code:
  4154. mov eax,[PedScript]
  4155. cmp eax,0
  4156. jz short _ExitPS
  4157.  
  4158. mov [esi+2C],eax
  4159. xor eax,eax
  4160. mov [PedScript],eax
  4161.  
  4162. _ExitPS:
  4163. mov eax,[esi+2C]
  4164. test eax,eax
  4165. jmp _BackPS
  4166.  
  4167.  
  4168. [DISABLE]
  4169. AOB_pedInj+9:
  4170. mov eax,[esi+2C]
  4171. test eax,eax
  4172. // db 8B 46 2C 85 C0
  4173.  
  4174. unregistersymbol(AOB_pedInj)
  4175. unregistersymbol(PedScript)
  4176.  
  4177. dealloc(PedScript)
  4178.  
  4179. {
  4180. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+CF257
  4181.  
  4182. "isaac-ng.exe"+CF227: 81 FF 68 01 00 00 - cmp edi,00000168
  4183. "isaac-ng.exe"+CF22D: 0F 84 3E 0C 00 00 - je isaac-ng.exe+CFE71
  4184. "isaac-ng.exe"+CF233: 83 FF 3C - cmp edi,3C
  4185. "isaac-ng.exe"+CF236: 0F 84 43 0C 00 00 - je isaac-ng.exe+CFE7F
  4186. "isaac-ng.exe"+CF23C: 83 FF 34 - cmp edi,34
  4187. "isaac-ng.exe"+CF23F: 0F 84 2C 0C 00 00 - je isaac-ng.exe+CFE71
  4188. "isaac-ng.exe"+CF245: 83 FF 35 - cmp edi,35
  4189. "isaac-ng.exe"+CF248: 0F 84 23 0C 00 00 - je isaac-ng.exe+CFE71
  4190. "isaac-ng.exe"+CF24E: 83 FF 64 - cmp edi,64
  4191. "isaac-ng.exe"+CF251: 0F 85 0F 06 00 00 - jne isaac-ng.exe+CF866
  4192. // ---------- INJECTING HERE ----------
  4193. "isaac-ng.exe"+CF257: 8B 46 2C - mov eax,[esi+2C]
  4194. "isaac-ng.exe"+CF25A: 85 C0 - test eax,eax
  4195. // ---------- DONE INJECTING ----------
  4196. "isaac-ng.exe"+CF25C: 0F 84 04 06 00 00 - je isaac-ng.exe+CF866
  4197. "isaac-ng.exe"+CF262: 8B C3 - mov eax,ebx
  4198. "isaac-ng.exe"+CF264: E8 17 A3 05 00 - call isaac-ng.exe+129580
  4199. "isaac-ng.exe"+CF269: 84 C0 - test al,al
  4200. "isaac-ng.exe"+CF26B: 0F 85 F5 05 00 00 - jne isaac-ng.exe+CF866
  4201. "isaac-ng.exe"+CF271: 83 BB 70 4C 00 00 00 - cmp dword ptr [ebx+00004C70],00
  4202. "isaac-ng.exe"+CF278: 0F 85 E8 05 00 00 - jne isaac-ng.exe+CF866
  4203. "isaac-ng.exe"+CF27E: 83 BE 80 10 00 00 00 - cmp dword ptr [esi+00001080],00
  4204. "isaac-ng.exe"+CF285: 0F 8F DB 05 00 00 - jg isaac-ng.exe+CF866
  4205. "isaac-ng.exe"+CF28B: 8B 46 2C - mov eax,[esi+2C]
  4206. }
  4207. </AssemblerScript>
  4208. <CheatEntries>
  4209. <CheatEntry>
  4210. <ID>329</ID>
  4211. <Description>"Item to pick up"</Description>
  4212. <DropDownList DisplayValueAsItem="1">320:???'s Only Friend - Controlled friend
  4213. 11:1up! - Extra life
  4214. 15:Less than 3 - HP up
  4215. 191:3 Dollar Bill - Rainbow tears
  4216. 359:8 Inch Nails - Stick it to 'em!
  4217. 116:9 Volt - Quicker charge
  4218. 245:20/20 - Double shot
  4219. 130:A Pony - Flight + dash attack
  4220. 18:A Dollar - $$$
  4221. 74:A Quarter - +25 coins
  4222. 132:A Lump of Coal - My Xmas present
  4223. 346:A Snack - HP up
  4224. 230:Abaddon - Evil + DMG up + fear shot
  4225. 188:Abel - Mirrored buddy
  4226. 65:Anarchist Cookbook - Summon bombs
  4227. 214:Anemic - Toxic blood
  4228. 161:Ankh - Eternal life?
  4229. 222:Anti-Gravity - Anti-gravity tears + tears up
  4230. 308:Aquarius - Trail of tears
  4231. 300:Aries - Ramming speed
  4232. 408:Athame - Call to the void
  4233. 231:Ball of Tar - Sticky feet...
  4234. 207:Ball of Bandages - Gotta lick 'em all!
  4235. 272:BBF - Big Beautiful Fly
  4236. 274:Best Bud - Sworn protector
  4237. 136:Best Friend - Friends 'till the end
  4238. 391:Betrayal - Turn your enemy
  4239. 247:BFFS! - Your friends rule
  4240. 279:Big Fan - Fat protector
  4241. 438:Binky - Memories...
  4242. 260:Black Candle - Curse immunity + evil up
  4243. 226:Black Lotus - HP up x3
  4244. 420:Black Powder - Spin the black circle!
  4245. 286:Blank Card - Card mimic
  4246. 119:Blood Bag - HP up
  4247. 254:Blood Clot - DMG + range up
  4248. 7:Blood of the Martyr - DMG up
  4249. 186:Blood Rights - Mass enemy damage at a cost
  4250. 157:Bloody Lust - RAGE!
  4251. 246:Blue Map - Secrets
  4252. 342:Blue Cap - HP + tears up + shot speed down
  4253. 273:Bob's Brain - Explosive thoughts
  4254. 140:Bob's Curse - +5 poison bombs
  4255. 42:Bob's Rotten Head - Reusable ranged bomb
  4256. 125:Bobby-Bomb - Homing bombs
  4257. 250:BOGO Bombs - 1+1 BOOM!
  4258. 131:Bomb Bag - Gives bombs
  4259. 353:Bomber Boy - Explosive blast!
  4260. 78:Book of Revelations - Reusable soul protection
  4261. 287:Book of Secrets - ???
  4262. 58:Book of Shadows - Temporary invincibility
  4263. 19:Boom! - 10 bombs
  4264. 357:Box of Friends - Double your friends
  4265. 288:Box of Spiders - It's a box of spiders
  4266. 198:Box - Stuff
  4267. 25:Breakfast - HP up
  4268. 326:Breath of Life - Invincibility at a cost
  4269. 118:Brimstone - Blood laser barrage
  4270. 337:Broken Watch - I think it's broken
  4271. 8:Brother Bobby - Friends 'till the end
  4272. 129:Bucket of Lard - HP up
  4273. 385:Bumbo - Bumbo want coin!
  4274. 144:Bum Friend - He's greedy
  4275. 377:Bursting Sack - Spider love
  4276. 209:Butt Bombs - Toxic blast +5 bombs
  4277. 294:Butter Bean - Reusable knock-back
  4278. 340:Caffeine Pill - Speed up + size down
  4279. 319:Cain's Other Eye - Near-sighted friend
  4280. 412:Cambion Conception - Feed them hate
  4281. 301:Cancer - HP up + you feel protected
  4282. 307:Capricorn - All stats up
  4283. 356:Car Battery - Double charge!
  4284. 165:Cat-o-nine-tails - Shot speed + damage up
  4285. 162:Celtic Cross - You feel blessed
  4286. 387:Censer - Peace be with you
  4287. 216:Ceremonial Robes - Sin up
  4288. 208:Champion Belt - DMG + Challenge up
  4289. 402:Chaos - !!!
  4290. 372:Charged Baby - Bbbzzzzzt!
  4291. 62:Charm of the Vampire - Kills heal
  4292. 154:Chemical Peel - DMG up
  4293. 69:Chocolate Milk - Charge shots
  4294. 423:Circle of Protection - protect me from myself
  4295. 369:Continuum - Transcendent tears
  4296. 241:Contract from Below - Wealth... but at what cost?
  4297. 296:Converter - Convert your soul
  4298. 354:Crack Jacks - Don't swallow the prize!
  4299. 160:Crack the Sky - Holy white death
  4300. 4:Cricket's Head - DMG up
  4301. 224:Cricket's Body - Splash damage + tears up
  4302. 415:Crown of Light - The untainted gain power
  4303. 158:Crystal Ball - I see my future
  4304. 73:Cube of Meat - Gotta meat 'em all
  4305. 48:Cupid's Arrow - Piercing shots
  4306. 371:Curse of the Tower - You feel cursed...
  4307. 316:Cursed Eye - Cursed charge shot
  4308. 285:D10 - Reroll enemies
  4309. 283:D100 - REEROLLLLL!
  4310. 386:D12 - Rerolls rocks
  4311. 166:D20 - Reroll the basics
  4312. 284:D4 - Reroll into something else
  4313. 437:D7 - Reroll Rewards!
  4314. 406:D8 - Reroll stats
  4315. 175:Dad's Key - Opens all doors...
  4316. 170:Daddy Longlegs - Daddy's love
  4317. 278:Dark Bum - He wants to take your life
  4318. 259:Dark Matter - Fear shot
  4319. 117:Dead Bird - Protective buddy
  4320. 81:Dead Cat - 9 lives
  4321. 185:Dead Dove - Flight + spectral tears
  4322. 373:Dead Eye - Accuracy brings power!
  4323. 336:Dead Onion - Toxic aura tears
  4324. 124:Dead Sea Scrolls - It's a mystery
  4325. 237:Death's Touch - Penetrative shot + DMG up
  4326. 85:Deck of Cards - Reusable card generator
  4327. 416:Deep Pockets - More stuff to carry!
  4328. 113:Demon Baby - Auto-turret friend
  4329. 24:Dessert - HP up
  4330. 23:Dinner - HP up
  4331. 347:Diplopia - Double item vision
  4332. 57:Distant Admiration - Attack fly
  4333. 47:Doctor's Remote - Reusable air strike
  4334. 52:Dr. Fetus - ???
  4335. 265:Dry Baby - Immortal friend
  4336. 236:E. Coli - Turdy touch
  4337. 381:Eden's Blessing - Your future shines brighter
  4338. 409:Empty Vessel - I reward an empty vessel
  4339. 168:Epic Fetus - On-demand air strike
  4340. 368:Epiphora - Intensifying tears
  4341. 310:Eve's Mascara - Shot speed down + DMG up
  4342. 410:Evil Eye - Eye shot!
  4343. 240:Experimental Treatment - All stats up... then shuffled
  4344. 401:Explosivo - Sticky bomb shot!
  4345. 204:Fanny Pack - Filled with goodies
  4346. 404:Farting Baby - He farts!
  4347. 179:Fate - Flight eternal
  4348. 361:Fate's reward - Your fate beside you
  4349. 257:Fire Mind - Flaming tears
  4350. 291:Flush! - ...
  4351. 128:Forever alone - Attack fly
  4352. 127:Forget Me Now - I don't remember...
  4353. 364:Friend Zone - Friendly fly
  4354. 382:Friendly Ball - Gotta fetch 'em all!
  4355. 418:Fruit Cake - Rainbow Effects!
  4356. 405:GB Bug - Game breaking bug, right away!
  4357. 318:Gemini - Conjoined friend
  4358. 163:Ghost Baby - Spectral buddy
  4359. 225:Gimpy - Sweet suffering
  4360. 352:Glass Cannon - Be gentle...
  4361. 432:Glitter Bombs - Prize Bombs!
  4362. 422:Glowing Hour Glass - Turn back time
  4363. 210:Gnawed Leaf - Unbreakable
  4364. 215:Goat Head - He accepts your offering
  4365. 331:Godhead - God tears
  4366. 398:God's Flesh - Shrink shot!
  4367. 70:Growth Hormones - Speed + DMG up
  4368. 112:Guardian Angel - Extra protection
  4369. 206:Guillotine - An out-of-body experience
  4370. 212:Guppy's Collar - Eternal life?
  4371. 187:Guppy's Hairball - Swing it
  4372. 145:Guppy's Head - Reusable fly hive
  4373. 133:Guppy's Paw - Soul converter
  4374. 134:Guppy's Tail - Cursed?
  4375. 156:Habit - Item martyr
  4376. 10:Halo of Flies - Projectile protection
  4377. 167:Harlequin Baby - Double shot buddy
  4378. 293:Head of Krampus - Krampus rage
  4379. 429:Head of the Keeper - Penny tears!
  4380. 269:Headless Baby - Bloody friend
  4381. 248:Hive Mind - Giant spiders and flies
  4382. 184:Holy Grail - Flight + HP up
  4383. 374:Holy Light - Holy shot!
  4384. 313:Holy Mantle - Holy shield
  4385. 178:Holy Water - Splash!
  4386. 375:Host Hat - Nice hat!
  4387. 256:Hot Bombs - Burning blast +5 bombs
  4388. 282:How to Jump - It's time you learned how
  4389. 203:Humbleing Bundle - 1+1 free 4Evar
  4390. 413:Immaculate Conception - Feed them love
  4391. 360:Incubus - Dark friend
  4392. 242:Infamy - Damage reduction
  4393. 148:Infestation - They grow inside
  4394. 234:Infestation 2 - Infestation shot
  4395. 149:Ipecac - Explosive shots
  4396. 201:Iron Bar - Concussive tears
  4397. 276:Isaac's Heart - Protect it
  4398. 323:Isaac's Tears - Collected tears
  4399. 135:IV Bag - Portable blood bank
  4400. 434:Jar of Flies - gotta catch 'em all?
  4401. 197:Jesus Juice - Damage + range up
  4402. 311:Judas' Shadow - Sweet revenge
  4403. 266:Juicy Sack - Sticky babies
  4404. 40:Kamikaze! - Become the bomb!
  4405. 388:Key Bum - He wants your keys!
  4406. 238:Key Piece 1 - ???
  4407. 239:Key Piece 2 - ???
  4408. 421:Kidney Bean - Love Toots!
  4409. 440:Kidney Stone - Matt's Kidney Stone
  4410. 343:Latch Key - Luck up
  4411. 332:Lazarus' Rags - Eternal life?
  4412. 270:Leech - Blood sucker
  4413. 56:Lemon Mishap - Oops...
  4414. 302:Leo - Stompy
  4415. 304:Libra - You feel balanced
  4416. 362:Lil Chest - What's in the box?
  4417. 384:Lil Gurdy - A gurd of your own!
  4418. 435:Lil Loki - 4-way buddy!
  4419. 275:Lil' Brimstone - Evil friend
  4420. 277:Lil' Haunt - Fear him
  4421. 252:Little Baggy - Extra pill room
  4422. 96:Little C.H.A.D. - Gives kisses
  4423. 88:Little Chubby - Attack buddy
  4424. 99:Little Gish - Sticky friend
  4425. 100:Little Steven - Psychic friend
  4426. 87:Loki's Horns - Cross tears
  4427. 82:Lord of the Pit - Demon wings
  4428. 213:Lost Contact - Shielded tears
  4429. 365:Lost Fly - Lost protector
  4430. 46:Lucky Foot - Luck up
  4431. 22:Lunch - HP up
  4432. 411:Lusty Blood - Their blood brings rage!
  4433. 312:Maggy's Bow - HP up + you feel healthy
  4434. 194:Magic 8 Ball - Shot speed up
  4435. 295:Magic Fingers - Pay to play
  4436. 12:Magic Mushroom - All stats up!
  4437. 253:Magic Scab - HP + luck up
  4438. 53:Magneto - Item snatcher
  4439. 394:Marked - Directed tears
  4440. 344:Match Book - Evil up
  4441. 399:Maw Of The Void - Consume thy enemy!
  4442. 193:MEAT! - DMG + HP up
  4443. 351:Mega Bean - Giga Fart!
  4444. 441:Mega Blast - Laser breath
  4445. 202:Midas' Touch - Golden touch
  4446. 436:Milk! - Don't cry over it...
  4447. 427:Mine Crafter - Booom!
  4448. 71:Mini Mush - Speed + range up
  4449. 258:Missing No. - Syntax error
  4450. 262:Missing Page 2 - Evil up. Your enemies will pay!
  4451. 173:Mitre - You feel blessed
  4452. 102:Mom's Bottle of Pills - Reusable pill generator
  4453. 439:Mom's Box - What's inside?
  4454. 39:Mom's Bra - Mass fear
  4455. 195:Mom's Coin Purse - What's all this...?
  4456. 110:Mom's Contacts - Freeze effect
  4457. 55:Mom's Eye - Eye in the back of your head
  4458. 200:Mom's Eyeshadow - Charm tears
  4459. 30:Mom's Heels - Range up
  4460. 199:Mom's Key - Less is now more +2 keys
  4461. 114:Mom's Knife - Stab stab stab
  4462. 31:Mom's Lipstick - Range up
  4463. 41:Mom's Pad - Gross...
  4464. 355:Mom's Pearls - Range + luck up
  4465. 228:Mom's Perfume - Fear shot
  4466. 139:Mom's Purse - More trinket room
  4467. 29:Mom's Underwear - Range up
  4468. 217:Mom's Wig - You feel itchy...
  4469. 109:Money = Power - $$$ = DMG
  4470. 322:Mongo Baby - Mongo friend
  4471. 123:Monster Manual - Temporary buddy generator
  4472. 229:Monstro's Lung - Charged attack
  4473. 86:Monstro's Tooth - Summon Monstro
  4474. 414:More Options - There are even more options!
  4475. 37:Mr. Boom - Reusable bomb buddy
  4476. 106:Mr. Mega - Blast damage
  4477. 370:Mr. Dolly - Range + tears up
  4478. 431:Multidimensional Baby - ydduB Buddy
  4479. 153:Mutant Spider - Quad shot
  4480. 5:My Reflection - Boomerang tears
  4481. 77:My Little Unicorn - Temporary badass
  4482. 433:My Shadow - Me! and my shaaaadow!
  4483. 317:Mysterious Liquid - Toxic splash damage
  4484. 271:Mystery Sack - ?
  4485. 425:Night Light - scared of the dark?
  4486. 378:No. 2 - Uh oh...
  4487. 0:-None-
  4488. 147:Notched Axe - Rocks don't stand a chance
  4489. 6:Number One - Tears up
  4490. 426:Obsessed Fan - Follows my every move...
  4491. 121:Odd Mushroom - DMG up
  4492. 120:Odd Mushroom - Fire rate up
  4493. 219:Old Bandage - HP up
  4494. 115:Ouija Board - Spectral tears
  4495. 141:Pageant Boy - Ultimate grand supreme
  4496. 297:Pandora's Box - ? ?
  4497. 430:Papa Fly - Turret follower
  4498. 380:Pay To Play - Money talks
  4499. 51:Pentagram - DMG up
  4500. 75:PHD - Better pills
  4501. 227:Piggy Bank - My life savings
  4502. 309:Pisces - Tears up + knock-back shot
  4503. 428:PJs - You feel cozy
  4504. 348:Placebo - Pill mimic
  4505. 218:Placenta - Regeneration + HP up
  4506. 169:Polyphemus - Mega tears
  4507. 177:Portable Slot - Gamble 24/7
  4508. 146:Prayer Card - Reusable eternity
  4509. 261:Proptosis - Short range mega tears
  4510. 281:Punching Bag - Scape goat
  4511. 379:Pupula Duplex - Wide shot
  4512. 407:Purity - Aura stat boost
  4513. 190:Pyro - 99 bombs
  4514. 223:Pyromaniac - It hurts so good +5 bombs
  4515. 174:Rainbow Baby - Random buddy
  4516. 16:Raw Liver - HP up
  4517. 126:Razor Blade - Feel my pain
  4518. 289:Red Candle - Flame on
  4519. 137:Remote Detonator - Remote bomb detonation
  4520. 376:Restock - Never ending stores!
  4521. 95:Robo-Baby - Friends 'till the bbbbzzzt
  4522. 267:Robo-Baby 2.0 - We worked out all the kinks
  4523. 14:Roid Rage - Speed and range up
  4524. 72:Rosary - Faith up
  4525. 26:Rotten Meat - HP up
  4526. 268:Rotten Baby - Infested friend
  4527. 221:Rubber Cement - Bouncing tears
  4528. 389:Rune Bag - Rune generator
  4529. 94:Sack of Pennies - Gives money
  4530. 424:Sack Head - More sacks!
  4531. 182:Sacred Heart - Homing shots + DMG up
  4532. 172:Sacrificial Dagger - My fate protects me
  4533. 220:Sad Bombs - Tear blasts +5 bombs
  4534. 339:Safety Pin - Evil + range + shot speed up
  4535. 306:Sagittarius - Penetrative shot + speed up
  4536. 321:Samson's Chains - The ol' ball and chain
  4537. 292:Satanic Bible - Reusable evil
  4538. 142:Scapular - You have been blessed
  4539. 366:Scatter Bombs - We put bombs in your bombs!
  4540. 325:Scissors - Lose your head
  4541. 305:Scorpio - Poison tears
  4542. 255:Screw - Tears + shot speed up
  4543. 390:Seraphim - Sworn friend
  4544. 393:Serpent's Kiss - The kiss of death
  4545. 205:Sharp Plug - Charge with blood
  4546. 49:Shoop da Whoop! - BLLLARRRRGGG!
  4547. 280:Sissy Longlegs - She loves you
  4548. 67:Sister Maggy - Friends 'till the end
  4549. 9:Skatole - Fly love
  4550. 17:Skeleton Key - 99 keys
  4551. 264:Smart Fly - Revenge fly
  4552. 189:SMB Super Fan - All stats up
  4553. 330:Soy Milk - DMG down + tears way up
  4554. 400:Spear Of Destiny - Your destiny
  4555. 143:Speed Ball - Speed + shot speed up
  4556. 91:Spelunker Hat - See-through doors
  4557. 89:Spider Bite - Slow effect
  4558. 171:Spider Butt - Mass enemy slowdown + damage
  4559. 403:Spider Mod - Mod buddy!
  4560. 211:Spiderbaby - Spider revenge
  4561. 159:Spirit of the Night - Scary
  4562. 3:Spoon Bender - Homing shots
  4563. 196:Squeezy - Tears up
  4564. 251:Starter Deck - Extra card room
  4565. 64:Steam Sale - 50% off
  4566. 176:Stem Cells - HP up
  4567. 50:Steven - DMG up
  4568. 367:Sticky Bombs - Egg sack bombs!
  4569. 138:Stigmata - DMG + HP up
  4570. 232:Stop Watch - Let's slow this down a bit...
  4571. 315:Strange Attractor - Magnetic tears
  4572. 417:Succubus - Damage booster
  4573. 92:Super Bandage - +2 hearts
  4574. 363:Sworn Protector - Protective friend
  4575. 345:Synthoil - DMG + range up
  4576. 38:Tammy's Head - Reusable tear burst
  4577. 299:Taurus - Speed down + rage is building
  4578. 383:Tear Detonator - Remote tear detonation
  4579. 395:Tech X - Laser ring tears
  4580. 244:Tech.5 - It's still being tested...
  4581. 68:Technology - Laser tears
  4582. 152:Technology 2 - Laser
  4583. 192:Telepathy For Dummies - Temporary psychic shot
  4584. 44:Teleport! - Teleport!
  4585. 419:Teleport 2.0 - I-teleport!
  4586. 63:The Battery - Stores energy
  4587. 111:The Bean - Toot on command
  4588. 28:The Belt - Speed up
  4589. 33:The Bible - Temporary flight
  4590. 180:The Black Bean - Toot on touch
  4591. 334:The Body - I feel all
  4592. 34:The Book of Belial - Temporary DMG up
  4593. 97:The Book of Sin - Reusable item generator
  4594. 338:The Boomerang - It will never leave you
  4595. 164:The Candle - Reusable flames
  4596. 103:The Common Cold - Poison damage
  4597. 21:The Compass - The end is near
  4598. 105:The D6 - Reroll your destiny
  4599. 93:The Gamekid - Temporary Man-Pac
  4600. 101:The Halo - All stats up
  4601. 66:The Hourglass - Temporary enemy slowdown
  4602. 2:The Inner Eye - Triple shot
  4603. 290:The Jar - Save your life
  4604. 60:The Ladder - Building bridges
  4605. 329:The Ludovico Technique - Controlled tears
  4606. 79:The Mark - DMG up
  4607. 333:The Mind - I know all
  4608. 151:The Mulligan - They grow inside
  4609. 83:The Nail - Temporary demon form
  4610. 35:The Necronomicon - Mass room damage
  4611. 328:The Negative - Fate chosen
  4612. 80:The Pact - DMG + tears up
  4613. 104:The Parasite - Split shot
  4614. 155:The Peeper - Plop!
  4615. 107:The Pinking Shears - Cut and run
  4616. 327:The Polaroid - Fate chosen
  4617. 36:The Poop - Plop!
  4618. 98:The Relic - Soul generator
  4619. 1:The Sad Onion - Tears up
  4620. 90:The Small Rock - DMG up
  4621. 335:The Soul - I am all
  4622. 13:The Virus - Poison touch
  4623. 108:The Wafer - Damage resistance
  4624. 358:The Wiz - Double wiz shot!
  4625. 249:There's Options - More options
  4626. 314:Thunder Thighs - HP up + speed down + you feel stompy
  4627. 233:Tiny Planet - Orbiting tears + range up
  4628. 183:Tooth Picks - Tears + shot speed up
  4629. 341:Torn Photo - Tears + shot speed up
  4630. 150:Tough Love - Tooth shot
  4631. 350:Toxic Shock - Mass poison
  4632. 397:Tractor Beam - Controlled tears
  4633. 20:Transcendence - We all float down here...
  4634. 54:Treasure Map - Full visible map
  4635. 243:Trinity Shield - You feel guarded
  4636. 324:Undefined - Undefined
  4637. 298:Unicorn Stump - You feel stumped
  4638. 396:Ventricle Razor - Short cutter
  4639. 303:Virgo - You feel refreshed and protected
  4640. 84:We Need To Go Deeper! - Reusable level skip
  4641. 181:White Pony - Flight + holy death
  4642. 122:Whore of Babylon - Curse up
  4643. 32:Wire Coat Hanger - Tears up
  4644. 27:Wooden Spoon - Speed up
  4645. 349:Wooden Nickel - Flip a coin
  4646. 76:X-Ray Vision - I've seen everything
  4647. 45:Yum Heart - Reusable regeneration
  4648. 392:Zodiac - The heavens will change you
  4649. </DropDownList>
  4650. <LastState Value="??" Activated="0" RealAddress="03A80000"/>
  4651. <Color>80000008</Color>
  4652. <VariableType>4 Bytes</VariableType>
  4653. <Address>PedScript</Address>
  4654. </CheatEntry>
  4655. </CheatEntries>
  4656. </CheatEntry>
  4657. <CheatEntry>
  4658. <ID>413</ID>
  4659. <Description>"Misc Scripts"</Description>
  4660. <Options moHideChildren="1"/>
  4661. <LastState Value="" Activated="0" RealAddress="00000000"/>
  4662. <Color>008000</Color>
  4663. <GroupHeader>1</GroupHeader>
  4664. <CheatEntries>
  4665. <CheatEntry>
  4666. <ID>921</ID>
  4667. <Description>"Devil / Angel Deals"</Description>
  4668. <Options moHideChildren="1"/>
  4669. <LastState Value="" Activated="0" RealAddress="00000000"/>
  4670. <Color>FF0000</Color>
  4671. <GroupHeader>1</GroupHeader>
  4672. <CheatEntries>
  4673. <CheatEntry>
  4674. <ID>319</ID>
  4675. <Description>"Devil Room always possible"</Description>
  4676. <LastState Activated="0"/>
  4677. <Color>80000008</Color>
  4678. <VariableType>Auto Assembler Script</VariableType>
  4679. <AssemblerScript>{ by HenryEx
  4680. for The Binding of Isaac: Afterbirth
  4681.  
  4682. Devil rooms can now spawn even on floor 1 and past the Womb.
  4683. }
  4684.  
  4685. [ENABLE]
  4686. aobscanmodule(AOB_UnblockDR,isaac-ng.exe,84 C0 0F 84 xx xx xx xx 8B 3D xx xx xx xx 8B 87)
  4687. registersymbol(AOB_UnblockDR)
  4688.  
  4689. AOB_UnblockDR+2:
  4690. db EB 04
  4691. // jmp +4
  4692.  
  4693. [DISABLE]
  4694. AOB_UnblockDR+2:
  4695. db 0F 84
  4696. // je long (isaac-ng.exe+13B483)
  4697.  
  4698. unregistersymbol(AOB_UnblockDR)
  4699.  
  4700. {
  4701. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+13B248
  4702.  
  4703. "isaac-ng.exe"+13B228: 56 - push esi
  4704. "isaac-ng.exe"+13B229: 57 - push edi
  4705. "isaac-ng.exe"+13B22A: A1 18 F0 0C 01 - mov eax,[isaac-ng.exe+2CF018]
  4706. "isaac-ng.exe"+13B22F: 33 C5 - xor eax,ebp
  4707. "isaac-ng.exe"+13B231: 50 - push eax
  4708. "isaac-ng.exe"+13B232: 8D 45 F4 - lea eax,[ebp-0C]
  4709. "isaac-ng.exe"+13B235: 64 A3 00 00 00 00 - mov fs:[00000000],eax
  4710. "isaac-ng.exe"+13B23B: 8B 35 04 F6 0D 01 - mov esi,[isaac-ng.exe+2DF604]
  4711. "isaac-ng.exe"+13B241: E8 5A B6 FB FF - call isaac-ng.exe+F68A0
  4712. "isaac-ng.exe"+13B246: 84 C0 - test al,al
  4713. // ---------- INJECTING HERE ----------
  4714. "isaac-ng.exe"+13B248: 0F 84 35 02 00 00 - je isaac-ng.exe+13B483
  4715. // ---------- DONE INJECTING ----------
  4716. "isaac-ng.exe"+13B24E: 8B 3D 04 F6 0D 01 - mov edi,[isaac-ng.exe+2DF604]
  4717. "isaac-ng.exe"+13B254: 8B 87 D8 B7 00 00 - mov eax,[edi+0000B7D8]
  4718. "isaac-ng.exe"+13B25A: 2B 87 D4 B7 00 00 - sub eax,[edi+0000B7D4]
  4719. "isaac-ng.exe"+13B260: 8D B7 D4 B7 00 00 - lea esi,[edi+0000B7D4]
  4720. "isaac-ng.exe"+13B266: A9 FC FF FF FF - test eax,FFFFFFFC
  4721. "isaac-ng.exe"+13B26B: 75 15 - jne isaac-ng.exe+13B282
  4722. "isaac-ng.exe"+13B26D: 68 5C CA 06 01 - push isaac-ng.exe+26CA5C
  4723. "isaac-ng.exe"+13B272: 6A 00 - push 00
  4724. "isaac-ng.exe"+13B274: E8 77 DC 09 00 - call isaac-ng.exe+1D8EF0
  4725. "isaac-ng.exe"+13B279: 8B 3D 04 F6 0D 01 - mov edi,[isaac-ng.exe+2DF604]
  4726. }
  4727. </AssemblerScript>
  4728. </CheatEntry>
  4729. <CheatEntry>
  4730. <ID>306</ID>
  4731. <Description>"100% chance for Devil/Angel Room"</Description>
  4732. <LastState Activated="0"/>
  4733. <Color>80000008</Color>
  4734. <VariableType>Auto Assembler Script</VariableType>
  4735. <AssemblerScript>{ by HenryEx
  4736. for The Binding of Isaac: Afterbirth
  4737.  
  4738. This will always open up the Devil/Angel room when it's possible.
  4739. }
  4740.  
  4741. [ENABLE]
  4742. aobscanmodule(AOB_AlwaysDR,isaac-ng.exe,E8 * * * * D9 45 * D8 D1 DF E0 DD D9)
  4743. alloc(AlwaysDR,256)
  4744.  
  4745. registersymbol(AOB_AlwaysDR)
  4746. label(_BackDR)
  4747.  
  4748. AOB_AlwaysDR+8:
  4749. jmp AlwaysDR
  4750. nop
  4751. _BackDR:
  4752.  
  4753.  
  4754. AlwaysDR:
  4755. fstp st(0) // pop off old chance
  4756. fld1 // load up 1 instead
  4757. fcom st(0),st(1) // Original code
  4758. fnstsw ax
  4759. fstp st(1)
  4760. jmp _BackDR
  4761.  
  4762. [DISABLE]
  4763. AOB_AlwaysDR+8:
  4764. fcom st(0),st(1)
  4765. fnstsw ax
  4766. fstp st(1)
  4767. // db D8 D1 DF E0 DD D9
  4768.  
  4769. unregistersymbol(AOB_AlwaysDR)
  4770. dealloc(AlwaysDR)
  4771.  
  4772. {
  4773. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+13B463
  4774.  
  4775. "isaac-ng.exe"+13B441: 83 BE 3C 70 00 00 0B - cmp dword ptr [esi+0000703C],0B
  4776. "isaac-ng.exe"+13B448: 72 04 - jb isaac-ng.exe+13B44E
  4777. "isaac-ng.exe"+13B44A: DD D8 - fstp st(0)
  4778. "isaac-ng.exe"+13B44C: D9 E8 - fld1
  4779. "isaac-ng.exe"+13B44E: D9 5D F0 - fstp dword ptr [ebp-10]
  4780. "isaac-ng.exe"+13B451: EB 02 - jmp isaac-ng.exe+13B455
  4781. "isaac-ng.exe"+13B453: DD D8 - fstp st(0)
  4782. "isaac-ng.exe"+13B455: 81 C6 FC 6F 00 00 - add esi,00006FFC
  4783. "isaac-ng.exe"+13B45B: E8 70 95 FF FF - call isaac-ng.exe+1349D0
  4784. "isaac-ng.exe"+13B460: D9 45 F0 - fld dword ptr [ebp-10]
  4785. // ---------- INJECTING HERE ----------
  4786. "isaac-ng.exe"+13B463: D8 D1 - fcom st(0),st(1)
  4787. "isaac-ng.exe"+13B465: DF E0 - fnstsw ax
  4788. "isaac-ng.exe"+13B467: DD D9 - fstp st(1)
  4789. // ---------- DONE INJECTING ----------
  4790. "isaac-ng.exe"+13B469: F6 C4 41 - test ah,41
  4791. "isaac-ng.exe"+13B46C: 74 2B - je isaac-ng.exe+13B499
  4792. "isaac-ng.exe"+13B46E: D9 E8 - fld1
  4793. "isaac-ng.exe"+13B470: DE D9 - fcompp
  4794. "isaac-ng.exe"+13B472: DF E0 - fnstsw ax
  4795. "isaac-ng.exe"+13B474: F6 C4 41 - test ah,41
  4796. "isaac-ng.exe"+13B477: 7B 22 - jnp isaac-ng.exe+13B49B
  4797. "isaac-ng.exe"+13B479: 8B 15 04 F6 67 01 - mov edx,[isaac-ng.exe+2DF604]
  4798. "isaac-ng.exe"+13B47F: C6 42 09 01 - mov byte ptr [edx+09],01
  4799. "isaac-ng.exe"+13B483: 32 C0 - xor al,al
  4800. }
  4801. </AssemblerScript>
  4802. </CheatEntry>
  4803. <CheatEntry>
  4804. <ID>842</ID>
  4805. <Description>"No Angel Room Spawn Conditions"</Description>
  4806. <LastState Activated="0"/>
  4807. <Color>80000008</Color>
  4808. <VariableType>Auto Assembler Script</VariableType>
  4809. <AssemblerScript>{ by HenryEx
  4810. for The Binding of Isaac: Rebirth
  4811.  
  4812. This removes the "seen devil room before and didn't take deals"
  4813. requirement, so your first devil room can be an angel room
  4814. and taking devil deals won't lock you out of angel rooms.
  4815. }
  4816.  
  4817. [ENABLE]
  4818. aobscanmodule(AOB_UnblockAR,isaac-ng.exe,74 * 39 * * * * * 75 * 8D 41 01 EB)
  4819. registersymbol(AOB_UnblockAR)
  4820.  
  4821. AOB_UnblockAR:
  4822. db EB 08
  4823. // jmp +08
  4824.  
  4825. [DISABLE]
  4826. AOB_UnblockAR:
  4827. db 74 0D
  4828. // je +13
  4829.  
  4830. unregistersymbol(AOB_UnblockAR)
  4831.  
  4832. {
  4833. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+F6CDF
  4834.  
  4835. "isaac-ng.exe"+F6CC0: 24 01 - and al,01
  4836. "isaac-ng.exe"+F6CC2: 3A C8 - cmp cl,al
  4837. "isaac-ng.exe"+F6CC4: 75 06 - jne isaac-ng.exe+F6CCC
  4838. "isaac-ng.exe"+F6CC6: 8A 55 F0 - mov dl,[ebp-10]
  4839. "isaac-ng.exe"+F6CC9: 88 55 F3 - mov [ebp-0D],dl
  4840. "isaac-ng.exe"+F6CCC: 8B 3D 04 F6 0D 01 - mov edi,[isaac-ng.exe+2DF604]
  4841. "isaac-ng.exe"+F6CD2: 8B 87 C8 4D 17 00 - mov eax,[edi+00174DC8]
  4842. "isaac-ng.exe"+F6CD8: 83 E0 20 - and eax,20
  4843. "isaac-ng.exe"+F6CDB: 33 C9 - xor ecx,ecx
  4844. "isaac-ng.exe"+F6CDD: 0B C1 - or eax,ecx
  4845. // ---------- JUMPING HERE ----------
  4846. "isaac-ng.exe"+F6CDF: 74 0D - je isaac-ng.exe+F6CEE
  4847. // ---------- JUMPING HERE ----------
  4848. "isaac-ng.exe"+F6CE1: 39 8F E4 4D 17 00 - cmp [edi+00174DE4],ecx
  4849. "isaac-ng.exe"+F6CE7: 75 05 - jne isaac-ng.exe+F6CEE
  4850. "isaac-ng.exe"+F6CE9: 8D 41 01 - lea eax,[ecx+01]
  4851. "isaac-ng.exe"+F6CEC: EB 02 - jmp isaac-ng.exe+F6CF0
  4852. "isaac-ng.exe"+F6CEE: 33 C0 - xor eax,eax
  4853. "isaac-ng.exe"+F6CF0: 20 45 F3 - and [ebp-0D],al
  4854. "isaac-ng.exe"+F6CF3: 8B 07 - mov eax,[edi]
  4855. "isaac-ng.exe"+F6CF5: 89 45 E8 - mov [ebp-18],eax
  4856. "isaac-ng.exe"+F6CF8: E8 63 E4 FD FF - call isaac-ng.exe+D5160
  4857. "isaac-ng.exe"+F6CFD: 8B D8 - mov ebx,eax
  4858. "isaac-ng.exe"+F6CFF: 0B 5E 0C - or ebx,[esi+0C]
  4859. }
  4860. </AssemblerScript>
  4861. </CheatEntry>
  4862. <CheatEntry>
  4863. <ID>843</ID>
  4864. <Description>"Get Angel instead of Devil Room"</Description>
  4865. <LastState Activated="0"/>
  4866. <Color>80000008</Color>
  4867. <VariableType>Auto Assembler Script</VariableType>
  4868. <AssemblerScript>{ by HenryEx
  4869. for The Binding of Isaac: Afterbirth
  4870.  
  4871. This will set the Angel Room chance to appear to 100%, but the usual
  4872. conditions for its appearance still need to be true.
  4873. }
  4874.  
  4875. [ENABLE]
  4876. aobscanmodule(AOB_AlwaysAR,isaac-ng.exe,EB 02 33 C0 20 45 F3 8B 0F 89 4D E8)
  4877. alloc(AlwaysAR,256)
  4878.  
  4879. registersymbol(AOB_AlwaysAR)
  4880. label(_BackAR)
  4881.  
  4882. AOB_AlwaysAR+7:
  4883. jmp AlwaysAR
  4884. _BackAR:
  4885.  
  4886.  
  4887. AlwaysAR:
  4888. mov al,1
  4889. and [ebp-0D],al
  4890. mov ecx,[edi]
  4891. mov [ebp-18],ecx
  4892. jmp _BackAR
  4893.  
  4894. [DISABLE]
  4895. AOB_AlwaysAR+7:
  4896. mov ecx,[edi]
  4897. mov [ebp-18],ecx
  4898. // db 8B 0F 89 4D E8
  4899.  
  4900. unregistersymbol(AOB_AlwaysAR)
  4901. dealloc(AlwaysAR)
  4902.  
  4903. {
  4904. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+F9263
  4905. "isaac-ng.exe"+F9242: 8B 87 88 4D 17 00 - mov eax,[edi+00174D88]
  4906. "isaac-ng.exe"+F9248: 83 E0 20 - and eax,20
  4907. "isaac-ng.exe"+F924B: 33 C9 - xor ecx,ecx
  4908. "isaac-ng.exe"+F924D: 0B C1 - or eax,ecx
  4909. "isaac-ng.exe"+F924F: 74 0D - je isaac-ng.exe+F925E
  4910. "isaac-ng.exe"+F9251: 39 8F A4 4D 17 00 - cmp [edi+00174DA4],ecx
  4911. "isaac-ng.exe"+F9257: 75 05 - jne isaac-ng.exe+F925E
  4912. "isaac-ng.exe"+F9259: 8D 41 01 - lea eax,[ecx+01]
  4913. "isaac-ng.exe"+F925C: EB 02 - jmp isaac-ng.exe+F9260
  4914. "isaac-ng.exe"+F925E: 33 C0 - xor eax,eax
  4915. "isaac-ng.exe"+F9260: 20 45 F3 - and [ebp-0D],al
  4916. // ---------- INJECTING HERE ----------
  4917. "isaac-ng.exe"+F9263: 8B 0F - mov ecx,[edi]
  4918. "isaac-ng.exe"+F9265: 89 4D E8 - mov [ebp-18],ecx
  4919. // ---------- DONE INJECTING ----------
  4920. "isaac-ng.exe"+F9268: E8 43 DA FD FF - call isaac-ng.exe+D6CB0
  4921. "isaac-ng.exe"+F926D: 8B 55 08 - mov edx,[ebp+08]
  4922. "isaac-ng.exe"+F9270: 8B D8 - mov ebx,eax
  4923. "isaac-ng.exe"+F9272: 0B 5A 0C - or ebx,[edx+0C]
  4924. "isaac-ng.exe"+F9275: E8 56 DB FD FF - call isaac-ng.exe+D6DD0
  4925. "isaac-ng.exe"+F927A: F7 D0 - not eax
  4926. "isaac-ng.exe"+F927C: 23 D8 - and ebx,eax
  4927. "isaac-ng.exe"+F927E: F6 C3 02 - test bl,02
  4928. "isaac-ng.exe"+F9281: 74 03 - je isaac-ng.exe+F9286
  4929. "isaac-ng.exe"+F9283: FF 45 E8 - inc [ebp-18]
  4930. }
  4931. </AssemblerScript>
  4932. </CheatEntry>
  4933. </CheatEntries>
  4934. </CheatEntry>
  4935. <CheatEntry>
  4936. <ID>922</ID>
  4937. <Description>"Gambling / Stores related"</Description>
  4938. <Options moHideChildren="1"/>
  4939. <LastState Value="" Activated="0" RealAddress="00000000"/>
  4940. <Color>FF0000</Color>
  4941. <GroupHeader>1</GroupHeader>
  4942. <CheatEntries>
  4943. <CheatEntry>
  4944. <ID>408</ID>
  4945. <Description>"Guaranteed Bum Reward"</Description>
  4946. <LastState Activated="0"/>
  4947. <Color>80000008</Color>
  4948. <VariableType>Auto Assembler Script</VariableType>
  4949. <AssemblerScript>{ by HenryEx
  4950. for The Binding of Isaac: Afterbirth
  4951.  
  4952. Bums should always give a reward with this
  4953. }
  4954.  
  4955. [ENABLE]
  4956. aobscanmodule(AOB_Bum,isaac-ng.exe,39 83 * * * * 7E * 6A 02 E8)
  4957. registersymbol(AOB_Bum)
  4958.  
  4959. AOB_Bum:
  4960. db EB 06
  4961. // jmp short +6
  4962.  
  4963. [DISABLE]
  4964.  
  4965. AOB_Bum:
  4966. db 39 83
  4967. // cmp [ebx+00000B9C],eax
  4968.  
  4969. unregistersymbol(AOB_Bum)
  4970.  
  4971. {
  4972. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9C6EB
  4973.  
  4974. "isaac-ng.exe"+9C6C5: 03 C7 - add eax,edi
  4975. "isaac-ng.exe"+9C6C7: 83 BA 20 50 17 00 01 - cmp dword ptr [edx+00175020],01
  4976. "isaac-ng.exe"+9C6CE: 89 44 24 10 - mov [esp+10],eax
  4977. "isaac-ng.exe"+9C6D2: 75 17 - jne isaac-ng.exe+9C6EB
  4978. "isaac-ng.exe"+9C6D4: 83 F8 05 - cmp eax,05
  4979. "isaac-ng.exe"+9C6D7: C7 44 24 0C 05 00 00 00 - mov [esp+0C],00000005
  4980. "isaac-ng.exe"+9C6DF: 8D 44 24 10 - lea eax,[esp+10]
  4981. "isaac-ng.exe"+9C6E3: 7F 04 - jg isaac-ng.exe+9C6E9
  4982. "isaac-ng.exe"+9C6E5: 8D 44 24 0C - lea eax,[esp+0C]
  4983. "isaac-ng.exe"+9C6E9: 8B 00 - mov eax,[eax]
  4984. // ---------- REPLACING HERE ----------
  4985. "isaac-ng.exe"+9C6EB: 39 83 9C 0B 00 00 - cmp [ebx+00000B9C],eax
  4986. // ---------- REPLACING HERE ----------
  4987. "isaac-ng.exe"+9C6F1: 7E 3C - jle isaac-ng.exe+9C72F
  4988. "isaac-ng.exe"+9C6F3: 6A 02 - push 02
  4989. "isaac-ng.exe"+9C6F5: E8 86 82 09 00 - call isaac-ng.exe+134980
  4990. "isaac-ng.exe"+9C6FA: 8B 35 04 F6 0D 01 - mov esi,[isaac-ng.exe+2DF604]
  4991. "isaac-ng.exe"+9C700: 83 C0 02 - add eax,02
  4992. "isaac-ng.exe"+9C703: 33 FF - xor edi,edi
  4993. "isaac-ng.exe"+9C705: 89 83 9C 0B 00 00 - mov [ebx+00000B9C],eax
  4994. "isaac-ng.exe"+9C70B: E8 20 43 F7 FF - call isaac-ng.exe+10A30
  4995. "isaac-ng.exe"+9C710: 39 B8 3C 1E 00 00 - cmp [eax+00001E3C],edi
  4996. "isaac-ng.exe"+9C716: 7E 06 - jle isaac-ng.exe+9C71E
  4997. }
  4998. </AssemblerScript>
  4999. </CheatEntry>
  5000. <CheatEntry>
  5001. <ID>830</ID>
  5002. <Description>"Win shell game"</Description>
  5003. <LastState Activated="0"/>
  5004. <Color>80000008</Color>
  5005. <VariableType>Auto Assembler Script</VariableType>
  5006. <AssemblerScript>{ by HenryEx
  5007. for The Binding of Isaac: Afterbirth
  5008.  
  5009. Rigs the shell game in your favor.
  5010. }
  5011.  
  5012. [ENABLE]
  5013. aobscanmodule(AOB_Shell,isaac-ng.exe,6A 03 8B F3 89 5C 24 * E8 * * * * 85 C0 0F 84)
  5014. registersymbol(AOB_Shell)
  5015.  
  5016. AOB_Shell+F:
  5017. db 90 E9
  5018.  
  5019. [DISABLE]
  5020. AOB_Shell+F:
  5021. db 0F 84
  5022.  
  5023. unregistersymbol(AOB_Shell)
  5024.  
  5025. {
  5026. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9AC67
  5027.  
  5028. "isaac-ng.exe"+9AC43: 8B C7 - mov eax,edi
  5029. "isaac-ng.exe"+9AC45: E8 26 8C F6 FF - call isaac-ng.exe+3870
  5030. "isaac-ng.exe"+9AC4A: 84 C0 - test al,al
  5031. "isaac-ng.exe"+9AC4C: 0F 84 0C 03 00 00 - je isaac-ng.exe+9AF5E
  5032. "isaac-ng.exe"+9AC52: 8D 9E 70 0B 00 00 - lea ebx,[esi+00000B70]
  5033. "isaac-ng.exe"+9AC58: 6A 03 - push 03
  5034. "isaac-ng.exe"+9AC5A: 8B F3 - mov esi,ebx
  5035. "isaac-ng.exe"+9AC5C: 89 5C 24 3C - mov [esp+3C],ebx
  5036. "isaac-ng.exe"+9AC60: E8 1B 9D 09 00 - call isaac-ng.exe+134980
  5037. "isaac-ng.exe"+9AC65: 85 C0 - test eax,eax
  5038. // ---------- JUMP HERE ----------
  5039. "isaac-ng.exe"+9AC67: 0F 84 FB 00 00 00 - je isaac-ng.exe+9AD68
  5040. // ---------- JUMP HERE ----------
  5041. "isaac-ng.exe"+9AC6D: 8B 35 04 F6 0D 01 - mov esi,[isaac-ng.exe+2DF604]
  5042. "isaac-ng.exe"+9AC73: 6A 2E - push 2E
  5043. "isaac-ng.exe"+9AC75: 33 FF - xor edi,edi
  5044. "isaac-ng.exe"+9AC77: E8 B4 5D F7 FF - call isaac-ng.exe+10A30
  5045. "isaac-ng.exe"+9AC7C: 8B C8 - mov ecx,eax
  5046. "isaac-ng.exe"+9AC7E: E8 5D A1 06 00 - call isaac-ng.exe+104DE0
  5047. "isaac-ng.exe"+9AC83: 84 C0 - test al,al
  5048. "isaac-ng.exe"+9AC85: 74 13 - je isaac-ng.exe+9AC9A
  5049. "isaac-ng.exe"+9AC87: 8B 74 24 18 - mov esi,[esp+18]
  5050. "isaac-ng.exe"+9AC8B: 6A 03 - push 03
  5051. }
  5052. </AssemblerScript>
  5053. </CheatEntry>
  5054. <CheatEntry>
  5055. <ID>867</ID>
  5056. <Description>"Store Free"</Description>
  5057. <LastState Activated="0"/>
  5058. <Color>80000008</Color>
  5059. <VariableType>Auto Assembler Script</VariableType>
  5060. <AssemblerScript>{ by HenryEx
  5061. for The Binding of Isaac: Afterbirth
  5062.  
  5063. All store items will be free.
  5064. }
  5065.  
  5066. [ENABLE]
  5067. aobscanmodule(AOB_FreeStore,isaac-ng.exe,8B * E8 * * * * 84 C0 75 * 83 * 02)
  5068. registersymbol(AOB_FreeStore)
  5069.  
  5070. AOB_FreeStore+9:
  5071. db EB
  5072.  
  5073. [DISABLE]
  5074. AOB_FreeStore+9:
  5075. db 75
  5076.  
  5077. unregistersymbol(AOB_FreeStore)
  5078.  
  5079. {
  5080. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+C8E86
  5081.  
  5082. "isaac-ng.exe"+C8E6A: 75 2E - jne isaac-ng.exe+C8E9A
  5083. "isaac-ng.exe"+C8E6C: 83 7D 0C 00 - cmp dword ptr [ebp+0C],00
  5084. "isaac-ng.exe"+C8E70: 74 28 - je isaac-ng.exe+C8E9A
  5085. "isaac-ng.exe"+C8E72: 6A 0D - push 0D
  5086. "isaac-ng.exe"+C8E74: 33 FF - xor edi,edi
  5087. "isaac-ng.exe"+C8E76: 8B F2 - mov esi,edx
  5088. "isaac-ng.exe"+C8E78: E8 A3 79 F4 FF - call isaac-ng.exe+10820
  5089. "isaac-ng.exe"+C8E7D: 8B C8 - mov ecx,eax
  5090. "isaac-ng.exe"+C8E7F: E8 AC AB 03 00 - call isaac-ng.exe+103A30
  5091. "isaac-ng.exe"+C8E84: 84 C0 - test al,al
  5092. // ---------- JUMPING HERE ----------
  5093. "isaac-ng.exe"+C8E86: 75 05 - jne isaac-ng.exe+C8E8D
  5094. // ---------- JUMPING HERE ----------
  5095. "isaac-ng.exe"+C8E88: 83 FB 02 - cmp ebx,02
  5096. "isaac-ng.exe"+C8E8B: 7C 0D - jnge isaac-ng.exe+C8E9A
  5097. "isaac-ng.exe"+C8E8D: 8B 4D 08 - mov ecx,[ebp+08]
  5098. "isaac-ng.exe"+C8E90: C7 81 74 10 00 00 18 FC FF FF - mov [ecx+00001074],FFFFFC18
  5099. "isaac-ng.exe"+C8E9A: 8B 45 08 - mov eax,[ebp+08]
  5100. "isaac-ng.exe"+C8E9D: 83 B8 74 10 00 00 00 - cmp dword ptr [eax+00001074],00
  5101. "isaac-ng.exe"+C8EA4: 0F 84 C2 03 00 00 - je isaac-ng.exe+C926C
  5102. "isaac-ng.exe"+C8EAA: 8B D8 - mov ebx,eax
  5103. "isaac-ng.exe"+C8EAC: 8D 93 88 02 00 00 - lea edx,[ebx+00000288]
  5104. "isaac-ng.exe"+C8EB2: 33 C0 - xor eax,eax
  5105. "isaac-ng.exe"+C8EB4: E8 07 91 F3 FF - call isaac-ng.exe+1FC0
  5106. }
  5107. </AssemblerScript>
  5108. </CheatEntry>
  5109. <CheatEntry>
  5110. <ID>952</ID>
  5111. <Description>"Store Restocks"</Description>
  5112. <LastState Activated="0"/>
  5113. <Color>80000008</Color>
  5114. <VariableType>Auto Assembler Script</VariableType>
  5115. <AssemblerScript>{ by HenryEx
  5116. for The Binding of Isaac: Afterbirth
  5117.  
  5118. Stores will restock.
  5119. }
  5120.  
  5121. [ENABLE]
  5122. aobscanmodule(AOB_RestockSmall,isaac-ng.exe,E8 * * * * 39 * * * * * 7E * A1)
  5123. aobscanmodule(AOB_RestockBig,isaac-ng.exe,E8 * * * * 39 * * * * * 0F 9F C0 84 C0 0F 84 * * * * 8B)
  5124. registersymbol(AOB_RestockSmall)
  5125. registersymbol(AOB_RestockBig)
  5126.  
  5127. AOB_RestockSmall+B:
  5128. db 7C // jl
  5129.  
  5130. AOB_RestockBig+10:
  5131. db EB 04 // jmp +4
  5132.  
  5133. [DISABLE]
  5134. AOB_RestockSmall+B:
  5135. db 7E // jle
  5136.  
  5137. AOB_RestockBig+10:
  5138. db 0F 84 // je
  5139.  
  5140.  
  5141. unregistersymbol(AOB_RestockSmall)
  5142. unregistersymbol(AOB_RestockBig)
  5143.  
  5144. {
  5145. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+D251C
  5146.  
  5147. "isaac-ng.exe"+D24EE: 81 8B 94 1D 00 00 00 04 00 00 - or [ebx+00001D94],00000400
  5148. "isaac-ng.exe"+D24F8: 8B 74 24 18 - mov esi,[esp+18]
  5149. "isaac-ng.exe"+D24FC: 83 7E 28 64 - cmp dword ptr [esi+28],64
  5150. "isaac-ng.exe"+D2500: 74 5A - je isaac-ng.exe+D255C
  5151. "isaac-ng.exe"+D2502: 83 7C 24 54 00 - cmp dword ptr [esp+54],00
  5152. "isaac-ng.exe"+D2507: 74 4A - je isaac-ng.exe+D2553
  5153. "isaac-ng.exe"+D2509: 8B 35 34 26 6C 01 - mov esi,[isaac-ng.exe+2E2634]
  5154. "isaac-ng.exe"+D250F: 33 FF - xor edi,edi
  5155. "isaac-ng.exe"+D2511: E8 EA E1 F3 FF - call isaac-ng.exe+10700
  5156. "isaac-ng.exe"+D2516: 39 B8 84 23 00 00 - cmp [eax+00002384],edi
  5157. // ---------- DON'T JUMP HERE ----------
  5158. "isaac-ng.exe"+D251C: 7E 31 - jle isaac-ng.exe+D254F
  5159. // ---------- DON'T JUMP HERE ----------
  5160. "isaac-ng.exe"+D251E: A1 34 26 6C 01 - mov eax,[isaac-ng.exe+2E2634]
  5161. "isaac-ng.exe"+D2523: 8B 90 14 70 00 00 - mov edx,[eax+00007014]
  5162. "isaac-ng.exe"+D2529: 83 7A 08 02 - cmp dword ptr [edx+08],02
  5163. "isaac-ng.exe"+D252D: 75 20 - jne isaac-ng.exe+D254F
  5164. "isaac-ng.exe"+D252F: 8B 44 24 18 - mov eax,[esp+18]
  5165. "isaac-ng.exe"+D2533: 8B 88 78 10 00 00 - mov ecx,[eax+00001078]
  5166. "isaac-ng.exe"+D2539: 8B F2 - mov esi,edx
  5167. "isaac-ng.exe"+D253B: 51 - push ecx
  5168. "isaac-ng.exe"+D253C: 8D B8 18 06 00 00 - lea edi,[eax+00000618]
  5169. "isaac-ng.exe"+D2542: 8B DE - mov ebx,esi
  5170. "isaac-ng.exe"+D2544: E8 F7 6B 07 00 - call isaac-ng.exe+149140
  5171. }
  5172. {
  5173. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+D17D0
  5174.  
  5175. "isaac-ng.exe"+D17A4: E8 07 19 F3 FF - call isaac-ng.exe+30B0
  5176. "isaac-ng.exe"+D17A9: 8B 5C 24 18 - mov ebx,[esp+18]
  5177. "isaac-ng.exe"+D17AD: 80 7C 24 43 00 - cmp byte ptr [esp+43],00
  5178. "isaac-ng.exe"+D17B2: 0F 84 A7 00 00 00 - je isaac-ng.exe+D185F
  5179. "isaac-ng.exe"+D17B8: 8B 35 34 26 5B 00 - mov esi,[isaac-ng.exe+2E2634]
  5180. "isaac-ng.exe"+D17BE: 33 FF - xor edi,edi
  5181. "isaac-ng.exe"+D17C0: E8 3B EF F3 FF - call isaac-ng.exe+10700
  5182. "isaac-ng.exe"+D17C5: 39 B8 84 23 00 00 - cmp [eax+00002384],edi
  5183. "isaac-ng.exe"+D17CB: 0F 9F C0 - setg al
  5184. "isaac-ng.exe"+D17CE: 84 C0 - test al,al
  5185. // ---------- DON'T JUMP HERE ----------
  5186. "isaac-ng.exe"+D17D0: 0F 84 89 00 00 00 - je isaac-ng.exe+D185F
  5187. // ---------- DON'T JUMP HERE ----------
  5188. "isaac-ng.exe"+D17D6: 8B 35 34 26 5B 00 - mov esi,[isaac-ng.exe+2E2634]
  5189. "isaac-ng.exe"+D17DC: 8B 86 14 70 00 00 - mov eax,[esi+00007014]
  5190. "isaac-ng.exe"+D17E2: 83 78 08 02 - cmp dword ptr [eax+08],02
  5191. "isaac-ng.exe"+D17E6: 0F 85 79 00 00 00 - jne isaac-ng.exe+D1865
  5192. "isaac-ng.exe"+D17EC: 8B F0 - mov esi,eax
  5193. "isaac-ng.exe"+D17EE: 8B 83 78 10 00 00 - mov eax,[ebx+00001078]
  5194. "isaac-ng.exe"+D17F4: 8D BB 18 06 00 00 - lea edi,[ebx+00000618]
  5195. "isaac-ng.exe"+D17FA: 50 - push eax
  5196. "isaac-ng.exe"+D17FB: 8B DE - mov ebx,esi
  5197. "isaac-ng.exe"+D17FD: E8 3E 79 07 00 - call isaac-ng.exe+149140
  5198. }
  5199. </AssemblerScript>
  5200. </CheatEntry>
  5201. <CheatEntry>
  5202. <ID>951</ID>
  5203. <Description>"Improve Slots Chances"</Description>
  5204. <LastState Activated="0"/>
  5205. <Color>80000008</Color>
  5206. <VariableType>Auto Assembler Script</VariableType>
  5207. <AssemblerScript>{ by HenryEx
  5208. for The Binding of Isaac: Afterbirth
  5209.  
  5210. Dramatically improves the chance for a Slot Machine payout,
  5211. and prevent them from blowing up
  5212. }
  5213.  
  5214. [ENABLE]
  5215. aobscanmodule(AOB_Slots,isaac-ng.exe,6A 32 89 * * * E8 * * * * 85 C0 75 * E8)
  5216. aobscanmodule(AOB_SlotsCh,isaac-ng.exe,74 04 6A 0F EB 02 6A 15)
  5217. aobscanmodule(AOB_SlotsHM,isaac-ng.exe,75 11 6A 02 E8 * * * * 85 C0 75)
  5218. aobscanmodule(AOB_SlotsFly,isaac-ng.exe,6A 03 89 * * * E8 * * * * 85 C0 75 * 8B)
  5219. registersymbol(AOB_Slots)
  5220. registersymbol(AOB_SlotsCh)
  5221. registersymbol(AOB_SlotsHM)
  5222. registersymbol(AOB_SlotsFly)
  5223.  
  5224. // Break Chance
  5225. AOB_Slots+D:
  5226. db EB
  5227.  
  5228. // Payout Chance
  5229. AOB_SlotsCh+3:
  5230. db 0A
  5231.  
  5232. // Payout Chance (Lucky Foot)
  5233. AOB_SlotsCh+7:
  5234. db 0A
  5235.  
  5236. // Hard Mode chance reduction
  5237. AOB_SlotsHM:
  5238. db EB
  5239.  
  5240. // Pretty Fly
  5241. AOB_SlotsFly+1:
  5242. db 01
  5243.  
  5244. [DISABLE]
  5245. AOB_Slots+D:
  5246. db 75
  5247.  
  5248. AOB_SlotsCh+3:
  5249. db 0F
  5250.  
  5251. AOB_SlotsCh+7:
  5252. db 15
  5253.  
  5254. AOB_SlotsHM:
  5255. db 75
  5256.  
  5257. AOB_SlotsFly+1:
  5258. db 03
  5259.  
  5260. unregistersymbol(AOB_Slots)
  5261. unregistersymbol(AOB_SlotsCh)
  5262. unregistersymbol(AOB_SlotsHM)
  5263. unregistersymbol(AOB_SlotsFly)
  5264.  
  5265. {
  5266. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+985DB
  5267.  
  5268. "isaac-ng.exe"+985B6: 6A 00 - push 00
  5269. "isaac-ng.exe"+985B8: B8 B8 C9 10 01 - mov eax,isaac-ng.exe+28C9B8
  5270. "isaac-ng.exe"+985BD: 8B F7 - mov esi,edi
  5271. "isaac-ng.exe"+985BF: E8 2C AD F6 FF - call isaac-ng.exe+32F0
  5272. "isaac-ng.exe"+985C4: 8B 5C 24 14 - mov ebx,[esp+14]
  5273. "isaac-ng.exe"+985C8: 8D B3 70 0B 00 00 - lea esi,[ebx+00000B70]
  5274. "isaac-ng.exe"+985CE: 6A 32 - push 32
  5275. "isaac-ng.exe"+985D0: 89 74 24 3C - mov [esp+3C],esi
  5276. "isaac-ng.exe"+985D4: E8 77 EE 09 00 - call isaac-ng.exe+137450
  5277. "isaac-ng.exe"+985D9: 85 C0 - test eax,eax
  5278. // ---------- JUMPING HERE ----------
  5279. "isaac-ng.exe"+985DB: 75 49 - jne isaac-ng.exe+98626
  5280. // ---------- JUMPING HERE ----------
  5281. "isaac-ng.exe"+985DD: E8 2E A8 03 00 - call isaac-ng.exe+D2E10
  5282. "isaac-ng.exe"+985E2: 50 - push eax
  5283. "isaac-ng.exe"+985E3: A1 34 26 16 01 - mov eax,[isaac-ng.exe+2E2634]
  5284. "isaac-ng.exe"+985E8: 6A 00 - push 00
  5285. "isaac-ng.exe"+985EA: 6A 00 - push 00
  5286. "isaac-ng.exe"+985EC: 6A 01 - push 01
  5287. "isaac-ng.exe"+985EE: 68 E8 03 00 00 - push 000003E8
  5288. "isaac-ng.exe"+985F3: 50 - push eax
  5289. "isaac-ng.exe"+985F4: 8D 8B 18 06 00 00 - lea ecx,[ebx+00000618]
  5290. "isaac-ng.exe"+985FA: B8 FC 41 16 01 - mov eax,isaac-ng.exe+2E41FC
  5291. "isaac-ng.exe"+985FF: E8 2C F9 03 00 - call isaac-ng.exe+D7F30
  5292. }
  5293. {
  5294. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9864C
  5295.  
  5296. "isaac-ng.exe"+9861C: E8 8F AA F6 FF - call isaac-ng.exe+30B0
  5297. "isaac-ng.exe"+98621: E9 09 0C 00 00 - jmp isaac-ng.exe+9922F
  5298. "isaac-ng.exe"+98626: 8B 35 34 26 16 01 - mov esi,[isaac-ng.exe+2E2634]
  5299. "isaac-ng.exe"+9862C: 33 FF - xor edi,edi
  5300. "isaac-ng.exe"+9862E: C7 83 94 0B 00 00 00 00 00 00 - mov [ebx+00000B94],00000000
  5301. "isaac-ng.exe"+98638: E8 C3 80 F7 FF - call isaac-ng.exe+10700
  5302. "isaac-ng.exe"+9863D: 39 B8 5C 1E 00 00 - cmp [eax+00001E5C],edi
  5303. "isaac-ng.exe"+98643: 8B 74 24 38 - mov esi,[esp+38]
  5304. "isaac-ng.exe"+98647: 0F 9F C0 - setg al
  5305. "isaac-ng.exe"+9864A: 84 C0 - test al,al
  5306. "isaac-ng.exe"+9864C: 74 04 - je isaac-ng.exe+98652
  5307. // ---------- CHANCES ----------
  5308. "isaac-ng.exe"+9864E: 6A 0F - push 0F
  5309. "isaac-ng.exe"+98650: EB 02 - jmp isaac-ng.exe+98654
  5310. "isaac-ng.exe"+98652: 6A 15 - push 15
  5311. // ---------- CHANCES ----------
  5312. "isaac-ng.exe"+98654: E8 F7 ED 09 00 - call isaac-ng.exe+137450
  5313. "isaac-ng.exe"+98659: 83 C0 03 - add eax,03
  5314. "isaac-ng.exe"+9865C: 89 83 94 0B 00 00 - mov [ebx+00000B94],eax
  5315. "isaac-ng.exe"+98662: 83 F8 09 - cmp eax,09
  5316. "isaac-ng.exe"+98665: 72 11 - jb isaac-ng.exe+98678
  5317. "isaac-ng.exe"+98667: 6A 0A - push 0A
  5318. "isaac-ng.exe"+98669: E8 E2 ED 09 00 - call isaac-ng.exe+137450
  5319. "isaac-ng.exe"+9866E: 85 C0 - test eax,eax
  5320. "isaac-ng.exe"+98670: 74 06 - je isaac-ng.exe+98678
  5321. }
  5322. {
  5323. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+98791
  5324.  
  5325. "isaac-ng.exe"+98765: 75 19 - jne isaac-ng.exe+98780
  5326. "isaac-ng.exe"+98767: 8B 74 24 20 - mov esi,[esp+20]
  5327. "isaac-ng.exe"+9876B: 6A 05 - push 05
  5328. "isaac-ng.exe"+9876D: E8 DE EC 09 00 - call isaac-ng.exe+137450
  5329. "isaac-ng.exe"+98772: 85 C0 - test eax,eax
  5330. "isaac-ng.exe"+98774: 74 0A - je isaac-ng.exe+98780
  5331. "isaac-ng.exe"+98776: C7 83 94 0B 00 00 0A 00 00 00 - mov [ebx+00000B94],0000000A
  5332. "isaac-ng.exe"+98780: 8B 15 34 26 16 01 - mov edx,[isaac-ng.exe+2E2634]
  5333. "isaac-ng.exe"+98786: 83 BA DC 4F 17 00 01 - cmp dword ptr [edx+00174FDC],01
  5334. "isaac-ng.exe"+9878D: 8B 74 24 38 - mov esi,[esp+38]
  5335. // ---------- JUMPING HERE ----------
  5336. "isaac-ng.exe"+98791: 75 11 - jne isaac-ng.exe+987A4
  5337. // ---------- JUMPING HERE ----------
  5338. "isaac-ng.exe"+98793: 6A 02 - push 02
  5339. "isaac-ng.exe"+98795: E8 B6 EC 09 00 - call isaac-ng.exe+137450
  5340. "isaac-ng.exe"+9879A: 85 C0 - test eax,eax
  5341. // ---------- OR HERE ----------
  5342. "isaac-ng.exe"+9879C: 75 06 - jne isaac-ng.exe+987A4
  5343. // ---------- OR HERE ----------
  5344. "isaac-ng.exe"+9879E: 89 83 94 0B 00 00 - mov [ebx+00000B94],eax
  5345. "isaac-ng.exe"+987A4: 8B 83 94 0B 00 00 - mov eax,[ebx+00000B94]
  5346. "isaac-ng.exe"+987AA: 83 C0 FD - add eax,-03
  5347. "isaac-ng.exe"+987AD: 83 F8 09 - cmp eax,09
  5348. "isaac-ng.exe"+987B0: 0F 87 FA 08 00 00 - ja isaac-ng.exe+990B0
  5349. "isaac-ng.exe"+987B6: FF 24 85 0C C1 F1 00 - jmp dword ptr [eax*4+isaac-ng.exe+9C10C]
  5350. "isaac-ng.exe"+987BD: 8B 5C 24 44 - mov ebx,[esp+44]
  5351. "isaac-ng.exe"+987C1: 83 7B 3C 00 - cmp dword ptr [ebx+3C],00
  5352. "isaac-ng.exe"+987C5: 0F 84 64 0A 00 00 - je isaac-ng.exe+9922F
  5353. "isaac-ng.exe"+987CB: 8B 43 38 - mov eax,[ebx+38]
  5354. "isaac-ng.exe"+987CE: 8D 7B 38 - lea edi,[ebx+38]
  5355. }
  5356. {
  5357. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+99344
  5358.  
  5359. "isaac-ng.exe"+9931C: 8B 86 94 0B 00 00 - mov eax,[esi+00000B94]
  5360. "isaac-ng.exe"+99322: 83 C0 FD - add eax,-03
  5361. "isaac-ng.exe"+99325: 83 F8 09 - cmp eax,09
  5362. "isaac-ng.exe"+99328: 77 44 - ja isaac-ng.exe+9936E
  5363. "isaac-ng.exe"+9932A: FF 24 85 60 C1 F1 00 - jmp dword ptr [eax*4+isaac-ng.exe+9C160]
  5364. "isaac-ng.exe"+99331: 81 C6 70 0B 00 00 - add esi,00000B70
  5365. "isaac-ng.exe"+99337: 6A 03 - push 03
  5366. "isaac-ng.exe"+99339: 89 74 24 3C - mov [esp+3C],esi
  5367. "isaac-ng.exe"+9933D: E8 0E E1 09 00 - call isaac-ng.exe+137450
  5368. "isaac-ng.exe"+99342: 85 C0 - test eax,eax
  5369. // ---------- JUMPING HERE ----------
  5370. "isaac-ng.exe"+99344: 75 37 - jne isaac-ng.exe+9937D
  5371. // ---------- JUMPING HERE ----------
  5372. "isaac-ng.exe"+99346: 8B 35 34 26 16 01 - mov esi,[isaac-ng.exe+2E2634]
  5373. "isaac-ng.exe"+9934C: 33 FF - xor edi,edi
  5374. "isaac-ng.exe"+9934E: E8 AD 73 F7 FF - call isaac-ng.exe+10700
  5375. "isaac-ng.exe"+99353: E8 58 D1 08 00 - call isaac-ng.exe+1264B0
  5376. "isaac-ng.exe"+99358: 8B 35 34 26 16 01 - mov esi,[isaac-ng.exe+2E2634]
  5377. "isaac-ng.exe"+9935E: E8 9D 73 F7 FF - call isaac-ng.exe+10700
  5378. "isaac-ng.exe"+99363: 8B F8 - mov edi,eax
  5379. "isaac-ng.exe"+99365: E8 66 D0 08 00 - call isaac-ng.exe+1263D0
  5380. "isaac-ng.exe"+9936A: 8B 74 24 14 - mov esi,[esp+14]
  5381. "isaac-ng.exe"+9936E: C7 86 90 0B 00 00 01 00 00 00 - mov [esi+00000B90],00000001
  5382. "isaac-ng.exe"+99378: E9 9C 12 00 00 - jmp isaac-ng.exe+9A619
  5383. }
  5384. </AssemblerScript>
  5385. </CheatEntry>
  5386. <CheatEntry>
  5387. <ID>897</ID>
  5388. <Description>"Shuffle Machines Always Work"</Description>
  5389. <LastState Activated="0"/>
  5390. <Color>80000008</Color>
  5391. <VariableType>Auto Assembler Script</VariableType>
  5392. <AssemblerScript>{ by HenryEx
  5393. for The Binding of Isaac: Afterbirth
  5394.  
  5395. Pickup Cycle machines (in stores, item room etc) will always cycle items.
  5396. }
  5397.  
  5398. [ENABLE]
  5399. aobscanmodule(AOB_ShuffleDo,isaac-ng.exe,E8 * * * * 85 C0 0F 94 C0 84 C0 0F 84)
  5400. aobscanmodule(AOB_ShuffleBreak,isaac-ng.exe,76 * 6A 02 E8 * * * * 85 C0 75)
  5401. registersymbol(AOB_ShuffleDo)
  5402. registersymbol(AOB_ShuffleBreak)
  5403.  
  5404. AOB_ShuffleDo+0C:
  5405. db EB 04
  5406.  
  5407. AOB_ShuffleBreak+0B:
  5408. db EB
  5409.  
  5410. [DISABLE]
  5411. AOB_ShuffleDo+0C:
  5412. db 0F 84
  5413. // je long
  5414.  
  5415. AOB_ShuffleBreak+0B:
  5416. db 75
  5417. // jne short
  5418.  
  5419. unregistersymbol(AOB_ShuffleDo)
  5420. unregistersymbol(AOB_ShuffleBreak)
  5421.  
  5422. {
  5423. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9BC43
  5424.  
  5425. "isaac-ng.exe"+9BC2B: EB 14 - jmp isaac-ng.exe+9BC41
  5426. "isaac-ng.exe"+9BC2D: 6A 02 - push 02
  5427. "isaac-ng.exe"+9BC2F: EB 06 - jmp isaac-ng.exe+9BC37
  5428. "isaac-ng.exe"+9BC31: 6A 03 - push 03
  5429. "isaac-ng.exe"+9BC33: EB 02 - jmp isaac-ng.exe+9BC37
  5430. "isaac-ng.exe"+9BC35: 6A 04 - push 04
  5431. "isaac-ng.exe"+9BC37: E8 44 8D 09 00 - call isaac-ng.exe+134980
  5432. "isaac-ng.exe"+9BC3C: 85 C0 - test eax,eax
  5433. "isaac-ng.exe"+9BC3E: 0F 94 C0 - sete al
  5434. "isaac-ng.exe"+9BC41: 84 C0 - test al,al
  5435. // ---------- JUMPING HERE ----------
  5436. "isaac-ng.exe"+9BC43: 0F 84 86 00 00 00 - je isaac-ng.exe+9BCCF
  5437. // ---------- JUMPING HERE ----------
  5438. "isaac-ng.exe"+9BC49: 8B 0D 04 F6 42 00 - mov ecx,[isaac-ng.exe+2DF604]
  5439. "isaac-ng.exe"+9BC4F: 8B 91 14 70 00 00 - mov edx,[ecx+00007014]
  5440. "isaac-ng.exe"+9BC55: 52 - push edx
  5441. "isaac-ng.exe"+9BC56: E8 75 BE 0A 00 - call isaac-ng.exe+147AD0
  5442. "isaac-ng.exe"+9BC5B: 8B 7C 24 14 - mov edi,[esp+14]
  5443. "isaac-ng.exe"+9BC5F: 01 9F A0 0B 00 00 - add [edi+00000BA0],ebx
  5444. "isaac-ng.exe"+9BC65: 83 BF A0 0B 00 00 04 - cmp dword ptr [edi+00000BA0],04
  5445. "isaac-ng.exe"+9BC6C: C7 87 9C 0B 00 00 00 00 00 00 - mov [edi+00000B9C],00000000
  5446. "isaac-ng.exe"+9BC76: 76 63 - jna isaac-ng.exe+9BCDB
  5447. "isaac-ng.exe"+9BC78: 6A 02 - push 02
  5448. }
  5449. {
  5450. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9BC81
  5451.  
  5452. "isaac-ng.exe"+9BC55: 52 - push edx
  5453. "isaac-ng.exe"+9BC56: E8 75 BE 0A 00 - call isaac-ng.exe+147AD0
  5454. "isaac-ng.exe"+9BC5B: 8B 7C 24 14 - mov edi,[esp+14]
  5455. "isaac-ng.exe"+9BC5F: 01 9F A0 0B 00 00 - add [edi+00000BA0],ebx
  5456. "isaac-ng.exe"+9BC65: 83 BF A0 0B 00 00 04 - cmp dword ptr [edi+00000BA0],04
  5457. "isaac-ng.exe"+9BC6C: C7 87 9C 0B 00 00 00 00 00 00 - mov [edi+00000B9C],00000000
  5458. "isaac-ng.exe"+9BC76: 76 63 - jna isaac-ng.exe+9BCDB
  5459. "isaac-ng.exe"+9BC78: 6A 02 - push 02
  5460. "isaac-ng.exe"+9BC7A: E8 01 8D 09 00 - call isaac-ng.exe+134980
  5461. "isaac-ng.exe"+9BC7F: 85 C0 - test eax,eax
  5462. // ---------- JUMPING HERE ----------
  5463. "isaac-ng.exe"+9BC81: 75 58 - jne isaac-ng.exe+9BCDB
  5464. // ---------- JUMPING HERE ----------
  5465. "isaac-ng.exe"+9BC83: E8 18 63 03 00 - call isaac-ng.exe+D1FA0
  5466. "isaac-ng.exe"+9BC88: 50 - push eax
  5467. "isaac-ng.exe"+9BC89: A1 04 F6 39 01 - mov eax,[isaac-ng.exe+2DF604]
  5468. "isaac-ng.exe"+9BC8E: 6A 00 - push 00
  5469. "isaac-ng.exe"+9BC90: 6A 00 - push 00
  5470. "isaac-ng.exe"+9BC92: 6A 01 - push 01
  5471. "isaac-ng.exe"+9BC94: 68 E8 03 00 00 - push 000003E8
  5472. "isaac-ng.exe"+9BC99: 50 - push eax
  5473. "isaac-ng.exe"+9BC9A: 8D 8F 18 06 00 00 - lea ecx,[edi+00000618]
  5474. "isaac-ng.exe"+9BCA0: B8 CC 11 3A 01 - mov eax,isaac-ng.exe+2E11CC
  5475. "isaac-ng.exe"+9BCA5: E8 76 B0 03 00 - call isaac-ng.exe+D6D20
  5476. }
  5477. </AssemblerScript>
  5478. </CheatEntry>
  5479. <CheatEntry>
  5480. <ID>834</ID>
  5481. <Description>"Donation Machines Don't Glitch"</Description>
  5482. <LastState Activated="0"/>
  5483. <Color>80000008</Color>
  5484. <VariableType>Auto Assembler Script</VariableType>
  5485. <AssemblerScript>{ by HenryEx
  5486. for The Binding of Isaac: Afterbirth
  5487.  
  5488. Store &amp; Greed Donation Machines won't glitch out anymore. Happy donating!
  5489. }
  5490.  
  5491. [ENABLE]
  5492. aobscanmodule(AOB_SDM,isaac-ng.exe,8B * * * 6A 14 E8 * * * * 85 C0 0F 85)
  5493. aobscanmodule(AOB_GDM,isaac-ng.exe,E8 * * * * DC 5C * * DF E0 F6 C4 41 0F 85)
  5494. registersymbol(AOB_SDM)
  5495. registersymbol(AOB_GDM)
  5496.  
  5497. AOB_SDM+0D:
  5498. db 90 E9
  5499.  
  5500. AOB_GDM+0E:
  5501. db 90 E9
  5502.  
  5503. [DISABLE]
  5504. AOB_SDM+0D:
  5505. db 0F 85
  5506.  
  5507. AOB_GDM+0E:
  5508. db 0F 85
  5509.  
  5510. unregistersymbol(AOB_SDM)
  5511. unregistersymbol(AOB_GDM)
  5512.  
  5513. {
  5514. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9B634
  5515.  
  5516. "isaac-ng.exe"+9B603: B8 18 00 00 00 - mov eax,00000018
  5517. "isaac-ng.exe"+9B608: D9 1C 24 - fstp dword ptr [esp]
  5518. "isaac-ng.exe"+9B60B: C7 86 A4 0B 00 00 0F 00 00 00 - mov [esi+00000BA4],0000000F
  5519. "isaac-ng.exe"+9B615: E8 D6 FA 0E 00 - call isaac-ng.exe+18B0F0
  5520. "isaac-ng.exe"+9B61A: 83 BE 90 0B 00 00 03 - cmp dword ptr [esi+00000B90],03
  5521. "isaac-ng.exe"+9B621: 0F 84 2E EC FF FF - je isaac-ng.exe+9A255
  5522. "isaac-ng.exe"+9B627: 8B 74 24 38 - mov esi,[esp+38]
  5523. "isaac-ng.exe"+9B62B: 6A 14 - push 14
  5524. "isaac-ng.exe"+9B62D: E8 0E A1 09 00 - call isaac-ng.exe+135740
  5525. "isaac-ng.exe"+9B632: 85 C0 - test eax,eax
  5526. // ---------- JUMPING HERE ----------
  5527. "isaac-ng.exe"+9B634: 0F 85 1B EC FF FF - jne isaac-ng.exe+9A255
  5528. // ---------- JUMPING HERE ----------
  5529. "isaac-ng.exe"+9B63A: 50 - push eax
  5530. "isaac-ng.exe"+9B63B: E8 E0 BE FF FF - call isaac-ng.exe+97520
  5531. "isaac-ng.exe"+9B640: 8B 7C 24 48 - mov edi,[esp+48]
  5532. "isaac-ng.exe"+9B644: 8B D8 - mov ebx,eax
  5533. "isaac-ng.exe"+9B646: E8 55 7A F6 FF - call isaac-ng.exe+30A0
  5534. "isaac-ng.exe"+9B64B: B0 01 - mov al,01
  5535. "isaac-ng.exe"+9B64D: B9 12 00 00 00 - mov ecx,00000012
  5536. "isaac-ng.exe"+9B652: E8 59 D0 FD FF - call isaac-ng.exe+786B0
  5537. "isaac-ng.exe"+9B657: 8B 54 24 14 - mov edx,[esp+14]
  5538. "isaac-ng.exe"+9B65B: C7 82 90 0B 00 00 03 00 00 00 - mov [edx+00000B90],00000003
  5539. }
  5540. {
  5541. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+9BE2C
  5542.  
  5543. "isaac-ng.exe"+9BE05: DC 0D 68 2C 67 01 - fmul qword ptr [isaac-ng.exe+2A2C68]
  5544. "isaac-ng.exe"+9BE0B: 8B 35 34 26 6B 01 - mov esi,[isaac-ng.exe+2E2634]
  5545. "isaac-ng.exe"+9BE11: 33 FF - xor edi,edi
  5546. "isaac-ng.exe"+9BE13: DD 5C 24 7C - fstp qword ptr [esp+7C]
  5547. "isaac-ng.exe"+9BE17: E8 E4 48 F7 FF - call isaac-ng.exe+10700
  5548. "isaac-ng.exe"+9BE1C: 8B C8 - mov ecx,eax
  5549. "isaac-ng.exe"+9BE1E: E8 5D 60 09 00 - call isaac-ng.exe+131E80
  5550. "isaac-ng.exe"+9BE23: DC 5C 24 7C - fcomp qword ptr [esp+7C]
  5551. "isaac-ng.exe"+9BE27: DF E0 - fnstsw ax
  5552. "isaac-ng.exe"+9BE29: F6 C4 41 - test ah,41
  5553. // ---------- JUMPING HERE ----------
  5554. "isaac-ng.exe"+9BE2C: 0F 85 E3 E7 FF FF - jne isaac-ng.exe+9A615
  5555. // ---------- JUMPING HERE ----------
  5556. "isaac-ng.exe"+9BE32: 57 - push edi
  5557. "isaac-ng.exe"+9BE33: E8 B8 BA FF FF - call isaac-ng.exe+978F0
  5558. "isaac-ng.exe"+9BE38: 8B 7C 24 48 - mov edi,[esp+48]
  5559. "isaac-ng.exe"+9BE3C: 8B D8 - mov ebx,eax
  5560. "isaac-ng.exe"+9BE3E: E8 6D 72 F6 FF - call isaac-ng.exe+30B0
  5561. "isaac-ng.exe"+9BE43: B0 01 - mov al,01
  5562. "isaac-ng.exe"+9BE45: B9 22 00 00 00 - mov ecx,00000022
  5563. "isaac-ng.exe"+9BE4A: E8 B1 D0 FD FF - call isaac-ng.exe+78F00
  5564. "isaac-ng.exe"+9BE4F: 8B 54 24 14 - mov edx,[esp+14]
  5565. "isaac-ng.exe"+9BE53: C7 82 90 0B 00 00 03 00 00 00 - mov [edx+00000B90],00000003
  5566. }
  5567. </AssemblerScript>
  5568. </CheatEntry>
  5569. </CheatEntries>
  5570. </CheatEntry>
  5571. <CheatEntry>
  5572. <ID>923</ID>
  5573. <Description>"Disable Time Limits"</Description>
  5574. <Options moHideChildren="1"/>
  5575. <LastState Value="" Activated="0" RealAddress="00000000"/>
  5576. <Color>FF0000</Color>
  5577. <GroupHeader>1</GroupHeader>
  5578. <CheatEntries>
  5579. <CheatEntry>
  5580. <ID>411</ID>
  5581. <Description>"Get Boss Rush / Hush"</Description>
  5582. <LastState Activated="0"/>
  5583. <Color>80000008</Color>
  5584. <VariableType>Auto Assembler Script</VariableType>
  5585. <AssemblerScript>{ by HenryEx
  5586. for The Binding of Isaac: Afterbirth
  5587.  
  5588. Will always open up the boss rush &amp; hush, no matter your time.
  5589. }
  5590.  
  5591. [ENABLE]
  5592. aobscanmodule(AOB_BossRush,isaac-ng.exe,3B 88 * * * * 0f 8f * * * * 68)
  5593. aobscanmodule(AOB_BossHush,isaac-ng.exe,8B 88 * * * * 3B 88 * * * * 0F 8F * * * * 83)
  5594. registersymbol(AOB_BossRush)
  5595. registersymbol(AOB_BossHush)
  5596.  
  5597. AOB_BossRush+6:
  5598. db EB 04 // jmp short +4
  5599.  
  5600. AOB_BossHush+C:
  5601. db EB 04 // jmp short +4
  5602.  
  5603. [DISABLE]
  5604. AOB_BossRush+6:
  5605. db 0F 8F
  5606.  
  5607. AOB_BossHush+C:
  5608. db 0F 8F
  5609.  
  5610. unregistersymbol(AOB_BossRush)
  5611. unregistersymbol(AOB_BossHush)
  5612.  
  5613. {
  5614. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+13BB56
  5615.  
  5616. "isaac-ng.exe"+13BB26: E8 55 D3 09 00 - call isaac-ng.exe+1D8E80
  5617. "isaac-ng.exe"+13BB2B: 8B 0D 04 F6 0D 01 - mov ecx,[isaac-ng.exe+2DF604]
  5618. "isaac-ng.exe"+13BB31: 8B 81 1C 4D 13 00 - mov eax,[ecx+00134D1C]
  5619. "isaac-ng.exe"+13BB37: 50 - push eax
  5620. "isaac-ng.exe"+13BB38: 68 5C 09 09 01 - push isaac-ng.exe+29095C
  5621. "isaac-ng.exe"+13BB3D: E8 3E D3 09 00 - call isaac-ng.exe+1D8E80
  5622. "isaac-ng.exe"+13BB42: A1 04 F6 0D 01 - mov eax,[isaac-ng.exe+2DF604]
  5623. "isaac-ng.exe"+13BB47: 8B 88 18 4D 13 00 - mov ecx,[eax+00134D18]
  5624. "isaac-ng.exe"+13BB4D: 83 C4 10 - add esp,10
  5625. "isaac-ng.exe"+13BB50: 3B 88 1C 4D 13 00 - cmp ecx,[eax+00134D1C]
  5626. // ---------- CHANGING HERE ----------
  5627. "isaac-ng.exe"+13BB56: 0F 8F 1E 02 00 00 - jg isaac-ng.exe+13BD7A
  5628. // ---------- DONE CHANGING ----------
  5629. "isaac-ng.exe"+13BB5C: 68 6C 09 09 01 - push isaac-ng.exe+29096C
  5630. "isaac-ng.exe"+13BB61: E8 1A D3 09 00 - call isaac-ng.exe+1D8E80
  5631. "isaac-ng.exe"+13BB66: 8B 0D 04 F6 0D 01 - mov ecx,[isaac-ng.exe+2DF604]
  5632. "isaac-ng.exe"+13BB6C: 8B 81 1C 70 00 00 - mov eax,[ecx+0000701C]
  5633. "isaac-ng.exe"+13BB72: 8B B1 28 70 00 00 - mov esi,[ecx+00007028]
  5634. "isaac-ng.exe"+13BB78: 83 C4 04 - add esp,04
  5635. "isaac-ng.exe"+13BB7B: 83 F8 FB - cmp eax,-05
  5636. "isaac-ng.exe"+13BB7E: 75 13 - jne isaac-ng.exe+13BB93
  5637. "isaac-ng.exe"+13BB80: 85 F6 - test esi,esi
  5638. "isaac-ng.exe"+13BB82: 78 0F - js isaac-ng.exe+13BB93
  5639. }
  5640.  
  5641. {
  5642. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+151E44
  5643.  
  5644. "isaac-ng.exe"+151E12: 0F 85 44 02 00 00 - jne isaac-ng.exe+15205C
  5645. "isaac-ng.exe"+151E18: A1 04 F6 0D 01 - mov eax,[isaac-ng.exe+2DF604]
  5646. "isaac-ng.exe"+151E1D: 3B B8 F0 4E 17 00 - cmp edi,[eax+00174EF0]
  5647. "isaac-ng.exe"+151E23: 7C 0A - jnge isaac-ng.exe+151E2F
  5648. "isaac-ng.exe"+151E25: 80 7D F3 00 - cmp byte ptr [ebp-0D],00
  5649. "isaac-ng.exe"+151E29: 0F 85 2D 02 00 00 - jne isaac-ng.exe+15205C
  5650. "isaac-ng.exe"+151E2F: 83 FF 08 - cmp edi,08
  5651. "isaac-ng.exe"+151E32: 0F 85 24 02 00 00 - jne isaac-ng.exe+15205C
  5652. "isaac-ng.exe"+151E38: 8B 88 18 4D 13 00 - mov ecx,[eax+00134D18]
  5653. "isaac-ng.exe"+151E3E: 3B 88 20 4D 13 00 - cmp ecx,[eax+00134D20]
  5654. // ---------- CHANGING HERE ----------
  5655. "isaac-ng.exe"+151E44: 0F 8F 12 02 00 00 - jg isaac-ng.exe+15205C
  5656. // ---------- DONE CHANGING ----------
  5657. "isaac-ng.exe"+151E4A: 83 B8 1C 70 00 00 F8 - cmp dword ptr [eax+0000701C],-08
  5658. "isaac-ng.exe"+151E51: 8B B0 28 70 00 00 - mov esi,[eax+00007028]
  5659. "isaac-ng.exe"+151E57: 75 13 - jne isaac-ng.exe+151E6C
  5660. "isaac-ng.exe"+151E59: 85 F6 - test esi,esi
  5661. "isaac-ng.exe"+151E5B: 78 0F - js isaac-ng.exe+151E6C
  5662. "isaac-ng.exe"+151E5D: 8B 5D 08 - mov ebx,[ebp+08]
  5663. "isaac-ng.exe"+151E60: 83 BC B3 24 07 00 00 00 - cmp dword ptr [ebx+esi*4+00000724],00
  5664. "isaac-ng.exe"+151E68: 75 05 - jne isaac-ng.exe+151E6F
  5665. "isaac-ng.exe"+151E6A: EB 75 - jmp isaac-ng.exe+151EE1
  5666. "isaac-ng.exe"+151E6C: 8B 5D 08 - mov ebx,[ebp+08]
  5667. }
  5668. </AssemblerScript>
  5669. </CheatEntry>
  5670. <CheatEntry>
  5671. <ID>916</ID>
  5672. <Description>"No Time Limit (Speed)"</Description>
  5673. <LastState Activated="0"/>
  5674. <Color>80000008</Color>
  5675. <VariableType>Auto Assembler Script</VariableType>
  5676. <AssemblerScript>{ by HenryEx
  5677. for The Binding of Isaac: Afterbirth
  5678.  
  5679. Removes the time limit from Challenge 22: Speed!
  5680. }
  5681.  
  5682. [ENABLE]
  5683. aobscanmodule(AOB_SpeedLimit,isaac-ng.exe,83 * 16 75 * 8B * * * * * 81)
  5684. registersymbol(AOB_SpeedLimit)
  5685.  
  5686. AOB_SpeedLimit+3:
  5687. db EB
  5688.  
  5689. [DISABLE]
  5690. AOB_SpeedLimit+3:
  5691. db 75
  5692.  
  5693. unregistersymbol(AOB_SpeedLimit)
  5694.  
  5695. {
  5696. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+11DE67
  5697.  
  5698. "isaac-ng.exe"+11DE40: 33 C4 - xor eax,esp
  5699. "isaac-ng.exe"+11DE42: 50 - push eax
  5700. "isaac-ng.exe"+11DE43: 8D 84 24 78 01 00 00 - lea eax,[esp+00000178]
  5701. "isaac-ng.exe"+11DE4A: 64 A3 00 00 00 00 - mov fs:[00000000],eax
  5702. "isaac-ng.exe"+11DE50: D9 E8 - fld1
  5703. "isaac-ng.exe"+11DE52: 8B D9 - mov ebx,ecx
  5704. "isaac-ng.exe"+11DE54: 8B 0D 04 06 65 00 - mov ecx,[isaac-ng.exe+2E0604]
  5705. "isaac-ng.exe"+11DE5A: 8B 81 F4 4D 17 00 - mov eax,[ecx+00174DF4]
  5706. "isaac-ng.exe"+11DE60: 89 5C 24 40 - mov [esp+40],ebx
  5707. "isaac-ng.exe"+11DE64: 83 F8 16 - cmp eax,16
  5708. // ---------- JUMPING HERE ----------
  5709. "isaac-ng.exe"+11DE67: 75 62 - jne isaac-ng.exe+11DECB
  5710. // ---------- JUMPING HERE ----------
  5711. "isaac-ng.exe"+11DE69: 8B 89 18 4D 13 00 - mov ecx,[ecx+00134D18]
  5712. "isaac-ng.exe"+11DE6F: 81 F9 80 70 00 00 - cmp ecx,00007080
  5713. "isaac-ng.exe"+11DE75: 7E 78 - jle isaac-ng.exe+11DEEF
  5714. "isaac-ng.exe"+11DE77: 8B 83 20 05 00 00 - mov eax,[ebx+00000520]
  5715. "isaac-ng.exe"+11DE7D: C1 E8 0E - shr eax,0E
  5716. "isaac-ng.exe"+11DE80: A8 01 - test al,01
  5717. "isaac-ng.exe"+11DE82: 75 6B - jne isaac-ng.exe+11DEEF
  5718. "isaac-ng.exe"+11DE84: B8 B5 81 4E 1B - mov eax,1B4E81B5
  5719. "isaac-ng.exe"+11DE89: F7 E9 - imul ecx
  5720. "isaac-ng.exe"+11DE8B: C1 FA 05 - sar edx,05
  5721. "isaac-ng.exe"+11DE8E: 8B C2 - mov eax,edx
  5722. }
  5723. </AssemblerScript>
  5724. </CheatEntry>
  5725. </CheatEntries>
  5726. </CheatEntry>
  5727. <CheatEntry>
  5728. <ID>796</ID>
  5729. <Description>"No negative pill effects"</Description>
  5730. <LastState Activated="0"/>
  5731. <Color>80000008</Color>
  5732. <VariableType>Auto Assembler Script</VariableType>
  5733. <AssemblerScript>{ by HenryEx
  5734. for The Binding of Isaac: Afterbirth
  5735.  
  5736. Never get negative pill effects, like having PHD/Libra
  5737. Also auto-identifies them
  5738. }
  5739.  
  5740. [ENABLE]
  5741. aobscanmodule(AOB_PHDEffect,isaac-ng.exe,8B * 83 B8 * * * * 00 7F * 8B * * * * * 8B * * * * * 2B)
  5742. aobscanmodule(AOB_Identify,isaac-ng.exe,80 BC * * * * * 00 74 * 8B 35)
  5743. registersymbol(AOB_PHDEffect)
  5744. registersymbol(AOB_Identify)
  5745.  
  5746. AOB_PHDEffect+9:
  5747. db EB
  5748.  
  5749. AOB_Identify+7:
  5750. db 02
  5751.  
  5752. [DISABLE]
  5753. AOB_PHDEffect+9:
  5754. db 7F
  5755.  
  5756. AOB_Identify+7:
  5757. db 00
  5758.  
  5759. unregistersymbol(AOB_PHDEffect)
  5760. unregistersymbol(AOB_Identify)
  5761.  
  5762. {
  5763. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+EB783
  5764.  
  5765. "isaac-ng.exe"+EB75E: 8B 86 D8 B7 00 00 - mov eax,[esi+0000B7D8]
  5766. "isaac-ng.exe"+EB764: 2B 86 D4 B7 00 00 - sub eax,[esi+0000B7D4]
  5767. "isaac-ng.exe"+EB76A: C1 F8 02 - sar eax,02
  5768. "isaac-ng.exe"+EB76D: 85 C0 - test eax,eax
  5769. "isaac-ng.exe"+EB76F: 74 0A - je isaac-ng.exe+EB77B
  5770. "isaac-ng.exe"+EB771: 8B B6 D4 B7 00 00 - mov esi,[esi+0000B7D4]
  5771. "isaac-ng.exe"+EB777: 8B 06 - mov eax,[esi]
  5772. "isaac-ng.exe"+EB779: EB 08 - jmp isaac-ng.exe+EB783
  5773. "isaac-ng.exe"+EB77B: 8B 8E D4 B7 00 00 - mov ecx,[esi+0000B7D4]
  5774. "isaac-ng.exe"+EB781: 8B 01 - mov eax,[ecx]
  5775. // ---------- CHECKING PHD HERE ----------
  5776. "isaac-ng.exe"+EB783: 83 B8 B0 1E 00 00 00 - cmp dword ptr [eax+00001EB0],00
  5777. // ---------- DONE CHECKING PHD ----------
  5778. "isaac-ng.exe"+EB78A: 7F 72 - jg isaac-ng.exe+EB7FE
  5779. "isaac-ng.exe"+EB78C: 8B 35 04 F6 0D 01 - mov esi,[isaac-ng.exe+2DF604]
  5780. "isaac-ng.exe"+EB792: 8B 96 D8 B7 00 00 - mov edx,[esi+0000B7D8]
  5781. "isaac-ng.exe"+EB798: 2B 96 D4 B7 00 00 - sub edx,[esi+0000B7D4]
  5782. "isaac-ng.exe"+EB79E: F7 C2 FC FF FF FF - test edx,FFFFFFFC
  5783. "isaac-ng.exe"+EB7A4: 75 0F - jne isaac-ng.exe+EB7B5
  5784. "isaac-ng.exe"+EB7A6: 68 5C CA 06 01 - push isaac-ng.exe+26CA5C
  5785. "isaac-ng.exe"+EB7AB: 6A 00 - push 00
  5786. "isaac-ng.exe"+EB7AD: E8 3E D7 0E 00 - call isaac-ng.exe+1D8EF0
  5787. "isaac-ng.exe"+EB7B2: 83 C4 08 - add esp,08
  5788. }
  5789.  
  5790. {
  5791. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+1B8051
  5792.  
  5793. "isaac-ng.exe"+1B8029: 51 - push ecx
  5794. "isaac-ng.exe"+1B802A: 8D 46 38 - lea eax,[esi+38]
  5795. "isaac-ng.exe"+1B802D: D9 1C 24 - fstp dword ptr [esp]
  5796. "isaac-ng.exe"+1B8030: E8 2B A2 E4 FF - call isaac-ng.exe+2260
  5797. "isaac-ng.exe"+1B8035: 83 7E 3C 00 - cmp dword ptr [esi+3C],00
  5798. "isaac-ng.exe"+1B8039: 74 07 - je isaac-ng.exe+1B8042
  5799. "isaac-ng.exe"+1B803B: C6 86 44 02 00 00 00 - mov byte ptr [esi+00000244],00
  5800. "isaac-ng.exe"+1B8042: 8B 44 24 5C - mov eax,[esp+5C]
  5801. "isaac-ng.exe"+1B8046: 8B 88 C0 4B 00 00 - mov ecx,[eax+00004BC0]
  5802. "isaac-ng.exe"+1B804C: A1 04 F6 0D 01 - mov eax,[isaac-ng.exe+2DF604]
  5803. // ---------- CHECKING HERE ----------
  5804. "isaac-ng.exe"+1B8051: 80 BC 01 64 98 00 00 00 - cmp byte ptr [ecx+eax+00009864],00
  5805. // ---------- DONE CHECKING ----------
  5806. "isaac-ng.exe"+1B8059: 74 37 - je isaac-ng.exe+1B8092
  5807. "isaac-ng.exe"+1B805B: 8B 35 4C 11 0E 01 - mov esi,[isaac-ng.exe+2E114C]
  5808. "isaac-ng.exe"+1B8061: 05 40 8B 00 00 - add eax,00008B40
  5809. "isaac-ng.exe"+1B8066: E8 B5 36 F3 FF - call isaac-ng.exe+EB720
  5810. "isaac-ng.exe"+1B806B: 83 F8 25 - cmp eax,25
  5811. "isaac-ng.exe"+1B806E: 77 38 - ja isaac-ng.exe+1B80A8
  5812. "isaac-ng.exe"+1B8070: 8B 84 86 54 2F 04 00 - mov eax,[esi+eax*4+00042F54]
  5813. "isaac-ng.exe"+1B8077: 85 C0 - test eax,eax
  5814. "isaac-ng.exe"+1B8079: 74 2D - je isaac-ng.exe+1B80A8
  5815. "isaac-ng.exe"+1B807B: 83 C0 08 - add eax,08
  5816. }
  5817. </AssemblerScript>
  5818. </CheatEntry>
  5819. <CheatEntry>
  5820. <ID>924</ID>
  5821. <Description>"No Damage"</Description>
  5822. <LastState Activated="0"/>
  5823. <Color>80000008</Color>
  5824. <VariableType>Auto Assembler Script</VariableType>
  5825. <AssemblerScript>{ by HenryEx
  5826. for The Binding of Isaac: Afterbirth
  5827.  
  5828. Just like the title says, makes you invulnerable. By giving you the post-hit
  5829. invulnerability, to be exact.
  5830. }
  5831.  
  5832. [ENABLE]
  5833. aobscanmodule(AOB_NoDmg,isaac-ng.exe,83 * * * * * 00 0F 8F * * * * D9 EE)
  5834. registersymbol(AOB_NoDmg)
  5835.  
  5836. AOB_NoDmg+7:
  5837. db 90 E9 // jmp
  5838.  
  5839. [DISABLE]
  5840. AOB_NoDmg+7:
  5841. db 0F 8F // jg
  5842.  
  5843. unregistersymbol(AOB_NoDmg)
  5844.  
  5845. {
  5846. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+107B01
  5847.  
  5848. "isaac-ng.exe"+107ADC: 83 F8 0B - cmp eax,0B
  5849. "isaac-ng.exe"+107ADF: 75 12 - jne isaac-ng.exe+107AF3
  5850. "isaac-ng.exe"+107AE1: 80 BB 0C 91 01 00 00 - cmp byte ptr [ebx+0001910C],00
  5851. "isaac-ng.exe"+107AE8: 74 09 - je isaac-ng.exe+107AF3
  5852. "isaac-ng.exe"+107AEA: C6 83 0C 91 01 00 00 - mov byte ptr [ebx+0001910C],00
  5853. "isaac-ng.exe"+107AF1: EB 05 - jmp isaac-ng.exe+107AF8
  5854. "isaac-ng.exe"+107AF3: 83 F8 18 - cmp eax,18
  5855. "isaac-ng.exe"+107AF6: 75 02 - jne isaac-ng.exe+107AFA
  5856. "isaac-ng.exe"+107AF8: B1 01 - mov cl,01
  5857. "isaac-ng.exe"+107AFA: 83 BB 98 1B 00 00 00 - cmp dword ptr [ebx+00001B98],00
  5858. // ---------- JUMPING HERE ----------
  5859. "isaac-ng.exe"+107B01: 0F 8F 2F 1C 00 00 - jg isaac-ng.exe+109736
  5860. // ---------- JUMPING HERE ----------
  5861. "isaac-ng.exe"+107B07: D9 EE - fldz
  5862. "isaac-ng.exe"+107B09: D8 5D 08 - fcomp dword ptr [ebp+08]
  5863. "isaac-ng.exe"+107B0C: DF E0 - fnstsw ax
  5864. "isaac-ng.exe"+107B0E: F6 C4 05 - test ah,05
  5865. "isaac-ng.exe"+107B11: 0F 8A 1F 1C 00 00 - jp isaac-ng.exe+109736
  5866. "isaac-ng.exe"+107B17: 84 C9 - test cl,cl
  5867. "isaac-ng.exe"+107B19: 0F 85 17 1C 00 00 - jne isaac-ng.exe+109736
  5868. "isaac-ng.exe"+107B1F: BF 39 01 00 00 - mov edi,00000139
  5869. "isaac-ng.exe"+107B24: 8B C6 - mov eax,esi
  5870. "isaac-ng.exe"+107B26: C6 83 94 1B 00 00 01 - mov byte ptr [ebx+00001B94],01
  5871. }
  5872. </AssemblerScript>
  5873. </CheatEntry>
  5874. <CheatEntry>
  5875. <ID>896</ID>
  5876. <Description>"Custom Seeds w/ Achievements"</Description>
  5877. <LastState Activated="0"/>
  5878. <Color>80000008</Color>
  5879. <VariableType>Auto Assembler Script</VariableType>
  5880. <AssemblerScript>{ by HenryEx
  5881. for The Binding of Isaac: Afterbirth
  5882.  
  5883. Disables the "seed lock" when using custom seeds
  5884.  
  5885. Pro: Enables achievements on that run again
  5886. Con: Resetting with R will change the seed again
  5887. }
  5888.  
  5889. [ENABLE]
  5890. aobscanmodule(AOB_SeedLock,isaac-ng.exe,E8 * * * * A1 * * * * C6 80 * * * * 01 8B)
  5891. registersymbol(AOB_SeedLock)
  5892.  
  5893. AOB_SeedLock+10:
  5894. db 00
  5895.  
  5896. [DISABLE]
  5897. AOB_SeedLock+10:
  5898. db 01
  5899.  
  5900. unregistersymbol(AOB_SeedLock)
  5901.  
  5902. {
  5903. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+184C59
  5904.  
  5905. "isaac-ng.exe"+184C37: 88 9A 04 15 0A 00 - mov [edx+000A1504],bl
  5906. "isaac-ng.exe"+184C3D: EB 21 - jmp isaac-ng.exe+184C60
  5907. "isaac-ng.exe"+184C3F: 53 - push ebx
  5908. "isaac-ng.exe"+184C40: 51 - push ecx
  5909. "isaac-ng.exe"+184C41: B8 08 00 00 00 - mov eax,00000008
  5910. "isaac-ng.exe"+184C46: D9 1C 24 - fstp dword ptr [esp]
  5911. "isaac-ng.exe"+184C49: E8 82 59 00 00 - call isaac-ng.exe+18A5D0
  5912. "isaac-ng.exe"+184C4E: 56 - push esi
  5913. "isaac-ng.exe"+184C4F: E8 7C BF FF FF - call isaac-ng.exe+180BD0
  5914. "isaac-ng.exe"+184C54: A1 50 11 43 00 - mov eax,[isaac-ng.exe+2E1150]
  5915. // ---------- INJECTING HERE ----------
  5916. "isaac-ng.exe"+184C59: C6 80 04 15 0A 00 01 - mov byte ptr [eax+000A1504],01
  5917. // ---------- DONE INJECTING ----------
  5918. "isaac-ng.exe"+184C60: 8B 4D F4 - mov ecx,[ebp-0C]
  5919. "isaac-ng.exe"+184C63: 64 89 0D 00 00 00 00 - mov fs:[00000000],ecx
  5920. "isaac-ng.exe"+184C6A: 59 - pop ecx
  5921. "isaac-ng.exe"+184C6B: 5F - pop edi
  5922. "isaac-ng.exe"+184C6C: 5E - pop esi
  5923. "isaac-ng.exe"+184C6D: 5B - pop ebx
  5924. "isaac-ng.exe"+184C6E: 8B 4D F0 - mov ecx,[ebp-10]
  5925. "isaac-ng.exe"+184C71: 33 CD - xor ecx,ebp
  5926. "isaac-ng.exe"+184C73: E8 F6 88 0D 00 - call isaac-ng.exe+25D56E
  5927. "isaac-ng.exe"+184C78: 8B E5 - mov esp,ebp
  5928. }
  5929. </AssemblerScript>
  5930. </CheatEntry>
  5931. <CheatEntry>
  5932. <ID>926</ID>
  5933. <Description>"Load old GameStates"</Description>
  5934. <LastState Activated="0"/>
  5935. <Color>80000008</Color>
  5936. <VariableType>Auto Assembler Script</VariableType>
  5937. <AssemblerScript>{ by HenryEx
  5938. for The Binding of Isaac: Afterbirth
  5939.  
  5940. Patches the Checksum verification for GameStates, so you can play backed-up
  5941. versions of interim saves. Yay!
  5942. }
  5943.  
  5944. [ENABLE]
  5945. aobscanmodule(AOB_NoChksum,isaac-ng.exe,81 * 96 69 69 96 89 * * * * * 3b * 0F 85 * * * * 8B * * * * * 3B * * * * * 0F 85)
  5946. registersymbol(AOB_NoChksum)
  5947.  
  5948. AOB_NoChksum+E:
  5949. db EB 04
  5950.  
  5951. AOB_NoChksum+20:
  5952. db EB 04
  5953.  
  5954. [DISABLE]
  5955. AOB_NoChksum+E:
  5956. db 0F 85
  5957.  
  5958. AOB_NoChksum+20:
  5959. db 0F 85
  5960.  
  5961. unregistersymbol(AOB_NoChksum)
  5962.  
  5963. {
  5964. // ORIGINAL CODE - INJECTION POINT: "isaac-ng.exe"+1CBE1D
  5965.  
  5966. "isaac-ng.exe"+1CBDF8: 8B 01 - mov eax,[ecx]
  5967. "isaac-ng.exe"+1CBDFA: 8B 50 0C - mov edx,[eax+0C]
  5968. "isaac-ng.exe"+1CBDFD: 6A 00 - push 00
  5969. "isaac-ng.exe"+1CBDFF: 6A 10 - push 10
  5970. "isaac-ng.exe"+1CBE01: FF D2 - call edx
  5971. "isaac-ng.exe"+1CBE03: 8B 8D 64 FF FF FF - mov ecx,[ebp-0000009C]
  5972. "isaac-ng.exe"+1CBE09: 8B 86 C4 41 01 00 - mov eax,[esi+000141C4]
  5973. "isaac-ng.exe"+1CBE0F: 81 F1 96 69 69 96 - xor ecx,96696996
  5974. "isaac-ng.exe"+1CBE15: 89 8D 64 FF FF FF - mov [ebp-0000009C],ecx
  5975. "isaac-ng.exe"+1CBE1B: 3B C8 - cmp ecx,eax
  5976. // ---------- JUMPING HERE ----------
  5977. "isaac-ng.exe"+1CBE1D: 0F 85 6F 0B 00 00 - jne isaac-ng.exe+1CC992
  5978. // ---------- JUMPING HERE ----------
  5979. "isaac-ng.exe"+1CBE23: 8B 0D 7C 41 6B 01 - mov ecx,[isaac-ng.exe+2E417C]
  5980. "isaac-ng.exe"+1CBE29: 3B 81 F0 06 00 00 - cmp eax,[ecx+000006F0]
  5981. // ---------- ALSO JUMPING HERE ----------
  5982. "isaac-ng.exe"+1CBE2F: 0F 85 5D 0B 00 00 - jne isaac-ng.exe+1CC992
  5983. // ---------- ALSO JUMPING HERE ----------
  5984. "isaac-ng.exe"+1CBE35: 8B 17 - mov edx,[edi]
  5985. "isaac-ng.exe"+1CBE37: 8B C6 - mov eax,esi
  5986. "isaac-ng.exe"+1CBE39: 8B CB - mov ecx,ebx
  5987. "isaac-ng.exe"+1CBE3B: 89 53 08 - mov [ebx+08],edx
  5988. "isaac-ng.exe"+1CBE3E: E8 8D 39 00 00 - call isaac-ng.exe+1CF7D0
  5989. "isaac-ng.exe"+1CBE43: 8D 85 73 FF FF FF - lea eax,[ebp-0000008D]
  5990. "isaac-ng.exe"+1CBE49: 8B CB - mov ecx,ebx
  5991. }
  5992. </AssemblerScript>
  5993. </CheatEntry>
  5994. </CheatEntries>
  5995. </CheatEntry>
  5996. </CheatEntries>
  5997. <UserdefinedSymbols/>
  5998. <Comments>Table by HenryEx, version 23/12/2015
  5999. Made for BoI:Afterbirth v1.06.0077
  6000. </Comments>
  6001. </CheatTable>
Add Comment
Please, Sign In to add comment