C
C#2y ago
Pandx

✅ Need Help

Hey i am very new and i want to start coding with c#
20 Replies
Pandx
PandxOP2y ago
i am macking a loader atm that is connected with key auth and i want that the first thing Connecting is blue but idk why its not
Pobiega
Pobiega2y ago
a "loader"? what does that do?
Pandx
PandxOP2y ago
like connect with keyauth and stuff but thats not my problem
Pobiega
Pobiega2y ago
I'm not sure what that means.
Pandx
PandxOP2y ago
i just want that the Connecting... is blue
Pobiega
Pobiega2y ago
What will this application do when its finished? Okay, well you changed the background color, doesnt that work? or did you want to change foreground color?
Pandx
PandxOP2y ago
i tried both no one worked thats why
Pobiega
Pobiega2y ago
thats a bit weird. it works fine for me
Pandx
PandxOP2y ago
hmm oklay and is there a way to code it like its you know to see it writing that the letters come slow
Tvde1
Tvde12y ago
you have to do that manually. Write a letter, wait a bit, write another letter probably in a loop
Pobiega
Pobiega2y ago
I'd still like to know exactly what a loader is thou, to be honest.
Tvde1
Tvde12y ago
void WriteSlow(string text, int delayBetweenCharsMs = 100)
{
foreach(var character in text)
{
Thread.Sleep(delayBetweenCharsMs);
Console.Write(character);
}
}
void WriteSlow(string text, int delayBetweenCharsMs = 100)
{
foreach(var character in text)
{
Thread.Sleep(delayBetweenCharsMs);
Console.Write(character);
}
}
or something
ero
ero2y ago
ero
ero2y ago
Any guesses
Pandx
PandxOP2y ago
cant i or what
Pobiega
Pobiega2y ago
Oh I see.
Pandx
PandxOP2y ago
sunglas
Tvde1
Tvde12y ago
That explains the hoisting
Patrick
Patrick2y ago
!ban @pandxyy nefarious/hacking software, advertising account selling for Valorant in bio

Did you find this page helpful?