Title: Game Code Development Area | |
friendsoffortiesfive > General > Games | Go to subcategory: |
Author | Content |
Zenith | |
Date Posted:02/05/2023 8:20 PMCopy HTML CONCEIVE, BELIEVE, ACHIEVE!
|
|
Niceguy2 | #1226 |
Re:Game Code Development Area Date Posted:06/20/2024 3:09 AMCopy HTML Not yet. |
|
Zenith | #1227 |
Re:Game Code Development Area Date Posted:06/20/2024 3:51 AMCopy HTML Another way to make a folder in C:\ root is: A black window will pop up showing C:\Users\Causey> 3: Type CD\ on the black window ... You will now see C:\> =========== To access ICONS folder: 1: Click START button, lower left 2: Type C:\ in slot. You may need to press ENTER after : then type \ A bunch of Windows folders and files in C:\ will pop up alphabetically. 3:Open ICONS (double-click) and dump your icons in it. =========== NOTES: If you give a hoot! You may want a shortcut to ICONS on your desktop, or Work folder (right click stuff!!!). FYI: MD means MAKE DIRECTORY in DOS language. CD means CHANGE DIRECTORY CMD also works instead of PROMPT |
|
Zenith | #1228 |
Re:Game Code Development Area Date Posted:06/20/2024 2:03 PMCopy HTML Edited #1227 for easier reading. 5 steps of easy English to make a folder. 2 steps to view folder. How to dump? CTRL+A>>CTRL+C>>CTRL+V ... all done! |
|
Zenith | #1229 |
Re:Game Code Development Area Date Posted:07/04/2024 2:18 PMCopy HTML Joe's introduction to FREEBASIC: How to make OLD MAID auto-generated code. (My Freebasic Proto has some unused pre-loaded code, and some debug code that I left in, since it was only me looking at it before.) If you check each line closely, you will probably get the idea of what is happening. ============================================================ 'oldmaid-maker V2.0 You should be able to deduce that color 10 is green, and color 7 is gray. When you see GOSUB it jumps to that name with a colon on the end. When you see RETURN it goes back to where it came from. CONCEIVE, BELIEVE, ACHIEVE!
|
|
Zenith | #1230 |
Re:Game Code Development Area Date Posted:07/04/2024 3:16 PMCopy HTML Block-Art has similar layout but no backgrounds or foregrounds are put in, just a thousand TDs or so .... LOL.
CONCEIVE, BELIEVE, ACHIEVE!
|
|
Zenith | #1231 |
Re:Game Code Development Area Date Posted:07/04/2024 3:53 PMCopy HTML Let's look art a small sub-routine. pause: 'name of routine dummy$ is text variable that will never be used, and is the ENTER or whatever the user hit ... Here it is called by MAIN: and END follows, so the program terminates after the input is put in, but the code doesn't flash by at light speed and quit all without indicating it worked with print "FILE SAVED AS "+outfile$ where outfile$="OM_"+NUMB$+".HTM" If NUMB$ is 56, put in by user, prog prints FILE SAVED AS OM_56.HTM, pauses to read it, and quits after ENTER or some string plus ENTER. User want quick response, so omits the string! CONCEIVE, BELIEVE, ACHIEVE!
|
|
Zenith | #1232 |
Re:Game Code Development Area Date Posted:07/04/2024 5:32 PMCopy HTML FREEBASIC RANDOM NUMBERS: We can call that variable n, so n=rnd. To get it to produce a number between 0 and 9.9999999 we multiply n by 10, like n=rnd*10 To get it to drop the .9999999 we say n=int(rnd*10). Now we have n= 0 to 9. int means give integer value, or drop the stuff after the dot. To get it to produce a number n between 1 and 10 we add 1. Put in MAX% as final number to get n = 1 to MAX%: n=int(rnd*MAX%)+1 % signifies numeric variable, while $ signifies text variable. defint a-Z means all single letter variables are integers, so n does not need %. CONCEIVE, BELIEVE, ACHIEVE!
|
|
Zenith | #1233 |
Re:Game Code Development Area Date Posted:07/04/2024 6:08 PMCopy HTML #@(< off, Dave!
CONCEIVE, BELIEVE, ACHIEVE!
|
|
Niceguy2 | #1234 |
Re:Game Code Development Area Date Posted:07/05/2024 3:36 AMCopy HTML #@(< off, Dave! |
|
Zenith | #1235 |
Re:Game Code Development Area Date Posted:07/06/2024 4:48 PMCopy HTML PLAIN ENGLISH "GOLD_MINER AUTO-CODE": That effin' Dave must be deaf, boyz! CONCEIVE, BELIEVE, ACHIEVE!
|
|
Niceguy2 | #1236 |
Re:Game Code Development Area Date Posted:07/07/2024 4:25 AMCopy HTML |
|
Niceguy2 | #1237 |
Re:Game Code Development Area Date Posted:07/07/2024 4:27 AMCopy HTML Γεια σου Dave, δεν μπορώ να διαβάσω ελληνικά. |
|
Zenith | #1238 |
Re:Game Code Development Area Date Posted:07/07/2024 1:35 PMCopy HTML OK .. English only: Push WINDOW key on keyboard. Type PROMPT [enter] ... the ENTER key On black screen type CD\ [enter] On black screen type MD ICONS [enter] On black screen type EXIT [enter] |
|
Zenith | #1239 |
Re:Game Code Development Area Date Posted:07/07/2024 1:41 PMCopy HTML Please advise me when the above is done. Then I will explain how to use the results. |
|
Niceguy2 | #1240 |
Re:Game Code Development Area Date Posted:07/07/2024 6:07 PMCopy HTML Will do. I'm all out of time now, though. Got to run. |
|
Zenith | #1241 |
Re:Game Code Development Area Date Posted:07/19/2024 4:19 AMCopy HTML Joe: It should take less than a minute to type the 5 words. Press Window Key ... then type PROMPT CD\ MD ICONS EXIT CONCEIVE, BELIEVE, ACHIEVE!
|