| 
		  
			
			Python is the name of the scripting language I use. The JJ2 module will sort of create a simple way of accessing parts of JJ2, so everyone can be creative and write his own JJ2 scripts. 
A very simple example of things that you should be able to do in the end is.. skipping a level when for example player 3 hits a specified position in a level.
 
	Code: import jj2
while 1:
    if jj2.position.player3 == "45,33":
        jj2.control.next_level ** Please note this code is pure fiction.
		 |