Hey @hexed violet!
Please edit your message to use a code block
```py
print('Hello, world!')
```
This will result in the following:
print('Hello, world!')```
31 messages ยท Page 1 of 1 (latest)
Hey @hexed violet!
```py
print('Hello, world!')
```
This will result in the following:
print('Hello, world!')```
@hexed violet
Remember to:
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
!paste
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.
Use this
^^
Hey @hexed violet!
```py
print('Hello, world!')
```
This will result in the following:
print('Hello, world!')```
you gotta add 3 backticks before and after your code when you paste it into discord
like:
code
it'll show up like this ^
the backtick is usually the key to the left of your 1 key on your keyboard
no you used the single quotation mark
backtick below Escape key
left side of keyboard
there you go now just add the word python after the first 3 backticks
you put the word python before the backticks
it should be after
the first 3
'''python
code
'''
but with backticks
Hey @hexed violet!
Make sure you put your code on a new line following python. There must not be any spaces after python.
Here is an example of how it should look:
```python
print('Hello, world!')
```
This will result in the following:
print('Hello, world!')```
If your code is too long to fit in a codeblock in Discord, you can paste your code here:
https://paste.pythondiscord.com/
After pasting your code, save it by clicking the Paste! button in the bottom left, or by pressing CTRL + S. After doing that, you will be navigated to the new paste's page. Copy the URL and post it here so others can see it.
this is where the player is falling:
if character_rect.bottom>=480:
character_rect.bottom=480
you just need to reset the gravity back to zero again
# This is checking to see if the player has hit the bottom yet:
if character_rect.bottom>=480:
character_rect.bottom=480
# This resets the gravity
character_gravity = 0
This help channel has been closed. Feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.