User Controls
How are you feeling at the moment..
-
2023-02-09 at 6:34 PM UTC
-
2023-02-09 at 6:35 PM UTC
-
2023-02-09 at 7:34 PM UTC
-
2023-02-09 at 7:50 PM UTCRude π
-
2023-02-09 at 11:45 PM UTCJust pumped some pussy so great
-
2023-02-10 at 12:27 AM UTCI don't know why I'm only having flashbacks about Cam a year later but I know it's real PTSD. I don't know if it's worth hurting him because he didn't care about me at the beginning but then did over time, there were happy memories which I hardly remember so I don't know if it's just black and white thinking. All I know is something wrong happened and revenge might cure me but I don't really like having to hurt people.
-
2023-02-10 at 2:21 AM UTC
Originally posted by Kafka I don't know why I'm only having flashbacks about Cam a year later but I know it's real PTSD. I don't know if it's worth hurting him because he didn't care about me at the beginning but then did over time, there were happy memories which I hardly remember so I don't know if it's just black and white thinking. All I know is something wrong happened and revenge might cure me but I don't really like having to hurt people.
As much as revenge may seem to be the best option it rarely accomplishes what we seek, retribution for being wronged. I know it's easier said than done but sometimes letting go is better than ruminating on getting back at someone.
I'm feeling tired and my back hurts but things could be worse I suppose -
2023-02-10 at 4:46 AM UTCTIDE... ULTRA
-
2023-02-10 at 5:27 AM UTC
Originally posted by Jiggaboo_Johnson Hey it's doable! Here's a screenshot of the game I'm currently writing for the Sinclair ZX Spectrum, about 60% complete, my team consists of me…Impressive graphics I'm sure you'll agree (though they've been updated since this photo).
what code do you use , BASIC?
10 REM Horse Derby Racing Game
20 REM Initialize variables
30 DIM HORSES(5)
40 FOR I = 1 TO 5
50 READ HORSES(I)
60 NEXT I
70 REM Display the horses and ask for the player's bet
80 PRINT "Horses in the race:"
90 FOR I = 1 TO 5
100 PRINT I, HORSES(I)
110 NEXT I
120 PRINT "Which horse do you want to bet on (1-5)?"
130 INPUT BET
140 REM Generate random finish times for each horse
150 FOR I = 1 TO 5
160 FINISH(I) = INT(RND(1) * 100) + 1
170 NEXT I
180 REM Determine the winning horse
190 WINNER = 1
200 FOR I = 2 TO 5
210 IF FINISH(I) < FINISH(WINNER) THEN WINNER = I
220 NEXT I
230 REM Display the results
240 PRINT "The winning horse was horse #"; WINNER
250 PRINT HORSES(WINNER); " with a time of "; FINISH(WINNER)
260 REM Determine if the player won or lost
270 IF WINNER = BET THEN PRINT "You win!" ELSE PRINT "You lose."
280 REM End of program
290
This code will randomly generate finish times for five horses and ask the player to place a bet on one of them. The code then calculates the winner of the race and displays the results to the player. The player wins if their bet matches the winning horse and loses.
can I join the dev team , ill make your code into a dAPP so it can be run in browser and you can make money from peoplem playing it -
2023-02-10 at 5:58 AM UTCPOKE
PEEK -
2023-02-10 at 7:33 AM UTC
Life was a willow and it bent right to your wind
They count me out, time and time again
Life was a willow and it bent right to your wind
But I come back stronger, than a 90's trend πΌππ -
2023-02-10 at 1:07 PM UTC
Originally posted by Ghost what code do you use , BASIC?
10 REM Horse Derby Racing Game
20 REM Initialize variables
30 DIM HORSES(5)
40 FOR I = 1 TO 5
50 READ HORSES(I)
60 NEXT I
70 REM Display the horses and ask for the player's bet
80 PRINT "Horses in the race:"
90 FOR I = 1 TO 5
100 PRINT I, HORSES(I)
110 NEXT I
120 PRINT "Which horse do you want to bet on (1-5)?"
130 INPUT BET
140 REM Generate random finish times for each horse
150 FOR I = 1 TO 5
160 FINISH(I) = INT(RND(1) * 100) + 1
170 NEXT I
180 REM Determine the winning horse
190 WINNER = 1
200 FOR I = 2 TO 5
210 IF FINISH(I) < FINISH(WINNER) THEN WINNER = I
220 NEXT I
230 REM Display the results
240 PRINT "The winning horse was horse #"; WINNER
250 PRINT HORSES(WINNER); " with a time of "; FINISH(WINNER)
260 REM Determine if the player won or lost
270 IF WINNER = BET THEN PRINT "You win!" ELSE PRINT "You lose."
280 REM End of program
290
This code will randomly generate finish times for five horses and ask the player to place a bet on one of them. The code then calculates the winner of the race and displays the results to the player. The player wins if their bet matches the winning horse and loses.
can I join the dev team , ill make your code into a dAPP so it can be run in browser and you can make money from peoplem playing it
Yes basic, though I might run it through a basic compiler when I've finished it...though it runs ok as is so maybe not...it's a remake of a game I wrote in 1984 and lost so I'm recreating it from memory.
You can see in this pic below I haven't done the form or odds calculations yet..each horse will have a set of stats as will the course (it's going..(the state of the ground)...being soft, firm, wet etc)...each horse performs better or worse dependent on its form (past results) and the going of the track) which obviously adds the random element but with some advantages disadvantages which will be relfected in the odds ala a real race. I'm leaving that to the end because..math.
Slightly updated with start line, changed the banner up top a little and added a finish line (which you can't see till they get over to the right). I'll be adding some spectators and a moving ambulance at the bottom too as I used to have it (and dropped it from 7 horses as in the original pic I posted to 6 because I need more room on the screen for spectators/ambulance etc)
I'll probably add a 2 player option to it as well (maybe 4) as 1 player gets a bit old when you're just betting yourself.
After that I have a couple of more other games I've lost and would like to recreate...Witch's Castle which is a multiscreen sidescroller thing, and Snakes and Girders which is a donkey kong clone but with a snake instead of a gorilla (and snakes and girders being a play on Snakes and ladders (or chutes as they call it in stupid America). I also did a version of "Countdown" which was a British TV quiz show back in the day (as the kids like to say) but I don't think I'll bother with that one, it was a bit shit(ter). -
2023-02-10 at 2:49 PM UTCI'm still pretty sheepy..think I'll sheep a few more hours β€οΈ
-
2023-02-10 at 2:58 PM UTCsnake and apple would be an awesome game name.
-
2023-02-10 at 3:20 PM UTCSnowball said I can't go back to sleep..
Damn my cat overlord!π -
2023-02-10 at 3:47 PM UTC*Holds snowball up to the sky*
*Chants*
Overlord
Overlord
Overlord
β€οΈ -
2023-02-10 at 4:29 PM UTCFuck Europe, Europe sucks
-
2023-02-10 at 4:40 PM UTC
-
2023-02-10 at 9:29 PM UTC
Originally posted by Jiggaboo_Johnson After that I have a couple of more other games I've lost and would like to recreate…Witch's Castle which is a multiscreen sidescroller thing, and Snakes and Girders which is a donkey kong clone but with a snake instead of a gorilla (and snakes and girders being a play on Snakes and ladders (or chutes as they call it in stupid America). I also did a version of "Countdown" which was a British TV quiz show back in the day (as the kids like to say) but I don't think I'll bother with that one, it was a bit shit(ter).
thats pretty cool, homebrew on old consoles is THE SHIT
im getting back into 6502 myself which was also used to make tamagotchi and digimon
N64 is having some big advances in the homebrew scene
-
2023-02-11 at 1:52 AM UTCDisturbed bcus my cousin and also my five year old nephew said they want to marry me. Is there something inappropriate about the way I treat males or is this normal?