#Free Melly
@Sholohz
#Free Melly 2021-2022
Its finally fixed, thanks to the help of @DouglasGoodyear and @LukeWright and a few adjustments, the bug where you kill a monster and they still attac
Python
so when you fight a monster and kill them, they can still attack and i dont know how to fix it i got help from @DouglasGoodyear but 'win' is not defin
Python
LukeWright try making it a global variable with
global var = "yeet"
print(var)
click the checkmark next to my comment if this helped!2 years ago
Do whatever the hel1 u want with this lmk if there are any bugs. there is a problem where after you kill a monster they can still attack you, i sent a
Python
CharlesHTMLNoob File "main.py", line 206
global var = win
^
SyntaxError: invalid syntax
`2 years ago
Soo.. i followed a turtorial on youtube a while back and i memorized the code and i re-wrote it through memory.
I use a School chrome book and it cant
Pygame
tankerguy1917 i dont think it works. And i feel your pain. i am in the same situation, with and older school chromebook. i cant do anything because everything id want to do is blocked, even Cool Math2 years ago
Sholohz Acually i think my chromebook is outdated cuz this is an old model that rarely gets updates2 years ago
Hellooooo, so i just recently quit C# cuz i cant do that and focus on school work, and so i recently decided to pick python back up and i wanted to re
Pygame
Recently i've officially started C# but i dont know how to slow type. If someone could tell me if i can, and/or How.
PattanAhmed @Sholohz Hi,
Here is the code:-
using System;
namespace TypewriterEffect
{
class Program
{
static void Main()
{
Typewrite("Slowprinting...");
// Instead of Slowprinting, type your sentence.
Console.ReadKey();
}
static void Typewrite(string message)
{
for (int i = 0; i < message.Length; i++)
{
Console.Write(message[i]);
System.Threading.Thread.Sleep(60);
}
}
}
}
2 years ago
SixBeeps Take this:
public static void SlowPrint(string msg, int delay) {
foreach (char c in msg.ToCharArray()) {
Console.Write(c);
Thread.Sleep(delay);
}
Console.WriteLine();
}
Call it as such:
SlowPrint("Your string here", 100);
`2 years ago