Αναρτήσεις

Προβολή αναρτήσεων από Οκτώβριος, 2020

Find You Pc

 //HERES SOME TIPS BEFORE COPY AND PASTE: //Press cntrl and A to copy everything //Check Brackeys c# 1st tutorial and download visual studio code for this //to work.Or else,you will have to change the code at NameSpace //Give credit in case of video(GostGK) //HERES THE CODE: //-------------------------------------------- using System; namespace My_Awesome_Program {     class Program     {         static void Main(string[] args)         {           int PcParts1 = 0;                  Console.WriteLine("Welcome to Pc Builder!");         Console.WriteLine("Please write how much will your pc cost: ");         int UserBudget = Convert.ToInt32(Console.ReadLine());         if (UserBudget <= 250)         {             PcParts1 = PcParts1 + 1;         }         else if (UserBudget <= 350 && UserBudget > 250)         {             PcParts1 = PcParts1 + 2;         }         else if (UserBudget <= 750 && UserBudget > 350)         {             PcPa

Random Number Generator(Max 20)

 //HERES SOME TIPS BEFORE COPY AND PASTE: //Press cntrl and A to copy everything. //The numbers that are generated are Between 1 and 100. //Check Brackeys c# 1st tutorial to Download visual studio code for this to work,else you will have to //Make some changes to the NameSpace. //Give credits in case of Video(GostGK). //You are Free to edit and do changes to my code. //If you find any problems,please contact me via email (kgiotakos@gmail.com) //HERES THE CODE: //------------------------------------------------ using System; namespace My_Awesome_Program {     class Program     {         static void Main(string[] args)         {           Console.Title = "Number Generator";         Console.ForegroundColor = ConsoleColor.Blue;         Console.WindowHeight = 40;         Console.WriteLine("Created By GostGK.CheckGostGK:");         Console.WriteLine("Instagram: @gostgkyt TikTok: @fortnitelegitgiveaways");         Console.WriteLine("This is a Number Generato

Give Birth To Game

//HERES SOME TIPS BEFORE COPY AND PASTE: //Press cntrl and A to copy everything //Give credits in case of Video(GostGK) //Check Brackeys In YouTube c# tutorial and watch the 1st tutorial to Download Visual Studio Code //because it needs it for the code to work or else you will have to do changes at namespace //(My_Awesome_Program) //NOTE: You can Change the code. //NOTE: If theres errors,contact GostGK by gmail (kgiotakos@gmail.com) //NOTE: A bit of a good pc required(Delete some GiveBirth1(); and GiveBirth2(); if you have a rly //trash pc) //HERES THE CODE: //------------------------------------- using System; namespace My_Awesome_Program {     class Program     {         static void Main(string[] args) //Make baby born generator //Also use the datetime now command         {                    Console.WindowHeight = 50;             Console.ForegroundColor = ConsoleColor.Green;             Console.Title = "Give Birth To Game";             Console.WriteLine("Made by GostG

Unlimited Maths!(updated)

//Heres some tips before copy and paste: //Press cntrl and A to copy everything //Give credit if you use it in a video //You can change the code //Check brackeys on YouTube and watch the 1st c# tutorial to use the code in Visual Studio Code or //Else it won't work //NOTE: The points system doesen't work currently and we are trying to fix it as soon as possible. //For now,just ignore that //HERES THE CODE: //----------------------------------------------- using System; namespace My_Awesome_Program {     class Program     {         static void Main(string[] args)         {               Console.Title = "Unlimited Maths!";             Console.ForegroundColor = ConsoleColor.Cyan;             Console.WindowHeight = 40;             Console.WriteLine("Made By GostGK!Check GostGK: Instagram: @gostgkyt TikTok: @fortnitelegitgiveaways Gmail: kgiotakos@gmail.com");             Console.WriteLine("Here's a quick guide:\n");             Console.WriteLine(&qu

Random Pair Game

 //Heres a few tips before you copy and paste: //Press enter to roll the dice(the other keys work too but its better to use enter for visual reasons) //Press cntrl and A to copy everything //I use My_Awesome_Program as namespace so check Brackeys on YouTube and watch th 1st c# tutorial //if you want this to work.Else,you will have to make changes in the namespace. //Give credit in case of video (GostGK) //You are free to make changes to the code as long as the credit writeline is there //HERES THE CODE: //----------------------------------------------------- using System; namespace My_Awesome_Program {     class Program     {         static void Main(string[] args)         {               Console.WindowHeight = 50;             Console.ForegroundColor = ConsoleColor.Cyan;             Console.Title = "Random Pair Game";             Random numberGen = new Random();             int roll01 = 0;             int roll02 = 1;             int attemts = 0;                         Consol

Fake Hack Machine

//Before copy and pasting,heres some tips: //To end the machine,press any key or escape. //Press cntrl and A to copy everything //Currently,theres only one message that says you have been hacked so if you want more texts that say you have been hacked,just put more Hacking(); in every line(one by one). //------------------------------------ //EXAMPLE: //Hacking(); //Hacking(); //NOT LIKE THIS: //Hacking(); Hacking(); //-------------------------------------- //Yes,it IS possible to put over 50.000 "Hacking();".High spec computer required. //Reccomended around 40.000-60.000 messages. //Lastly,the more you put the more you will have to wait to load all these things up.If you put more than //30.000 "Hacking();" You will have to wait arround 10-15 seconds.More than 60.000 can take you up to  //40 seconds for them to load! //IMPORTANT: Because i use My_Awesome_Program as namespace,check brackeys in youtube 1st c# //tutorial that shows how to make and download visual strudi

Among Us Emergency Meeting(not finished yet)

 using System; //Make among us discuss time(emergency meeting) //make voting system (multiple votes and ppl) //get this thing 1 step further //if u want anc can,make this random choice with numbergen connected to vote1 and so on //also,make impostor random //make skip vote //make was not the impostor and other texts //learn how to skip a step //make more votes like int vote2 and other stuff //make dialog of complaining where were you and when and things like that: i was in ____ doing ____. //Make an if no one was ejected. //how to make a random number gen to a limited range namespace My_Awsome_Program {     class Program     {         static void Main(string[] args)         {             {               Random ImpostorGen = new Random();               int ImpostorGenInt = ImpostorGen.Next(1, 5);               Console.WriteLine(ImpostorGenInt);               int red = 0;               int blue = 0;               int green = 0;               int orange = 0;               int max1 = 0;  

Calculator Program

using System; namespace My_Awsome_Program {     class Program     {         static void Main(string[] args)         {             {                 Calculator();                 Console.ReadKey();             }             static void Calculator()                              {                 int results = 0;                 Console.WriteLine("Please enter 2 numbers: ");                 int num01 = Convert.ToInt32 (Console.ReadLine());                 int num02 = Convert.ToInt32 (Console.ReadLine());                 Console.WriteLine("Please enter the oparation you want to do: ");                 string oparation = (Console.ReadLine());                 if (oparation == "*")                 {                     results = num01 * num02;                     Console.WriteLine(+ results);                 }                 else if (oparation == ":")                 {                     results = num01 / num02;                     Console.WriteLine(+

Coding Guide

 This is a coding guide.If you don't now what cofing is here's a quick guide.Coding is basically code that goes to a compile that translates it into 0 and 1 numbers which the computer can understand.A program can be as simple as writing a Hello, World! in the screen,or can go up to making thousands of money from your epic game you just releashed!Well,to make a program theres a ton of ways to do it,but you can start by a free compiler online,like gdb compile.It's not recommended to use a free online compile to write your code,but remember you can always download a "compile" program like visual studio code.Now,to write the code/program you use languages.No,not the English or Greek language.A language made by english charachters.You can use a ton of lnguages like c,c#,c++,java,java script,python,html or php.The most recommended for making games is c# or java.Lastly,i recommend you to start coding c# by Brackeys tutorial on youtube.He says all the basics in 8 videos,w