-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a67e391
commit c02d820
Showing
1 changed file
with
8 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,22 @@ | ||
# -*- coding: utf-8 -*- | ||
#============================================================================== | ||
# ** ORMS Converter v1.1.0 | ||
# ** scripts-loader v1.1.0 | ||
#------------------------------------------------------------------------------ | ||
# By Joke @biloumaster <[email protected]> | ||
# 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 | ||
|
||
#============================================================================== | ||
|