Advertisement
andr2535

GSC RAM Editor(originally Crystal_'s implementation)

Mar 20th, 2017
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.29 KB | None | 0 0
  1. Modified version of the one described in this link(made by Crystal_):
  2. https://www.youtube.com/watch?v=ffZjCabeNr4
  3.  
  4. Items that are needed in computer from position one:
  5.  
  6. Berry juice can be gotten from a Shuckle holding a berry.
  7. TM10 can be gotten from Celadon Department Store.
  8. Stardust, can be gotten from a 1/4 of fresh caught Staryus,
  9. and from a seller in the goldenrod tunnel on monday mornings.(mornings are from 4:00 AM to 9:59 AM.)
  10. Or you could just use item modifying ace to get them :P
  11.  
  12.  
  13. - X Accuracy x144
  14. - TM28 (Dig) x1
  15. - [Any Item] x[Any Amount]
  16. - Super Repel x94
  17. - Stardust x1
  18. - [Any Item] x[Any Amount]
  19. - Dire Hit x87
  20. - Super Repel x55
  21. - Ether x3
  22. - Poke Ball x94
  23. - Berry Juice x1
  24. - [Any Item] x[Any Amount]
  25. - Dire Hit x95
  26. - Super Repel x3
  27. - Pass (x1)
  28. - [Any Item] x[Any Amount]
  29. - Potion x03
  30. - TM10 x[Any Amount]
  31.  
  32. *********************************************************************
  33.  
  34. ld hl,DB90 ---- 21 90 DB ------ I1 = X Accuracy | Q1 = 144 | I2 = TM28
  35. ld bc,XXXX ---- 01 XX XX ------ Q2 = 01 | I3 = Q3 = ANY
  36. ldi a,(hl) ---- 2A ------------ I4 = Super Repel
  37. ld e,(hl) ----- 5E ------------ Q4 = 94
  38. add a,e ------- 83 ------------ I5 = Stardust
  39. ld bc,XXXX ---- 01 XX XX ------ Q5 = 01 | I6 = Q6 = ANY
  40. inc l --------- 2C ------------ I7 = Dire Hit
  41. ld d,a -------- 57 ------------ Q7 = 87
  42. ldi a,(hl) ---- 2A ------------ I8 = Super Repel
  43. scf ----------- 37 ------------ Q8 = 55
  44. ccf ----------- 3F ------------ I9 = Ether
  45. inc bc -------- 03 ------------ Q9 = 03
  46. dec b --------- 05 ------------ I10 = Poke Ball
  47. ld e,(hl) ----- 5E ------------ Q10 = 94
  48. adc a,e ------- 8B ------------ I11 = Berry Juice
  49. ld bc,XXXX ---- 01 XX XX ------ Q11 = 01 | I12 = Q12 = ANY
  50. inc l --------- 2C ------------ I13 = Dire Hit
  51. ld e,a -------- 5F ------------ Q13 = 95
  52. ldi a,(hl) ---- 2A ------------ I14 = Super Repel
  53. inc bc -------- 03 ------------ Q14 = 03
  54. add a,(hl) ---- 86 ------------ I15 = Pass
  55. ld bc,XXXX ---- 01 XX XX ------ Q15 = 01 | I16 = Q16 = ANY
  56. ld (de),a ----- 12 ------------ I17 = Potion
  57. inc bc -------- 03 ------------ Q17 = 03
  58. RET ----------- C9 ------------ I18 = TM10
  59.  
  60.  
  61. To change a specific ram address, you can change the name of BOX4 in Bill's pc,
  62. the syntax looks like this:
  63. XXXXYY
  64. Where XXXX is the address of the ram block to be changed, and YY is the new value.
  65. The ram address is inserted as big-endian, and should thus be entered reverse from
  66. gameshark codes, below is a list of symbols you should use to enter the numbers.
  67.  
  68. Note that $ is the male symbol and % the female symbol. The space is represented as _
  69.  
  70. 00 -- AA
  71. 01 -- AB
  72. 02 -- AC
  73. 03 -- AD
  74. 04 -- AE
  75. 05 -- AF
  76. 06 -- AG
  77. 07 -- AH
  78. 08 -- AI
  79. 09 -- AJ
  80. 0A -- AK
  81. 0B -- AL
  82. 0C -- AM
  83. 0D -- AN
  84. 0E -- AO
  85. 0F -- AP
  86. 10 -- AQ
  87. 11 -- AR
  88. 12 -- AS
  89. 13 -- AT
  90. 14 -- AU
  91. 15 -- AV
  92. 16 -- AW
  93. 17 -- AX
  94. 18 -- AY
  95. 19 -- AZ
  96. 1A -- BZ
  97. 1B -- CZ
  98. 1C -- DZ
  99. 1D -- EZ
  100. 1E -- FZ
  101. 1F -- GZ
  102. 20 -- HZ
  103. 21 -- IZ
  104. 22 -- JZ
  105. 23 -- KZ
  106. 24 -- LZ
  107. 25 -- MZ
  108. 26 -- NZ
  109. 27 -- OZ
  110. 28 -- PZ
  111. 29 -- QZ
  112. 2A -- RZ
  113. 2B -- SZ
  114. 2C -- TZ
  115. 2D -- UZ
  116. 2E -- VZ
  117. 2F -- WZ
  118. 30 -- XZ
  119. 31 -- YZ
  120. 32 -- ZZ
  121. 33 -- aT
  122. 34 -- aU
  123. 35 -- aV
  124. 36 -- aW
  125. 37 -- aX
  126. 38 -- aY
  127. 39 -- aZ
  128. 3A -- bZ
  129. 3B -- cZ
  130. 3C -- dZ
  131. 3D -- eZ
  132. 3E -- fZ
  133. 3F -- gZ
  134. 40 -- hZ
  135. 41 -- iZ
  136. 42 -- jZ
  137. 43 -- kZ
  138. 44 -- lZ
  139. 45 -- mZ
  140. 46 -- nZ
  141. 47 -- oZ
  142. 48 -- pZ
  143. 49 -- qZ
  144. 4A -- rZ
  145. 4B -- sZ
  146. 4C -- tZ
  147. 4D -- uZ
  148. 4E -- vZ
  149. 4F -- wZ
  150. 50 -- xZ
  151. 51 -- yZ
  152. 52 -- zZ
  153. 53 -- ta
  154. 54 -- ua
  155. 55 -- va
  156. 56 -- wa
  157. 57 -- xa
  158. 58 -- ya
  159. 59 -- za
  160. 5A -- zb
  161. 5B -- zc
  162. 5C -- zd
  163. 5D -- ze
  164. 5E -- zf
  165. 5F -- zg
  166. 60 -- zh
  167. 61 -- zi
  168. 62 -- zj
  169. 63 -- zk
  170. 64 -- zl
  171. 65 -- zm
  172. 66 -- zn
  173. 67 -- zo
  174. 68 -- zp
  175. 69 -- zq
  176. 6A -- zr
  177. 6B -- zs
  178. 6C -- zt
  179. 6D -- zu
  180. 6E -- zv
  181. 6F -- zw
  182. 70 -- zx
  183. 71 -- zy
  184. 72 -- zz
  185. 73 -- ?N
  186. 74 -- ?O
  187. 75 -- ?P
  188. 76 -- ?Q
  189. 77 -- ?R
  190. 78 -- ?S
  191. 79 -- ?T
  192. 7A -- ?U
  193. 7B -- ?V
  194. 7C -- ?W
  195. 7D -- ?X
  196. 7E -- ?Y
  197. 7F -- ?Z
  198. 80 -- ?(
  199. 81 -- ?)
  200. 82 -- ?:
  201. 83 -- ?;
  202. 84 -- ?[
  203. 85 -- ?]
  204. 86 -- ?a
  205. 87 -- ?b
  206. 88 -- ?c
  207. 89 -- ?d
  208. 8A -- ?e
  209. 8B -- ?f
  210. 8C -- ?g
  211. 8D -- ?h
  212. 8E -- ?i
  213. 8F -- ?j
  214. 90 -- ?k
  215. 91 -- ?l
  216. 92 -- ?m
  217. 93 -- ?n
  218. 94 -- ?o
  219. 95 -- ?p
  220. 96 -- ?q
  221. 97 -- ?r
  222. 98 -- ?s
  223. 99 -- ?t
  224. 9A -- ?u
  225. 9B -- ?v
  226. 9C -- ?w
  227. 9D -- ?x
  228. 9E -- ?y
  229. 9F -- ?z
  230. A0 -- 9b
  231. A1 -- 9c
  232. A2 -- 9d
  233. A3 -- 9e
  234. A4 -- 9f
  235. A5 -- 9g
  236. A6 -- 9h
  237. A7 -- 9i
  238. A8 -- 9j
  239. A9 -- 9k
  240. AA -- 9l
  241. AB -- 9m
  242. AC -- 9n
  243. AD -- 9o
  244. AE -- 9p
  245. AF -- 9q
  246. B0 -- 9r
  247. B1 -- 9s
  248. B2 -- 9t
  249. B3 -- 9u
  250. B4 -- 9v
  251. B5 -- 9w
  252. B6 -- 9x
  253. B7 -- 9y
  254. B8 -- 9z
  255. B9 -- 'r?
  256. BA -- 's?
  257. BB -- 't?
  258. BC -- 'v?
  259. BD -- 'v!
  260. BE -- 'v.
  261. BF -- 'v&
  262. C0 -- 'vé
  263. C1 -- 'm$
  264. C2 -- 'r$
  265. C3 -- 's$
  266. C4 -- 't$
  267. C5 -- 'v$
  268. C6 -- 'd0
  269. C7 -- 'd1
  270. C8 -- 'd2
  271. C9 -- 'd3
  272. CA -- 'd4
  273. CB -- 'd5
  274. CC -- 'd6
  275. CD -- 'd7
  276. CE -- 'd8
  277. CF -- 'd9
  278. D0 -- 'l9
  279. D1 -- 'm9
  280. D2 -- 'r9
  281. D3 -- 's9
  282. D4 -- 't9
  283. D5 -- 'v9
  284. D6 -- !$
  285. D7 -- .$
  286. D8 -- &$
  287. D9 -- é$
  288. DA -- !/
  289. DB -- ./
  290. DC -- &/
  291. DD -- é/
  292. DE -- .0
  293. DF -- .1
  294. E0 -- .2
  295. E1 -- .3
  296. E2 -- .4
  297. E3 -- .5
  298. E4 -- .6
  299. E5 -- .7
  300. E6 -- .8
  301. E7 -- .9
  302. E8 -- &9
  303. E9 -- /0
  304. EA -- /1
  305. EB -- /2
  306. EC -- 00
  307. ED -- 01
  308. EE -- 02
  309. EF -- 03
  310. F0 -- 04
  311. F1 -- 05
  312. F2 -- 06
  313. F3 -- 07
  314. F4 -- 08
  315. F5 -- 09
  316. F6 -- 19
  317. F7 -- 29
  318. F8 -- 39
  319. F9 -- 49
  320. FA -- 59
  321. FB -- 69
  322. FC -- 79
  323. FD -- 89
  324. FE -- 99
  325. FF -- _A
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement