Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Jumbofile

Members
  • Posts

    982
  • Joined

  • Last visited

Posts posted by Jumbofile

  1. Skywyre primitive is the official engine. Download link is in this thread, http://www.freemmorpgmaker.com/thread-1.html
    Please try to make a thread with less anger (and vulgar language) if you want people to be willing to respond.

    Thanks,
    Jumbofile
  2. CPU: AMD a10 6800k
    RAM: 16GBs Corsair (honestly dont know, going off my head)
    GPU: GTX 660 Superclocked edition
    HDD: 1TB Western Digital Black
    SSD: 256GB Samsung SSD
    Display: Acer A231h
    Keyboard: Razer Blackwidow Chrome
    Mouse: LG G600 MMO mouse
    OS: Windows 8.1
  3. Here is a sprite I have made. Im a little rusty so be nice  :P

    ![](http://i.imgur.com/PrlFBTv.png)

    2x

    ![](http://i.imgur.com/PrlFBTv.png)

    I desperately need help with the walking animation (4 frames) 
    If someone can help it would be greatly appreciated.
  4. Ive decided to learn C# after talking to some very helpful member here at eclipse and with the video series im watching ive made a Magic 8Ball!

    ![](http://i.imgur.com/wqu0URh.png)

    It has 4 different answers and was a good way to teach me how to do multiple things in C# and help me better understand the language.

    Download:
    https://www.dropbox.com/s/8bzif1lhmvzhrcm/Magic8ball%20Codegasm.exe?dl=0
    (100% safe, some antivirus programs dont think so but I promise you it is)

    Source:
    ```
    using System;

    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Threading;

    namespace Magic8ball_Codegasm
    {
       //abstract class Greg
       //{
       //    static string name = "Greg";
       //    public static string alias = "Jumbofile";
       //}

       /// /// Entry point for magic 8ball program
       ///

       class Program
       {
           static void Main(string[] args)
           {

               //Preserve console text color
               ConsoleColor oldColor = Console.ForegroundColor;

               //Get Question
               Tellpeoplewhatprogramthisis();

               //Create a random object
               Random randomObject = new Random();

               //Loop forever!
               while(true)
               {
                   string questionString = GetQuestion();

                   //Think about question
                   int numberOfSecondsToSleep = randomObject.Next(5) + 1;
                   Console.WriteLine("Thinking....");
                   Thread.Sleep(numberOfSecondsToSleep * 1000);

                   //Checking response
                   if(questionString.Length == 0)
                   {
                       Console.WriteLine("You have to write something to get an answer!");
                       continue;
                   }

                   //Check if user wants to quit
                   if (questionString.ToLower() == "quit")
                   {
                       break;
                   }

                   //Check if user wants to be a loser
                   if (questionString.ToLower() == "you suck")
                   {
                       Console.ForegroundColor = ConsoleColor.Red;
                       Console.WriteLine("No you suck loser! Bye!");
                       break;
                   }

                   //Get Random Number
                   int randomNumber = randomObject.Next(4);

                   //Answer color
                   Console.ForegroundColor = ConsoleColor.Yellow;

                   //Use random number to determain response
                   switch(randomNumber)
                   {
                       case 0:
                           {
                               Console.WriteLine("Yes!");
                               break;
                           }
                       case 1:
                           {
                               Console.WriteLine("No!");
                               break;
                           }
                       case 2:
                           {
                               Console.WriteLine("Hell no!");
                               break;
                           }
                       case 3:
                           {
                               Console.WriteLine("Why even ask? DUH!");
                               break;
                           }
                   }

               }
               //End of loop

               //Clean up
               Console.ForegroundColor = oldColor;

           }
           /// /// Prints name of program and who created it
           ///

           static void Tellpeoplewhatprogramthisis()
           {
               //Change console text color
               Console.ForegroundColor = ConsoleColor.Green;
               Console.Write("Magic 8ball by ");
               Console.ForegroundColor = ConsoleColor.Cyan;
               Console.WriteLine("Jumbofile");
           }
           /// /// Returns Question from user
           ///

           static string GetQuestion()
           {
               //This block of code asks question and stores answer
               Console.ForegroundColor = ConsoleColor.White;
               Console.Write("Ask a question!: ");
               Console.ForegroundColor = ConsoleColor.Gray;
               string questionString = Console.ReadLine();

               return questionString;
           }

       }
    }

    ```
×
×
  • Create New...