Difference between revisions of "Basic code scripting"

From XStoryPlayer Wiki
Jump to: navigation, search
Line 5: Line 5:
 
It contains two sub-directories:
 
It contains two sub-directories:
  
* /std
+
* /std : These files are the same for all stories (like .dll files in windows)
These files are the same for all stories (like .dll files in windows)
+
  
* /stories
+
* /stories : These files are story specific.
These files are story specific.
+
  
  
 
The /stories/dungeon directory contains the following sub-directories:
 
The /stories/dungeon directory contains the following sub-directories:
  
* /chars
+
* /chars : These files are the same for all stories (like .lib files in c++)
These files are the same for all stories (like .lib files in c++)
+
  
* /gamestate
+
* /gamestate : These files are story specific.
These files are story specific.
+
  
* /lib
+
* /lib : These files are story specific.
These files are story specific.
+
  
* /mains
+
* /mains : These files are story specific.
These files are story specific.
+
  
* /objects
+
* /objects : These files are story specific.
These files are story specific.
+
  
* /scenes
+
* /scenes : These files are story specific.
These files are story specific.
+
  
* /settings
+
* /settings : These files are story specific.
These files are story specific.
+

Revision as of 13:24, 5 January 2015


All the scripts for the dungeon pack directory can be found in the ./pack/pack_dungeon/init directory.

It contains two sub-directories:

  • /std : These files are the same for all stories (like .dll files in windows)
  • /stories : These files are story specific.


The /stories/dungeon directory contains the following sub-directories:

  • /chars : These files are the same for all stories (like .lib files in c++)
  • /gamestate : These files are story specific.
  • /lib : These files are story specific.
  • /mains : These files are story specific.
  • /objects : These files are story specific.
  • /scenes : These files are story specific.
  • /settings : These files are story specific.