Categories > Coding > C# >

[REL] Random Title Generator

Posts: 2014

Threads: 198

Joined: Apr, 2021

Reputation: 16

Posted

yes,

maybe some people will say that it's useless, but sometimes for hiding the cheat / exploit it's actually cool.

so there's an code that i use sometimes made by keyauth (credits to them). ill also give you an example how to use it ofc,

and im not saying it's made by me so pls stop saying im a skid thx.

 

// put it outside your static string

private static Random random = new Random();
public static string RandomString(int length)
{
       const string chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
       return new string(Enumerable.Repeat(chars, length)
       .Select(s => s[random.Next(s.Length)]).ToArray());
}

// and this inside your code
Console.Title = RandomString(20) // change the 20 to how much numbers you want for the title to be

// for ex. 20 = aHfRwhUFNWIHUON
// 50. tnhwsiofhiugwhibdfwhoguua
// and more

peace <3

  • 0

Random quote here...

Xorenos

Jimmy "The Carpet" Skovic

Posts: 46

Threads: 0

Joined: Feb, 2021

Reputation: 10

Replied

I released this a while ago :cry:

This is from synapse x, I used it to change the WPF title to be like synapse

  • 0

You are a feedback loop.

pepsi

PePsIDeveloper

vip

Posts: 309

Threads: 6

Joined: Apr, 2021

Reputation: 16

Replied

you can find this code everywhere (mma release something soon)

  • 0

https://cdn.discordapp.com/attachments/661621789591470090/1013919752294498314/Untitled_1366_768_px_1546_202_px_2.gif

Posts: 2014

Threads: 198

Joined: Apr, 2021

Reputation: 16

Replied

@Xorenos sowwy i didn't know :sad:

  • 0

Added

@Xorenos sowwy i didn't know :sad:

  • 0

Random quote here...

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )