Skip to content
Open navbar menu
Sign UpLog In
Profile icon

HiroEndin

@HiroEndin
  • Whack a Mole

    Cover page
    Made with Python
    Recent comments (0)
  • Conveyor Testing Grounds

    Cover page
    Made with Python

    Testing grounds for a conveyor system, to be used in a text based mining game, or any other applications it may be useful in. You may use this system if you would like, but only if you credit me.

    Recent comments (0)
  • Number to Prize (Chance Test)

    Cover page
    Made with Python
    Recent comments (0)
  • Sword Story 1 Text Adventure Game

    Cover page
    Made with Python
    Recent comments (0)
Repls
Community
HiroEndin
HiroEndin
shared a Post
3 years ago
Whack a Mole Modified
I modified @AndrewZhao1 's Whack a Mole! I originally worked off of their repl, but it's majorly modified. I worked off an older version, the current
Whack a Mole
Python
HiroEndin
HiroEndin
shared a Post
3 years ago
I used a for loop for 99999999 and it prints | then the screen clears, and so on.
Repl Installing Loading Recreation
Python
awesome10
awesome10
Screen Shot 2020-06-18 at 8.35.17 PM3 years ago
CodingCactus
CodingCactus
instead of a for loop which will eventually end, you can do while True: also, you probably shouldn't define the clear function every time that you loop, define it outside the loop3 years ago
HiroEndin
HiroEndin
shared a Post
3 years ago
Rate it in the comments please!
Welcome Animation 1
Python
coderash
coderash
Its awesome, you should try adding color aswell.3 years ago
HiroEndin
HiroEndin
shared a Post
3 years ago
Rate it in the comments please!
Loading Animation Test
Python
coderash
coderash
Yeah, also maybe show 2 in one post because it gets a little annoying when very similar posts are published 2 minutes after the other 3 years ago
TheForArkLD
TheForArkLD
Good loading! But I don’t like fake loading, use it in real loading :)3 years ago
HiroEndin
HiroEndin
shared a Post
3 years ago
How do I make a repl that uses multiple languages? For example, a repl that uses both Python and HTML. In a single repl.
VulcanWM
VulcanWM
Open a repl with the language you need more, for instance Python, then at the corner, there is a file option, click it, and make a HTML file, like random.HTML. > Please mark this as the answer if you think it is the answer3 years ago
HiroEndin
HiroEndin
shared a Post
3 years ago
Sorry that I'm posting this again, and I'm also (possibly, it might be fine) sorry that I'm posting this in share! I'm still looking for more people,
Sword Story 1 Text Adventure Game
Python
thenullified
thenullified
nice so far. ill help you if needed3 years ago
TheForArkLD
TheForArkLD
ofc(off course) i want help you.3 years ago
HiroEndin
HiroEndin
shared a Post
3 years ago
Plus, I have godly luck, as usual. image
Number to Prize (Chance Test)
Python
HiroEndin
HiroEndin
shared a Post
3 years ago
I've got 1 person I know for sure is helping and 1 person I invited. Who wants to help me make this? Look at the code and see if you can do the type o
Sword Story 1 Text Adventure Game
Python
AdCharityTester
AdCharityTester
Very nice!3 years ago
HiroEndin
HiroEndin
shared a Post
3 years ago
How do I make code that will make something have a percentage to happen? (how do I give something a chance that is a percentage?)
Sword Story 1 Text Adventure Game
Python
Muffinlavania
Muffinlavania
Umm yea if you want to be nice mark @VulcanWM as the right answer, and he is right, random is still a percentage. It can be looked at as a percentage, fraction, or a decimal Ex: random.randint(1,4)= 1/4 = .25 = 25%3 years ago
VulcanWM
VulcanWM
You should use random > Please mark this as the answer if you think it is the answer3 years ago
HiroEndin
HiroEndin
Found an answer on the internet.3 years ago
HiroEndin
HiroEndin
shared a Post
3 years ago
Who wants to help make this game? Comment if you do!
Sword Story 1 Text Adventure Game
Python
HenryZelonka1
HenryZelonka1
Sure3 years ago
HiroEndin
HiroEndin
shared a Post
3 years ago
Hi! This is my first quiz and score system! Basic maths, though. I put colour there too. I got the colour commands from something @CodingCactus made.
Maths Quiz + Score System
Python
HiroEndin
HiroEndin
shared a Post
3 years ago
How do I make a key detection command? I tried working off @CodingCactus' 2048 game with keyPress, but it didn't work. How do I make it work? (I'm as
Key Press Detection Test
Python
CoolJames1610
CoolJames1610
You need to have key = getkey() after the scrolllTXT, then do if key == "q": then etc...3 years ago
CodingCactus
CodingCactus
You have already imported getkey, now all you need to do is something like: key = getkey() if key == 'w': #move up elif key == 'a': #move left etc. `3 years ago
Geocube101
Geocube101
This is a probably over-complicated class for detecting keypress events on a sub-thread https://repl.it/@Geocube101/ASK-Key-Detect If you have any questions or problems just let me know3 years ago
HiroEndin
HiroEndin
shared a Post
3 years ago
I keep getting a key error for the code if films["director"] == films["George Lucas"]: print(films["year"]) What the code is meant to do is to see i
Challenge Attempt (also a reference for a dictionary command
Python
DynamicSquid
DynamicSquid
print(films"Jurassic Park") // the compiler doesn't know what this is if ["director"] != "Steven Spielberg": print(films[0]) I'm not sure if this works, but try this: print(films"Jurassic Park") if films"Jurassic Park" != "Steven Spielberg": print(films[0]) `3 years ago
HiroEndin
HiroEndin
shared a Post
3 years ago
How do you make it skip to the next line of code and do nothing if a certain condition is met? if ask == "A" and whichisit == "object": print("No."
Guessing Game Program Attempt
Python
VulcanWM
VulcanWM
Just write pass3 years ago
HiroEndin
HiroEndin
@CodingCactus you've helped me before and seem to know alot about this. Can you help me again?3 years ago
HiroEndin
HiroEndin
shared a Post
3 years ago
How do I make my code run again at the end of it? Python.
CodingCactus
CodingCactus
put the whole thing in a while loop e.g. play = "y" while play == "y": #your code for thing goes here play = input("play again (y/n)").lower() `3 years ago
firefish
firefish
Uh... you click the run button again?3 years ago
HiroEndin
HiroEndin
shared a Post
3 years ago
Hi. I do Python. Is there a way to print " in a print command? When I type print("Example, " is a symbol") it will only print Example, and not the ",
Python Lesson 1
Python
CodingCactus
CodingCactus
yes, you can either do this: print('Example, " is a symbol') or you can do this: print("Example, \" is a symbol")3 years ago