I am working on a Pokemon game. Idk if i should keep going because it would be text based since i havent learned how to make games with the graphs. To look at the game just download the game here and send it all to ram then open pgrmRPG: http://www.mediafire.com/file/ar7w273su8xfibp/pokemongame.zip/file
|
More pokemon is always a good thing - however this should probably be in the 'Your Projects' section.
Care to post any screenshots?
Care to post any screenshots?
tr1p1ea wrote:
More pokemon is always a good thing - however this should probably be in the 'Your Projects' section.
Care to post any screenshots?
Care to post any screenshots?
Sure here
How tho show text on the graph screen:
Hit [2nd] [prgm], and go to the 'text(' token. Then type your y position, a comma, and THEN the x position. This goes by pixels so it starts at 1,1 as the minimum. Then add another comma and add the text inside quotes. You can use the clrDraw command found in the same menu to clear the graph.
Hit [2nd] [prgm], and go to the 'text(' token. Then type your y position, a comma, and THEN the x position. This goes by pixels so it starts at 1,1 as the minimum. Then add another comma and add the text inside quotes. You can use the clrDraw command found in the same menu to clear the graph.
You would not want to use the graph because you would need to make a custom menu (which isn't that easy for beginners). If I were you I would just stay on the home screen. Later, if you ever want to add some animation, you could switch between the graph and home, but since you haven't done anything on the graph yet I wouldn't. (After this try doing some stuff on the graph)
I know it's been a month, but I saw this and it piqued my interest. Pokemon already exists on the TI-84 Plus CE, but mostly as incomplete/faulty ports (and the Ti-Boy emulator, but where's the fun in that?), so I think this is a neat idea! Here's a little graphing code I made a while back, heavily commented:
Code:
The most important part of this are the StoreGDB and RecallGDB commands, they let you save old graph settings so you can completely break them and then reset afterwards, there's documentation on the TI-Basic Developer website. This should get your started with the graph, creating custom menus, and maybe some animations too. Good luck Frosty!
Code:
0→K
"initialize a variable for getKey later
StoreGDB 1
"store original graph settngs
132→Xmin
132→Xmax
82→Ymin
82→Ymax
"change graph size settings
"the usable graph size is 264x164, so I'd resize it to that for
"lines, animations, shapes, etc.
AxesOff
GridOff
CoordOff
LabelOff
"remove extra graph components
Full
"make sure the screen is already fullscreen
ClrHome
"and make it clean
Output(4,6,"THESE ARE WORDS."
Output(6,8,"Press Enter"
Pause
Horiz
"set the screen to half-graph + half-homescreen
TextColor(RED
"text printed to the graph after this line will be red
Text(8,10,"Moar"
TextColor(LTBLUE
"text printed after this line will be light blue
Text(22,10,"Words")
Input "NUMBER: ",A
TextColor(BLACK
"text printed after this line will be black
Text(60,10,"This is a number: "+toString(A)
"you can't add a number to a string, so the
"variable [A] is made into a string here
Disp " "
"makes a new line
Pause " (ENTER TO QUIT)"
Full
DispGraph
"toggles screen straight to full-size graph
Repeat K≠0
getKey→K
"gets a keypad keypress and stores it to [K] as a number
Text(70,35,"Hope this helps ya, good luck!"
End
TextColor(BLACK
RecallGDB 1
"reset original graph settings
DelVar GDB1
"delete the old settings, they take up valuable space
ClrHome
The most important part of this are the StoreGDB and RecallGDB commands, they let you save old graph settings so you can completely break them and then reset afterwards, there's documentation on the TI-Basic Developer website. This should get your started with the graph, creating custom menus, and maybe some animations too. Good luck Frosty!
"You can say literally anything and claim it's a quote from The Art of War." -Sun Tzu Update your MyCalcs coward.
Ah, Pokemon on a graphing calculator, takes me back to my old project.. I really need to crack out the code and notes and do something again..
I've played that and I hope you do get back to it because it was very cool from what I saw. Though I have to say my favorite Pokemon game on ti84 is a remake of the emerald battle coliseum. Hope to keep working on this, as I have a 3 week spring break bc of CoRoNa ViRuS
FrostyCodes wrote:
I am working on a Pokemon game. Idk if i should keep going because it would be text based since i havent learned how to make games with the graphs. To look at the game just download the game here and send it all to ram then open pgrmRPG: http://www.mediafire.com/file/ar7w273su8xfibp/pokemongame.zip/file
Hi, keep it on. Pokemon is a good choice.
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.
» Go to Registration page
» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Advertisement