What is scripting used for?

Started by
2 comments, last by Kylotan 18 years, 10 months ago
Hiya, I have been reading around these boards a lot lately because I am deep in the midst of creating my first "decent" game. I have noticed that a lot of people use scripting... but I have never seen anyone use it or tell me why they are using it except to say "it simplifies things in the long run". Can anyone just list out and/or explain to me what scripting is used for in gaming development and in general?
Advertisement
from configuration files to game logic.

Scripts save a lot of time because they are usually really easy to use and don't need to be compiled.
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                                                          
Looking for video game music? Check out some of my samples at http://www.youtube.c...ser/cminortunes            
                                                          
I'm currently looking to create music for a project, if you are interested e-mail me at cminortunes@gmail.com    
                                                          
Please only message me for hobby projects, I am not looking to create music for anything serious.
1. AI
- Script out different units behaviors and then randomly select them to be used
- Change how AI works dynamically all with the change of a script
2. Game Logics
- Have scripts that can dynamically change game play
- Dynamically change things and allow for users to write their own changes
3. Cutscenes
- Script them out rather than have to prerender and work with that
- Allows for users to do the same
4. Everything else not mentioned along the lines of data driven design and its benefits [smile]
The Forum FAQ contains some info on this.

This topic is closed to new replies.

Advertisement