ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!

Jump to content



Photo

Number Generator Software


  • Please log in to reply
Number Generator Software

#1

Dorsia
Dorsia
    Offline
    1
    Rep
    4
    Likes

    Addicted

  • PipPipPipPipPip
Posts: 230
Threads: 6
Joined: Mar 07, 2019
Credits: 0

Five years registered
#1

anyone familiar with any number generator software where I can input the constant digits in GC's to remain the same and have it change a few numbers then spit out a bunch? 

ex. 70712 XXXXX 98716XX X where the X's would be changed to different numbers and the numbers stay constant

 

tried using bb list generator but am noob  :pepe:


  • 0

#2

sunjester
sunjester
    Offline
    2
    Rep
    26
    Likes

    Underwurld Admin

  • PipPipPipPip
Posts: 104
Threads: 90
Joined: Dec 27, 2018
Credits: 0
Five years registered
#2
using System;

class Gen
{
        public static void Main()
        {
                Console.WriteLine("by sunjester, https://underwurld.club");
                Console.WriteLine(genNum());
        }

        public static string genNum()
        {
                string block1 = String.Empty;
                Random n;
                for(int i=0;i<4;i++)
                {
                        n = new Random(Guid.NewGuid().GetHashCode());
                        block1 = block1 + n.Next(0,9).ToString();
                }

                string block2 = String.Empty;
                for(int i=0;i<2;i++)
                {
                        n = new Random(Guid.NewGuid().GetHashCode());
                        block2 = block2 + n.Next(0,9).ToString();
                }

                n = new Random(Guid.NewGuid().GetHashCode());

                return "70712 "+ block1 +" 98716" + block2 + " " + n.Next(0,9).ToString();
        }
}

https://anonfile.com...9X3wcbf/gen_exe


  • 0

#3

Dorsia
Dorsia
    Offline
    1
    Rep
    4
    Likes

    Addicted

  • PipPipPipPipPip
Posts: 230
Threads: 6
Joined: Mar 07, 2019
Credits: 0

Five years registered
#3

got an error running, any advice? 


  • 0

#4

sunjester
sunjester
    Offline
    2
    Rep
    26
    Likes

    Underwurld Admin

  • PipPipPipPip
Posts: 104
Threads: 90
Joined: Dec 27, 2018
Credits: 0
Five years registered
#4

got an error running, any advice? 

 

what is the error? you might need to change the class to public, depending on what environment youre using, like this, https://dotnetfiddle.net/BXEsM4


Edited by sunjester, 15 March 2019 - 04:31 AM.

  • 0

#5

meowtit
meowtit
    Offline
    69
    Rep
    310
    Likes

    429

Posts: 539
Threads: 179
Joined: Jul 13, 2017
Credits: 0

Six years registered
#5

anyone familiar with any number generator software where I can input the constant digits in GC's to remain the same and have it change a few numbers then spit out a bunch? 

ex. 70712 XXXXX 98716XX X where the X's would be changed to different numbers and the numbers stay constant

 

tried using bb list generator but am noob  :pepe:

 

In BB you would do this 70712 XXXXX 98716XX replace X with * blackbullet will now replace * with the allowed characters below. Ex 70712 ***** 98716**


  • 0

Configs have been removed from anon files, Contact me if you need the links or want some custom configs made. 

Android configs only



 Users browsing this thread: