Advice on scripting language

nikhilhs

Newcomer
Joined
Feb 22, 2004
Messages
22
I'm trying to pick a scripting language for the game. The game is written in C# and MDX.

The scripting language needs to be very easy to implement, and can call functions within the class that calls it. Any recommendations? Perl isn't an option, since all programmers on the team dislike it.

Thanks.

-Nick
 
I'm for a .NET solution myself. I have a VB.NET like scripting language that I convert into regular VB.NET code with some regular expressions. Then I just use the compiler that is available programmatically from the framework to generate the assemblies.
 
Back
Top