CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    May 2006
    Posts
    306

    How to make something like Script#

    How do I make a (whatever Script# is)?

    I have lots of functions for a game, but no real program that has wonderful intellisense. I know what Script# does, but I would like to make something like that for something else.

    So, do you know what exactly this kind of thing is? An extension? What?

  2. #2
    Join Date
    Mar 2007
    Posts
    274

    Re: How to make something like Script#

    Your in the c# forum, so I assume you want to write this in c#. You will need to create your own .exe Basically you will be creating your own editor. It will have a textbox, it will detect each keystroke, and based on that, it will show the names of your various functions. What you asked is pretty general, and honestly DOES NOT provide enough detail. Take a look at the c# IDE, and make your own version that "pops up" the various function names you've written for the various functions for your game.

    I am assuming here you are wanting some kind of development environment similar to VS.

    You will also need to write a compiler.......... Honestly what I think you want to do is FAR beyond what you can do.

  3. #3
    Join Date
    May 2006
    Posts
    306

    Re: How to make something like Script#

    So, how about something that can read the inside of a method/function?

    Can I do it that way? That's all I really need. If I can read the inside of a method and get every statement, that's fine.

  4. #4
    Join Date
    May 2007
    Posts
    1,546

    Re: How to make something like Script#

    www.monotorrent.com For all your .NET bittorrent needs

    NOTE: My code snippets are just snippets. They demonstrate an idea which can be adapted by you to solve your problem. They are not 100% complete and fully functional solutions equipped with error handling.

  5. #5
    Join Date
    May 2006
    Posts
    306

    Re: How to make something like Script#

    Oh goodie, how do I download it?

    Something called SVN? I tried downloading something for Dl'ing google code, but never got around to working with it.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured