Tyler_Elric

cmdsdump.json

Nov 10th, 2012
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.15 KB | None | 0 0
  1. [
  2. {
  3. "description":"Does absolutely nothing.",
  4. "name":"nop",
  5. "size":1
  6. },
  7. {
  8. "description":"Does absolutely nothing.",
  9. "name":"nop1",
  10. "size":1
  11. },
  12. {
  13. "description":"Ends the execution of the script.",
  14. "name":"end",
  15. "size":1
  16. },
  17. {
  18. "description":"Pops back to the last calling command used.",
  19. "name":"return",
  20. "size":1
  21. },
  22. {
  23. "description":"Continues script execution from another point. Can be returned to.",
  24. "name":"call",
  25. "size":261
  26. },
  27. {
  28. "description":"Continues script execution from another point.",
  29. "name":"goto",
  30. "size":261
  31. },
  32. {
  33. "description":"If the last comparison returned a certain value, jumps to another script.",
  34. "name":"if1",
  35. "size":518
  36. },
  37. {
  38. "description":"Calling version of the if command.",
  39. "name":"if2",
  40. "size":518
  41. },
  42. {
  43. "description":"Jumps to a built-in function.",
  44. "name":"gotostd",
  45. "size":258
  46. },
  47. {
  48. "description":"Calls a built-in function.",
  49. "name":"callstd",
  50. "size":258
  51. },
  52. {
  53. "description":"Jumps to a built-in function, conditional version.",
  54. "name":"gotostdif",
  55. "size":515
  56. },
  57. {
  58. "description":"Jumps to a built-in function, conditional version.",
  59. "name":"callstdif",
  60. "size":515
  61. },
  62. {
  63. "description":"Jumps to a default RAM location, executing the script stored there.",
  64. "name":"jumpram",
  65. "size":1
  66. },
  67. {
  68. "description":"Kills the script and resets the script RAM.",
  69. "name":"killscript",
  70. "size":1
  71. },
  72. {
  73. "description":"Sets a predefined address to the specified byte value.",
  74. "name":"setbyte",
  75. "size":258
  76. },
  77. {
  78. "description":"Loads a pointer into the script RAM so other commands can use it.",
  79. "name":"loadpointer",
  80. "size":518
  81. },
  82. {
  83. "description":"Sets a memory bank to the specified byte value.",
  84. "name":"setbyte2",
  85. "size":515
  86. },
  87. {
  88. "description":"Sets the byte at the specified offset to a certain value.",
  89. "name":"writebytetooffset",
  90. "size":518
  91. },
  92. {
  93. "description":"Loads the byte found at a pointer into the script RAM so other commands can use it.",
  94. "name":"loadbytefrompointer",
  95. "size":518
  96. },
  97. {
  98. "description":"Sets the byte into a specified pointer.",
  99. "name":"setfarbyte",
  100. "size":518
  101. },
  102. {
  103. "description":"Copies one script bank to another.",
  104. "name":"copyscriptbanks",
  105. "size":515
  106. },
  107. {
  108. "description":"Copies a byte value from one place to another.",
  109. "name":"copybyte",
  110. "size":521
  111. },
  112. {
  113. "description":"Sets variable A to any value.",
  114. "name":"setvar",
  115. "size":517
  116. },
  117. {
  118. "description":"Adds any value to variable A.",
  119. "name":"addvar",
  120. "size":517
  121. },
  122. {
  123. "description":"Subtracts any value from variable A.",
  124. "name":"subvar",
  125. "size":517
  126. },
  127. {
  128. "description":"Copies variable B to A.",
  129. "name":"copyvar",
  130. "size":517
  131. },
  132. {
  133. "description":"Sets variable B to A, but only if B is higher than zero.",
  134. "name":"copyvarifnotzero",
  135. "size":517
  136. },
  137. {
  138. "description":"Compares two banks.",
  139. "name":"comparebanks",
  140. "size":517
  141. },
  142. {
  143. "description":"Compares a variable stored in a buffer to a byte value.",
  144. "name":"comparebanktobyte",
  145. "size":515
  146. },
  147. {
  148. "description":"Compares a bank with a byte at some location.",
  149. "name":"comparebanktofarbyte",
  150. "size":518
  151. },
  152. {
  153. "description":"Compares a byte at some location to a buffered variable.\r\nThe reverse of comparevartofarbyte.",
  154. "name":"comparefarbytetobank",
  155. "size":518
  156. },
  157. {
  158. "description":"Compares a byte at some location to a byte value.",
  159. "name":"comparefarbytetobyte",
  160. "size":518
  161. },
  162. {
  163. "description":"Compares a byte at some location to a byte at another location.",
  164. "name":"comparefarbytes",
  165. "size":521
  166. },
  167. {
  168. "description":"Compares variable A to a value.",
  169. "name":"compare",
  170. "size":517
  171. },
  172. {
  173. "description":"Compares two variables.",
  174. "name":"comparevars",
  175. "size":517
  176. },
  177. {
  178. "description":"Calls a custom ASM routine.",
  179. "name":"callasm",
  180. "size":261
  181. },
  182. {
  183. "description":"This command is currently under investigation. No detailed information is available at this time.",
  184. "name":"cmd24",
  185. "size":261
  186. },
  187. {
  188. "description":"Calls a special event.",
  189. "name":"special",
  190. "size":259
  191. },
  192. {
  193. "description":"Like special, but can store a returned value.",
  194. "name":"special2",
  195. "size":517
  196. },
  197. {
  198. "description":"Sets the script to a wait state, useful for some specials and commands.",
  199. "name":"waitstate",
  200. "size":1
  201. },
  202. {
  203. "description":"Pauses script execution for a short amount of time.",
  204. "name":"pause",
  205. "size":259
  206. },
  207. {
  208. "description":"Sets a flag for later use.",
  209. "name":"setflag",
  210. "size":259
  211. },
  212. {
  213. "description":"Clears the value of a flag.",
  214. "name":"clearflag",
  215. "size":259
  216. },
  217. {
  218. "description":"Checks the value of a flag.",
  219. "name":"checkflag",
  220. "size":259
  221. },
  222. {
  223. "description":"This command is currently under investigation. No detailed information is available at this time.",
  224. "name":"cmd2c",
  225. "size":517
  226. },
  227. {
  228. "description":"Checks the daily flags to see if any of them have been set already, but only if they were set previously. Then it clears those flags. R/S/E only.",
  229. "name":"checkdailyflags",
  230. "size":1
  231. },
  232. {
  233. "description":"Resets the value of variables 0x8000, 0x8001 and 0x8002.",
  234. "name":"resetvars",
  235. "size":1
  236. },
  237. {
  238. "description":"Plays a sound.",
  239. "name":"sound",
  240. "size":259
  241. },
  242. {
  243. "description":"Checks if a sound, a fanfare or a song is currently being played.",
  244. "name":"checksound",
  245. "size":1
  246. },
  247. {
  248. "description":"Plays a Sappy song as a fanfare.",
  249. "name":"fanfare",
  250. "size":259
  251. },
  252. {
  253. "description":"Waits for fanfare to finish.",
  254. "name":"waitfanfare",
  255. "size":1
  256. },
  257. {
  258. "description":"Switches to another Sappy song.",
  259. "name":"playsong",
  260. "size":516
  261. },
  262. {
  263. "description":"Switches to another Sappy song.",
  264. "name":"playsong2",
  265. "size":259
  266. },
  267. {
  268. "description":"Gently fades the current music back to the map's default song.",
  269. "name":"fadedefault",
  270. "size":1
  271. },
  272. {
  273. "description":"Gently fades into another Sappy song.",
  274. "name":"fadesong",
  275. "size":259
  276. },
  277. {
  278. "description":"Fades out the currently playing Sappy song.",
  279. "name":"fadeout",
  280. "size":258
  281. },
  282. {
  283. "description":"Fades the currently playing Sappy song back in.",
  284. "name":"fadein",
  285. "size":258
  286. },
  287. {
  288. "description":"Warps the player to another map.",
  289. "name":"warp",
  290. "size":1288
  291. },
  292. {
  293. "description":"Warps the player to another map. No sound effect.",
  294. "name":"warpmuted",
  295. "size":1288
  296. },
  297. {
  298. "description":"Warps the player to another map. Walking effect.",
  299. "name":"warpwalk",
  300. "size":1288
  301. },
  302. {
  303. "description":"Warps the player to another map. Hole effect.",
  304. "name":"warphole",
  305. "size":515
  306. },
  307. {
  308. "description":"Warps the player to another map. Teleport effect.",
  309. "name":"warpteleport",
  310. "size":1288
  311. },
  312. {
  313. "description":"Warps the player to another map.",
  314. "name":"warp3",
  315. "size":1288
  316. },
  317. {
  318. "description":"Sets the place a warp that lead to warp 127 of map 127.127 warps the player.",
  319. "name":"setwarpplace",
  320. "size":1288
  321. },
  322. {
  323. "description":"Warps the player to another map.",
  324. "name":"warp4",
  325. "size":1288
  326. },
  327. {
  328. "description":"Warps the player to another map.",
  329. "name":"warp5",
  330. "size":1288
  331. },
  332. {
  333. "description":"Gets current position of the player on the map and stores it on specified variables.",
  334. "name":"getplayerpos",
  335. "size":517
  336. }
  337. ]
Add Comment
Please, Sign In to add comment