This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#51 2010-04-29 12:01:53

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: YAY YAY YAY C#! :p

meew0 wrote:

Yay VM  smile  I like VMs more than OSs. I'm making a graphical VM in C#  big_smile  Current release preview: When I find the file on my computer, 2011  lol

Lol,  lol  Sounds interesting.


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#52 2010-04-29 13:09:13

meew0
Scratcher
Registered: 2010-02-22
Posts: 1000+

Re: YAY YAY YAY C#! :p

*gets back to home*
*turns computer and external hard drive on*
*looks for the reason why the external hard drive doesn't display*
*after 3 minutes found the wire that isn't connected to the computer  lol *
*turns search on*
*after 10 minutes: found nothing*
*searches on external hard drive*


FOUND IT! I found a version in C++ and a version in VisualBasic, but no one in C#  sad  Sorry  sad

When I get time, I will try to program it in C#  smile


http://i.imgur.com/mJV3j.pnghttp://i.imgur.com/HwWAX.pnghttp://i.imgur.com/sZ7Ui.pnghttp://i.imgur.com/0y6yh.pnghttp://i.imgur.com/nOC4l.png

Offline

 

#53 2010-04-29 14:02:19

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: YAY YAY YAY C#! :p

meew0 wrote:

*gets back to home*
*turns computer and external hard drive on*
*looks for the reason why the external hard drive doesn't display*
*after 3 minutes found the wire that isn't connected to the computer  lol *
*turns search on*
*after 10 minutes: found nothing*
*searches on external hard drive*


FOUND IT! I found a version in C++ and a version in VisualBasic, but no one in C#  sad  Sorry  sad

When I get time, I will try to program it in C#  smile

Lol, thats quite funny.


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#54 2010-05-01 20:09:47

ThePCKid
Scratcher
Registered: 2009-09-16
Posts: 1000+

Re: YAY YAY YAY C#! :p

Sorry for bumping, but:

Code:

using System;

class Program
{
    static void Main()
    {
        Console.Title = "Hi!";
        Console.BackgroundColor = ConsoleColor.DarkGreen;
        Console.WriteLine("Hello world!");
        Console.WriteLine("Press the enter key to exit");
        Console.Read();
        Haha();
    }

    static void Haha()
    {
        Console.WriteLine();

        for (int i = 1; i <= 10; i++)
        {
            Console.WriteLine("YOU ARE NEVER GONNA GET OUTTA HERE!");
        }

        Console.WriteLine("Press the enter key to exit!");
        Console.Read();
        Haha();
    }
}

IDK... big_smile

Last edited by ThePCKid (2010-05-01 20:10:13)

Offline

 

#55 2010-05-01 20:15:05

Ludichris1
Scratcher
Registered: 2009-03-04
Posts: 500+

Re: YAY YAY YAY C#! :p

Personally I prefer Scratch  big_smile
C# looks hard  yikes
But i respect you and applaud you for taking on a feat. It will greatly help you in programming for things ^o^

Idk if I should try BASIC, Python, WYSIWYG ( big_smile ), Ruby(RMXP?), GML, or something lol


http://i728.photobucket.com/albums/ww290/Ludichris1/Test-1.png
Foxes ^o^

Offline

 

#56 2010-05-01 20:18:03

ThePCKid
Scratcher
Registered: 2009-09-16
Posts: 1000+

Re: YAY YAY YAY C#! :p

Ludichris1 wrote:

Personally I prefer Scratch  big_smile
C# looks hard  yikes
But i respect you and applaud you for taking on a feat. It will greatly help you in programming for things ^o^

Idk if I should try BASIC, Python, WYSIWYG ( big_smile ), Ruby(RMXP?), GML, or something lol

Hmm... Visual Basic is good for a beginner.

Offline

 

#57 2010-05-01 21:12:10

ThePCKid
Scratcher
Registered: 2009-09-16
Posts: 1000+

Re: YAY YAY YAY C#! :p

Code:

using System;

class Program
{
    static void Main()
    {
        Console.Write("Whats your name? ");
        Console.WriteLine("Hi {0}!", Console.ReadLine());
        Console.Write("Press the enter key to exit");
        Console.Read();
    }
}

Now I know how to read user input...

Offline

 

#58 2010-05-01 22:27:22

ThePCKid
Scratcher
Registered: 2009-09-16
Posts: 1000+

Re: YAY YAY YAY C#! :p

Code:

using System;

class Program
{
    static void Main()
    {
        string num;
        Console.Write("Enter a number between 1 and 3: ");
        num = Console.ReadLine();

        if (num == "1")
            Console.WriteLine("Hi Bob!");
        else if (num == "2")
            Console.WriteLine("Hi Sheldon!");
        else if (num == "3")
            Console.WriteLine("Hi Christopher!");
        else
            Console.WriteLine("{0} isn't between 1 and 3.", num);

        Console.Write("Press the enter key to close");
        Console.Read();
    }
}

Boredem has struck again!

C++ version

Last edited by ThePCKid (2010-05-01 22:45:44)

Offline

 

#59 2010-05-02 03:26:20

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: YAY YAY YAY C#! :p

Lots of those programs are VERY random...

Ludichris1 wrote:

Personally I prefer Scratch  big_smile
C# looks hard   yikes
But i respect you and applaud you for taking on a feat. It will greatly help you in programming for things ^o^

Idk if I should try BASIC, Python, WYSIWYGbig_smile  ), Ruby(RMXP?), GML, or something lol

WYSIWYG is just an anagram for What You See Is What You Get


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#60 2010-05-02 08:23:49

Ludichris1
Scratcher
Registered: 2009-03-04
Posts: 500+

Re: YAY YAY YAY C#! :p

markyparky56 wrote:

Lots of those programs are VERY random...

Ludichris1 wrote:

Personally I prefer Scratch  big_smile
C# looks hard   yikes
But i respect you and applaud you for taking on a feat. It will greatly help you in programming for things ^o^

Idk if I should try BASIC, Python, WYSIWYGbig_smile  ), Ruby(RMXP?), GML, or something lol

WYSIWYG is just an anagram for What You See Is What You Get

Um.. I know lol. I' m saying a programming language with no programming  big_smile


http://i728.photobucket.com/albums/ww290/Ludichris1/Test-1.png
Foxes ^o^

Offline

 

#61 2010-05-02 10:16:31

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: YAY YAY YAY C#! :p

Ludichris1 wrote:

markyparky56 wrote:

Lots of those programs are VERY random...

Ludichris1 wrote:

Personally I prefer Scratch  big_smile
C# looks hard   yikes
But i respect you and applaud you for taking on a feat. It will greatly help you in programming for things ^o^

Idk if I should try BASIC, Python, WYSIWYGbig_smile  ), Ruby(RMXP?), GML, or something lol

WYSIWYG is just an anagram for What You See Is What You Get

Um.. I know lol. I' m saying a programming language with no programming  big_smile

So its not a programming language,  hmm  Thats not funny...


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#62 2010-05-02 12:38:40

ThePCKid
Scratcher
Registered: 2009-09-16
Posts: 1000+

Re: YAY YAY YAY C#! :p

markyparky56 wrote:

Lots of those programs are VERY random...

I know, I was just experementing

Offline

 

#63 2010-05-02 12:57:08

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: YAY YAY YAY C#! :p

ThePCKid wrote:

markyparky56 wrote:

Lots of those programs are VERY random...

I know, I was just experementing

How about making something with purpose?


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

#64 2010-05-02 13:47:14

ThePCKid
Scratcher
Registered: 2009-09-16
Posts: 1000+

Re: YAY YAY YAY C#! :p

markyparky56 wrote:

ThePCKid wrote:

markyparky56 wrote:

Lots of those programs are VERY random...

I know, I was just experementing

How about making something with purpose?

Maybe later. I just installed Python.

Offline

 

#65 2010-05-03 05:49:54

markyparky56
Scratcher
Registered: 2008-03-20
Posts: 1000+

Re: YAY YAY YAY C#! :p

ThePCKid wrote:

markyparky56 wrote:

ThePCKid wrote:

I know, I was just experementing

How about making something with purpose?

Maybe later. I just installed Python.

Try Iron Python, its like visual studio, but for Python.


http://j.mp/jgVnTq
Check out my game engine development site: NewDawn I'm a Level 171 Scratcher.I am http://bit.ly/nkvLNT

Offline

 

Board footer