User talk:Zzo38/Famicom Hangman: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
(Fixing the excuses)
 
(→‎trydata: new section)
Line 7: Line 7:


== trydata ==
== trydata ==
Where did you get the values used for trydata?
Where did you get the values used for <code>trydata</code>?
<code>
<pre>
; Number of tries by number of letters
; Number of tries by number of letters
trydata .db 0,11,10,9,8,7,6,6,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3
trydata .db 0,11,10,9,8,7,6,6,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3
</code>
</pre>
--[[User:Tepples|Tepples]] 19:06, 30 September 2012 (MDT)

Revision as of 01:06, 1 October 2012

Fixing the excuses

I looked at what you thought was keeping the game out of the multicart project.

  • "Too large ROM, wrong mapper": I can add BNROM games to A53 by modifying the values in the table you called buscon. I can also help you convert this game to BNROM if you want. A commercial Hangman-like game for NES uses a mapper identical to BNROM except for scrolling, and Hangman doesn't really scroll.
  • "Requires keyboard": You could add an on-screen keyboard.
  • "Trademark": If you were calling it "Wheel of Fortune", that'd be one thing. But I don't see any issues with the name "Hangman" at least on Wikipedia:Hangman (game). Who has a trademark on "Hangman" where you live?

--Tepples 19:06, 30 September 2012 (MDT)

trydata

Where did you get the values used for trydata?

	; Number of tries by number of letters
trydata	.db 0,11,10,9,8,7,6,6,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,3

--Tepples 19:06, 30 September 2012 (MDT)