Search found 8 matches

by crazydrivr
Sat May 20, 2006 11:26 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Need help with RPG!
Replies: 11
Views: 14468

Thanks for the tip. I am still kinda lost on how to use the editor, but it is really helping.
by crazydrivr
Thu May 18, 2006 10:25 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Help with saving a game
Replies: 5
Views: 8061

I am making an RPG, so it needs to save variables and still allow them to change and also save what sub you are on. Is that possible on qbasic?
by crazydrivr
Wed May 17, 2006 10:28 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Help with saving a game
Replies: 5
Views: 8061

Help with saving a game

I need help with making a save system for a game. Can anyone help?
by crazydrivr
Mon May 08, 2006 4:10 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Need help with RPG!
Replies: 11
Views: 14468

Thanks again. My program wouldn't copy paste from there to the internet, so I had to type it again on the post page. So most of the problems I had on the last post is really on my program. I just must have skipped them. Thanks though that all really helps.
by crazydrivr
Sun May 07, 2006 8:53 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Need help with RPG!
Replies: 11
Views: 14468

SUB wilderness CLS DIM wild$(15) wild$(1) = "|------C--------------------|" wild$(2) = "|-----I-----I---I----I-------|" 'there are I's scattered all over. wild$(3) = "|--I--------I---I---I---I-----|" 'they represent trees. wild$(4) = "|-----------------------------...
by crazydrivr
Sun May 07, 2006 8:19 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Need help with RPG!
Replies: 11
Views: 14468

Ok. That helps a little. Now I need to make it so that it picks a random number (1 through 10) every time I move on the screen and if the random number is 9, then it calls the battle sub. Any help with how to do that?
by crazydrivr
Sun May 07, 2006 7:52 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Need help with RPG!
Replies: 11
Views: 14468

Need help with RPG!

I know i posted earlier today about needing help with subs and thanks to Nathan1993 i sort of get it, but some more help with transfering money from one sub to another or how to use FUNCTIONS would really help. I also realized that i need help with some more things. For starters, i need to put an ar...
by crazydrivr
Sun May 07, 2006 2:51 pm
Forum: QBASIC and QB64 Questions & Answers
Topic: Need help with subs!!!
Replies: 2
Views: 4497

Need help with subs!!!

I am making an RPG game that uses money, and I put the shops in a sub. I need a way to total the money i picked up in one sub or the main module and transfer it to the shop subs. So basically a way to transfer a variable from one sub to another.