From c02d820adecdab3c8d49992dab18a0131455813b Mon Sep 17 00:00:00 2001 From: Jauke Date: Mon, 26 Feb 2018 01:02:40 +0100 Subject: [PATCH] update --- Sample_project_1/Scripts/scripts-loader.rb | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/Sample_project_1/Scripts/scripts-loader.rb b/Sample_project_1/Scripts/scripts-loader.rb index 1c297a2..58ca646 100644 --- a/Sample_project_1/Scripts/scripts-loader.rb +++ b/Sample_project_1/Scripts/scripts-loader.rb @@ -1,27 +1,22 @@ # -*- coding: utf-8 -*- #============================================================================== -# ** ORMS Converter v1.1.0 +# ** scripts-loader v1.1.0 #------------------------------------------------------------------------------ # By Joke @biloumaster # GitHub: https://github.com/RMEx/scripts-externalizer #------------------------------------------------------------------------------ -# Loads all scripts in the Scripts folder -# -# To add a script: create a newscript.rb in the folder, and add his name -# in the _list.rb -# -# To add a folder: create a new folder, add the name of the folder in _list.rb -# with a "/" to the end of the name, create a new _list.rb in the folder +# Load all scripts from the given folder +# See the README.md on GitHub! +#============================================================================== + +#============================================================================== +# ** CONFIGURATION #============================================================================== module XT_CONFIG - #============================================================================== - # ** CONFIGURATION - #============================================================================== LOAD_FROM = "Scripts" # Load the scripts from the folder you want. - # Can be "C:/.../MyScripts/" or "../../MyScripts/" - + # Can be "C:/.../MyScripts/" or "../../MyScripts/" end #==============================================================================