12-04-2022, 08:20 AM
I blame Kirk. He probably fiddled with the code.
Pete out.
Pete out.
Waspentalive's Trek
|
12-04-2022, 08:20 AM
I blame Kirk. He probably fiddled with the code.
Pete out. (12-04-2022, 08:15 AM)johannhowitzer Wrote: This was a fun callback to playing EGA Trek on my IBM 286 growing up. I did find a bug - I was able to travel to non-integer and also zero coordinates, which were reflected on the position display at the top, and the ship was also not displayed on the short range scan. Hey, thank-you much for identifying that bug. It is a fun flashback to good times, eh? Nowadays, I find it too easy to take all of the modern and flashy stuff for granted. Back then, everything seemed so original, always giving me a reaction of "how did they do that?" What I see today (re modern games), I'm mostly really disinterested, like anything new is just an expected progression.
12-04-2022, 04:56 PM
12-04-2022, 05:25 PM
Yes, Sulu.
Pete out.
Shoot first and shoot people who ask questions, later.
(12-04-2022, 04:53 PM)CharlieJV Wrote: What I see today (re modern games), I'm mostly really disinterested, like anything new is just an expected progression.I became just like you after I obtained a so-called role-playing game, with graphics that weren't 3D, from a "Flatpak" that was over 1GB. :O https://flathub.org/apps/details/com.sha...xeldungeon
12-04-2022, 07:00 PM
(12-04-2022, 08:15 AM)johannhowitzer Wrote: This was a fun callback to playing EGA Trek on my IBM 286 growing up. I did find a bug - I was able to travel to non-integer and also zero coordinates, which were reflected on the position display at the top, and the ship was also not displayed on the short range scan. Thanks for catching that! I am now going to integer-ize the x and y inputs. I was not able to reproduce travel to zero,zero coordinates. Were both errors in the Impulse command?
@waspentalive
The best way to get a message from a forum post to another member is to use an @ immediately followed by the member's name as it appears to the right of his icon. @johannhowitzer (please see above post...) In some browser versions if the @ doesn't show as hypertext, you may need to do a quick edit then just click the "Save Changes" button. Do a browser REFRESH and then you should see it as hypertext. The member will then see an alert, just as you are seeing, for this post. Welcome to the forum, btw... Pete - Long time Star Trek fan.
12-04-2022, 08:29 PM
(This post was last modified: 12-04-2022, 08:45 PM by waspentalive.
Edit Reason: for better comprehension
)
(12-02-2022, 07:36 PM)James D Jarvis Wrote:(12-02-2022, 05:34 PM)CharlieJV Wrote:(12-02-2022, 04:46 PM)James D Jarvis Wrote: Trekin good! I had found and squashed the "Phasors don't user energy". I know I misspelled phaser, but I am at least consistent :^). I just recently added Bases for the Klingons and perhaps several other things in the most recent version. I am interested in your ideas for Phasors. I will eventually cause them to use more energy per % charge so the player is incentivized to use as little % as they think they can get away with. Note that you end the game if you drop energy below 50 units. Also, the [R]epair command also builds energy slowly (Bussard collectors yada yada) How do you have the phasors degrade at higher %s - do you damage them if charged to say over 85%? The code already has them fail based on their repair status each time you fire them, but perhaps you did it a better way? What did you do there?
12-04-2022, 08:38 PM
Hey Everyone - I am getting some good feedback here, but this site is a little out of the way for me.
If you make a suggestion and I don't seem to see it, please send a short note to hudson.ra@live.com Put "TREK at QB64" in the title so I know to come look here. - No need to re-hash your post as I will come here to read it. Is everyone running this in the browser in Basic Anywhere Machine? The code will almost work in QB64 as well: BAM does an automated conversion of numeric variables to strings when concatenating a variable to a string - QB64 would only need VAL$(numeric) BAM: n = 5 x$ = "There are "+n+" lights! " vs QB64: n = 5 x$ = "There are "+val$(n)+" lights!" Anyway - Thanks for the input!
12-05-2022, 02:36 AM
(12-04-2022, 08:29 PM)waspentalive Wrote:(12-02-2022, 07:36 PM)James D Jarvis Wrote:(12-02-2022, 05:34 PM)CharlieJV Wrote: Just when I thought I was already having a pretty happy Friday: that was awesome. I must forward that to the game's author. here's how I modified the phasor section of the code, the higher the charge the more likely there is wear and tear and they are more effective against closer targets: Code: (Select All) phasor: |
« Next Oldest | Next Newest »
|