erger561
@erger561
Hello! I added a new map in EpicCloudMiniGames, the new map is another parkour map, this map it called parkour tower, it is the one that goes up, note
Node.js
erger561 Uploading parkour tower.mp4...
here is the link to the video
https://www.youtube.com/watch?v=GA1YOsWB09M
Yes this is me, I did this, it was easy took me two times today, one is not in the video. :)2 years ago
Enjoy this new game that I made.
@Ryan1111 helped me with the base part, only a little bit.
Node.js
Hello! This is a game of my own, it is not compete yet, but this is what I have, it is multiplayer there is a lobby and one map, enjoy!
Node.js
I updated the game, it is now an app for desktop and there is a new island enjoy!
Node.js
Please join my team (here is the link, https://replit.com/teams/join/oolajrqbbikptgwgqyoejjzfbfrhdnex-TheGameCoders ) so I can teach you how
Node.js
ManuelFerrara1 Amazing post looking forward seeing more from you
carpet removal Australia6 months ago
SarahWilliams9 Amazing post
https://www.genesisbookwriter.com/
https://www.queenscreativedesign.com/
https://www.customlogodesigns.us/
https://www.thecoursehelp.com/9 months ago
vertexghostwrit Amazing post looking forward to seeing more from you
https://www.vertexghostwriting.com/10 months ago
How do you save something that is before displayIntro() and then put it in displayIntro() with the same value?
Python
erger561 What I am saying is that I want the points to be in the displayIntro() with the same value as before the displayIntro()2 years ago
lolguineapig @erger561 are you saying that you have a variable defined outside the function, and you want it to be defined in the function with the same value? If yes, you just have to use the keyword global.
Example:
var = input("What is your favorite color?")
def hello():
return "Hello user. " + var + "is your favorite color!"
print(hello())
That won't work ^
but this code will:
var = input("What is your favorite color?")
def hello():
global var
return "Hello user. " + var + "is your favorite color!2 years ago