ZoriaRPG

std.zh for ZC 2.55

Nov 25th, 2016
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.15 KB | None | 0 0
  1. // std.zh - 12th January, 2016
  2. // Standard header for ZScript.
  3. // Please don't edit this file. Instead, create a new header file for your
  4. // quests' scripts,  add constants and procedures to that file,
  5. // and import it separately.
  6.  
  7. //Proposed expansion for ZC 2.50.2
  8. //12-JAN-2016
  9.  
  10. //Main Files
  11. import "std_constants_2.50.2.zh"
  12. import "std_functions_2.50.2.zh"
  13. import "std_vars.zh"    //Basic array, and some generic handlers. Useful in preventing quest fixing/expansion issues.
  14.  
  15. //ZScript string handling functions, akin to those found in C
  16. //import "string.zh"
  17. import "string_constants.zh" //Now imported from here. This prevents conflicts for those people
  18. import "string_functions.zh" //who would import string.zh from a secondary source, as that file is now
  19.                  //empty, and the string.ch components load from here.
  20.  
  21. //Memory Management Utilities
  22. import "mem.zh"
  23.  
  24. //Shortcuts and Macros
  25. import "std_shortcuts.zh" //Shortcuts for ZScript functions
  26. import "std_constants_shortcuts.zh" //Shorter constants, requested by users.
  27.  
  28. //Locale
  29. import "locale/std_EnglishIntl.zh" //International English Localisation
  30.  
  31. //Settings
  32. import "std.cfg"
Add Comment
Please, Sign In to add comment