Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] Replace references to 'rpherbig' with 'elanthia-online' #7001

Merged
merged 3 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ A series of [Lich](https://github.com/elanthia-online/lich-5) scripts for use wi

If you have some feedback or suggestions, please [open an issue](https://github.com/elanthia-online/dr-scripts/issues).

[We're on Discord.](https://discord.gg/AXhcahpdnN)
[We're on Discord.](https://discord.gg/uxZWxuX)

We look forward to hearing from you!
2 changes: 1 addition & 1 deletion burgle.lic
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class Burgle
if @entry_type =~ /lockpick|cycle/ && (@use_lockpick_ring == nil || @lockpick_container == nil)
DRC.message("Settings for lockpick rings are now in burgle_settings:use_lockpick_ring and burgle_settings:lockpick_container.")
DRC.message("Using old setting of use_lockpick_ring and lockpick_container from pick for now, but this will be removed in the future.")
DRC.message("To reuse the same settings, please use anchors: https://github.com/rpherbig/dr-scripts/wiki/YAML-Anchors")
DRC.message("To reuse the same settings, please use anchors: https://github.com/elanthia-online/dr-scripts/wiki/YAML-Anchors")
@use_lockpick_ring = @settings.use_lockpick_ring if @use_lockpick_ring == nil
@lockpick_container = @settings.lockpick_container if @lockpick_container == nil
end
Expand Down
6 changes: 3 additions & 3 deletions clean-leather.lic
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class CleanLeather
when /looks as clean as you/
break
when /You need to be holding/
DRC.message("Unable to scrape leather. Please submit an issue on GitHub: https://github.com/rpherbig/dr-scripts/issues")
DRC.message("Unable to scrape leather. Please submit an issue on GitHub: https://github.com/elanthia-online/dr-scripts/issues")
DRCC.stow_crafting_item('scraper', @bag, @belt)
DRCI.put_away_item?(hide)
exit
Expand All @@ -136,15 +136,15 @@ class CleanLeather
when /would only be damaged by adding more/i
break
when /what/
DRC.message("Unable to apply preservative. Please submit an issue on GitHub: https://github.com/rpherbig/dr-scripts/issues")
DRC.message("Unable to apply preservative. Please submit an issue on GitHub: https://github.com/elanthia-online/dr-scripts/issues")
exit
end
end

DRCI.put_away_item?(@preservative, @bag) if DRCI.in_hands?(@preservative)

unless DRCI.put_away_item?(hide, storage)
DRC.message("Unable to your store your preservative and/or cleaned hide. Please submit an issue on GitHub: https://github.com/rpherbig/dr-scripts/issues")
DRC.message("Unable to your store your preservative and/or cleaned hide. Please submit an issue on GitHub: https://github.com/elanthia-online/dr-scripts/issues")
DRCI.stow_hands
exit
end
Expand Down
2 changes: 1 addition & 1 deletion common-items.lic
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ custom_require.call(%w[common events])
module DRCI
module_function

## How to add new trash receptacles https://github.com/rpherbig/dr-scripts/wiki/Adding-new-trash-receptacles
## How to add new trash receptacles https://github.com/elanthia-online/dr-scripts/wiki/Adding-new-trash-receptacles
TRASH_STORAGE = %w[arms barrel basin basket bin birdbath bucket chamberpot gloop hole log puddle statue stump tangle tree turtle urn gelapod]

DROP_TRASH_SUCCESS_PATTERNS = [
Expand Down
6 changes: 3 additions & 3 deletions crossing-repair.lic
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class CrossingRepair
if !@hometown_data['currency']
DRC.message("No known currency for target town. Exiting.")
DRC.message("To add a currency for this town, please submit an issue on GitHub:")
DRC.message("https://github.com/rpherbig/dr-scripts/issues")
DRC.message("https://github.com/elanthia-online/dr-scripts/issues")
exit
else
if DRCM.wealth(settings['hometown']) >= @repair_withdrawal_amount && @skip_bank
Expand All @@ -144,7 +144,7 @@ class CrossingRepair
DRC.message("No bank specified for this town, AND we don't have enough money on hand,")
DRC.message("and/or we have not specified to skip depositing excess coins after repair.")
DRC.message("To add a bank for this town, please submit an issue on GitHub:")
DRC.message("https://github.com/rpherbig/dr-scripts/issues")
DRC.message("https://github.com/elanthia-online/dr-scripts/issues")
exit
end
end
Expand All @@ -155,7 +155,7 @@ class CrossingRepair
unless leather_repairer || metal_repairer
DRC.message("No repairers found for #{town} in base-town.yaml. Please choose a different town.")
DRC.message("To add repairers for this town, please submit an issue on GitHub:")
DRC.message("https://github.com/rpherbig/dr-scripts/issues")
DRC.message("https://github.com/elanthia-online/dr-scripts/issues")
exit
end

Expand Down
28 changes: 14 additions & 14 deletions data/base-help.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ afk_justice_threshold:

alchemy_belt:
decription: Specify alchemy belt name and list of tools.
example: https://github.com/rpherbig/dr-scripts/wiki/Crafting-Setup#tools (see Toolbelts section)
example: https://github.com/elanthia-online/dr-scripts/wiki/Crafting-Setup#tools (see Toolbelts section)
referenced_by:
- clerk-tools
specific_descriptions:
Expand Down Expand Up @@ -68,7 +68,7 @@ alchemy_prep_quantity:

alchemy_tools:
description: List of alchemy tools.
example: https://github.com/rpherbig/dr-scripts/wiki/Crafting-Setup#tools
example: https://github.com/elanthia-online/dr-scripts/wiki/Crafting-Setup#tools
referenced_by:
- clerk-tools
specific_descriptions:
Expand Down Expand Up @@ -502,23 +502,23 @@ divination_tool:

enchanting_belt:
description: Specify enchanting belt name and list of tools.
example: https://github.com/rpherbig/dr-scripts/wiki/Crafting-Setup#tools (see Toolbelts section)
example: https://github.com/elanthia-online/dr-scripts/wiki/Crafting-Setup#tools (see Toolbelts section)
referenced_by:
- clerk-tools
specific_descriptions:
clerk-tools: Get and stow enchanting tools from belt after storing with clerk.

enchanting_tools:
description: List of enchanting tools.
example: https://github.com/rpherbig/dr-scripts/wiki/Crafting-Setup#tools
example: https://github.com/elanthia-online/dr-scripts/wiki/Crafting-Setup#tools
referenced_by:
- clerk-tools
specific_descriptions:
clerk-tools: Get and store these tools with clerk.

engineering_belt:
description: Specify engineering belt name and list of tools.
example: https://github.com/rpherbig/dr-scripts/wiki/Crafting-Setup#tools (see Toolbelts section)
example: https://github.com/elanthia-online/dr-scripts/wiki/Crafting-Setup#tools (see Toolbelts section)
referenced_by:
- arrows
- bolts
Expand Down Expand Up @@ -566,7 +566,7 @@ exp_timers:
- t2
- crossing-training
specific_descriptions:
t2: Timers are used internally as cooldowns before executing skills / skill groups. See also https://github.com/rpherbig/dr-scripts/wiki/T2-Tutorial
t2: Timers are used internally as cooldowns before executing skills / skill groups. See also https://github.com/elanthia-online/dr-scripts/wiki/T2-Tutorial
crossing-training: Timers are used internally as cooldowns before working skills.

favor_goal:
Expand Down Expand Up @@ -600,7 +600,7 @@ favor_town:

firstaid_scholarship_modifier:
description: Allows manually defining the Effective Scholarship Modifier scale.
example: 'https://github.com/rpherbig/dr-scripts/wiki/First-Aid-Strategy#advanced-options '
example: 'https://github.com/elanthia-online/dr-scripts/wiki/First-Aid-Strategy#advanced-options '
referenced_by:
- first-aid
specific_descriptions:
Expand Down Expand Up @@ -640,15 +640,15 @@ forage_override_town:

forging_belt:
description: Specify forging belt name and list of tools.
example: https://github.com/rpherbig/dr-scripts/wiki/Crafting-Setup#tools (see Toolbelts section)
example: https://github.com/elanthia-online/dr-scripts/wiki/Crafting-Setup#tools (see Toolbelts section)
referenced_by:
- clerk-tools
specific_descriptions:
clerk-tools: Gets and stows tools on your belt when storing with clerk.

forging_tools:
description: List of forging tools.
example: https://github.com/rpherbig/dr-scripts/wiki/Crafting-Setup#tools
example: https://github.com/elanthia-online/dr-scripts/wiki/Crafting-Setup#tools
referenced_by:
clerk-tools
specific_descriptions:
Expand Down Expand Up @@ -868,7 +868,7 @@ number_of_firstaid_charts:

outfitting_belt:
description: Specify outfitting belt name and list of tools.
example: https://github.com/rpherbig/dr-scripts/wiki/Crafting-Setup#tools (see Toolbelts section)
example: https://github.com/elanthia-online/dr-scripts/wiki/Crafting-Setup#tools (see Toolbelts section)
referenced_by:
- clean-leather
- clerk-tools
Expand All @@ -878,7 +878,7 @@ outfitting_belt:

outfitting_tools:
description: List of outfitting tools.
example: https://github.com/rpherbig/dr-scripts/wiki/Crafting-Setup#tools
example: https://github.com/elanthia-online/dr-scripts/wiki/Crafting-Setup#tools
referenced_by:
- clerk-tools
specific_descriptions:
Expand Down Expand Up @@ -1036,7 +1036,7 @@ symbiosis_setting:

t2_avoids:
description: T2 training avoids list.
example: https://github.com/rpherbig/dr-scripts/wiki/T2-Tutorial
example: https://github.com/elanthia-online/dr-scripts/wiki/T2-Tutorial
referenced_by:
- t2
specific_descriptions:
Expand Down Expand Up @@ -1160,7 +1160,7 @@ training_box_list:

training_list:
description: Defines T2 skills to train and their options (other settings).
example: https://github.com/rpherbig/dr-scripts/wiki/T2-Tutorial
example: https://github.com/elanthia-online/dr-scripts/wiki/T2-Tutorial
referenced_by:
- t2
specific_descriptions:
Expand All @@ -1183,7 +1183,7 @@ waggle_force_cambrinth:

waggle_sets:
description: Defines waggle sets.
example: "https://github.com/rpherbig/dr-scripts/wiki/Waggle-Sets " # Trailing space preserves proper URL link in FE
example: "https://github.com/elanthia-online/dr-scripts/wiki/Waggle-Sets " # Trailing space preserves proper URL link in FE
referenced_by:
- astrology
- autocontingency
Expand Down
2 changes: 1 addition & 1 deletion data/base-lumber.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ lumber_buddy_rooms:
- 2701
- 2702
- 2703
# - 2717 # Under contruction pending mapping improvements, see https://github.com/rpherbig/dr-scripts/issues/4314
# - 2717 # Under contruction pending mapping improvements, see https://github.com/elanthia-online/dr-scripts/issues/4314
# West Gate
# Populated by Telga Orek (900-1300)
wyvern_mountain_telga:
Expand Down
4 changes: 2 additions & 2 deletions dependency.lic
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require 'ostruct'
require 'digest/sha1'
require 'monitor'

$DEPENDENCY_VERSION = '2.0'
$DEPENDENCY_VERSION = '2.0.1'
$MIN_RUBY_VERSION = '3.2.2'
DRINFOMON_IN_CORE_LICH ||= false
DRINFOMON_CORE_LICH_DEFINES ||= []
Expand Down Expand Up @@ -1575,7 +1575,7 @@ def verify_script(script_names)
.each do |name|
echo "Failed to find a script named '#{name}'"
echo "Please report this to <https://github.com/elanthia-online/dr-scripts/issues>"
echo "or to Discord <https://discord.gg/3UMbxypN>"
echo "or to Discord <https://discord.gg/uxZWxuX>"
state = false
end
state
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Welcome to GitHub Pages

You can use the [editor on GitHub](https://github.com/rpherbig/dr-scripts/edit/master/docs/index.md) to maintain and preview the content for your website in Markdown files.
You can use the [editor on GitHub](https://github.com/elanthia-online/dr-scripts/edit/master/docs/index.md) to maintain and preview the content for your website in Markdown files.

Whenever you commit to this repository, GitHub Pages will run [Jekyll](https://jekyllrb.com/) to rebuild the pages in your site, from the content in your Markdown files.

Expand Down Expand Up @@ -30,7 +30,7 @@ For more details see [GitHub Flavored Markdown](https://guides.github.com/featur

### Jekyll Themes

Your Pages site will use the layout and styles from the Jekyll theme you have selected in your [repository settings](https://github.com/rpherbig/dr-scripts/settings). The name of this theme is saved in the Jekyll `_config.yml` configuration file.
Your Pages site will use the layout and styles from the Jekyll theme you have selected in your [repository settings](https://github.com/elanthia-online/dr-scripts/settings). The name of this theme is saved in the Jekyll `_config.yml` configuration file.

### Support or Contact

Expand Down
4 changes: 2 additions & 2 deletions dr-scripts_install.lic
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
=begin

dr-scripts install helper
Aims to automate running through the steps from https://github.com/rpherbig/dr-scripts/wiki/First-Time-Setup
Aims to automate running through the steps from https://github.com/elanthia-online/dr-scripts/wiki/First-Time-Setup
Please see us on Discord if there are any issues, or raise an issue on Github

author: Mahtra ([email protected])
Expand All @@ -21,6 +21,6 @@
respond("")
respond("This script is no longer used.")
respond("Please visit")
respond("<https://github.com/rpherbig/dr-scripts/wiki/First-Time-Setup>")
respond("<https://github.com/elanthia-online/dr-scripts/wiki/First-Time-Setup>")
respond("For up to date install instructions")
respond("")
2 changes: 1 addition & 1 deletion equipmanager.lic
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ class EquipmentManager
when /^ow$|offhand weapon/i
return true # just use weapon in your left hand
else
DRC.message("Unsupported weapon swap: #{noun} to #{skill}. Please report this to https://github.com/rpherbig/dr-scripts/issues")
DRC.message("Unsupported weapon swap: #{noun} to #{skill}. Please report this to https://github.com/elanthia-online/dr-scripts/issues")
return false
end
# All possible weapon skills to swap into.
Expand Down
2 changes: 1 addition & 1 deletion first-aid.lic
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
=begin
Documentation: https://elanthipedia.play.net/Lich_script_repository#first-aid
Advanced Options: https://github.com/rpherbig/dr-scripts/wiki/First-Aid-Strategy
Advanced Options: https://github.com/elanthia-online/dr-scripts/wiki/First-Aid-Strategy
=end

custom_require.call(%w[common common-travel drinfomon equipmanager])
Expand Down
10 changes: 5 additions & 5 deletions links.lic
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ class Links

def initialize
links = {
'Getting Help with Lich' => 'https://github.com/rpherbig/dr-scripts/wiki/Getting-Help-With-Lich',
'Lich & DR-Scripts Wiki' => 'https://github.com/rpherbig/dr-scripts/wiki',
'Getting Help with Lich' => 'https://github.com/elanthia-online/dr-scripts/wiki/Getting-Help-With-Lich',
'Lich & DR-Scripts Wiki' => 'https://github.com/elanthia-online/dr-scripts/wiki',
'Script Settings Documentation' => 'https://elanthipedia.play.net/Lich_script_repository',
'Guild Scripting Tutorials' => 'https://github.com/rpherbig/dr-scripts/wiki/DR-Scripts-Tutorials',
'Guild Scripting Tutorials' => 'https://github.com/elanthia-online/dr-scripts/wiki/DR-Scripts-Tutorials',
'Hunting Ladder Spreadsheet' => 'http://i.imgur.com/lCcb3rD.jpg',
'Add and Check Known Issues' => 'https://github.com/rpherbig/dr-scripts/issues',
'Recent Script Changes (Updated Weekly)' => 'https://github.com/rpherbig/dr-scripts/wiki/dr-scripts-update-summary',
'Add and Check Known Issues' => 'https://github.com/elanthia-online/dr-scripts/issues',
'Recent Script Changes (Updated Weekly)' => 'https://github.com/elanthia-online/dr-scripts/wiki/dr-scripts-update-summary',
'YAML Validator' => 'http://yaml-online-parser.appspot.com/',
'Player Shops' => 'http://drservice.info/Plaza/',
'Lich mapping guide' => 'https://elanthipedia.play.net/Lich_mapping_reference',
Expand Down
2 changes: 1 addition & 1 deletion outdoorsmanship.lic
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class Outdoorsmanship

DRC.bput('release spell', 'You let your concentration lapse', "You aren't preparing a spell")
DRC.bput('release mana', 'You release all', "You aren't harnessing any mana")
# Do not release symbiosis - see https://github.com/rpherbig/dr-scripts/issues/3141
# Do not release symbiosis - see https://github.com/elanthia-online/dr-scripts/issues/3141
end
end

Expand Down
4 changes: 2 additions & 2 deletions profiles/Samples/SampleBarbarian-setup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# - Chuno

# GUILD TUTORIAL
# https://github.com/rpherbig/dr-scripts/wiki/Barbarian-Tutorials
# https://github.com/elanthia-online/dr-scripts/wiki/Barbarian-Tutorials

# This file can be used with ;training-manager or ;t2. The T2 specifics are at the very bottom.

Expand Down Expand Up @@ -609,7 +609,7 @@ hunting_file_list:
- setup
# - back

#### T2 Setup - https://github.com/rpherbig/dr-scripts/wiki/T2-Tutorial
#### T2 Setup - https://github.com/elanthia-online/dr-scripts/wiki/T2-Tutorial
training_list:
- skill:
- Athletics
Expand Down
4 changes: 2 additions & 2 deletions profiles/Samples/SampleBard-setup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# - Erendel

# TUTORIALS
# https://github.com/rpherbig/dr-scripts/wiki/Bard-Tutorials
# https://github.com/elanthia-online/dr-scripts/wiki/Bard-Tutorials

# This file can be used with ;training-manager or ;t2. The T2 specifics are at the very bottom.

Expand Down Expand Up @@ -628,7 +628,7 @@ sanowret_no_use_scripts:
- buff


#### T2 Setup - https://github.com/rpherbig/dr-scripts/wiki/T2-Tutorial
#### T2 Setup - https://github.com/elanthia-online/dr-scripts/wiki/T2-Tutorial
training_list:

- skill: #header for each section and the dash out front matters
Expand Down
4 changes: 2 additions & 2 deletions profiles/Samples/SampleCleric-setup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# - Ugsy

# GUILD TUTORIAL
# https://github.com/rpherbig/dr-scripts/wiki/Cleric-Tutorials
# https://github.com/elanthia-online/dr-scripts/wiki/Cleric-Tutorials

# This file can be used with ;training-manager or ;t2. The T2 specifics are at the very bottom.

Expand Down Expand Up @@ -689,7 +689,7 @@ hunting_file_list:
- setup
# - back

#### T2 Setup - https://github.com/rpherbig/dr-scripts/wiki/T2-Tutorial
#### T2 Setup - https://github.com/elanthia-online/dr-scripts/wiki/T2-Tutorial
training_list:
- skill:
- Theurgy
Expand Down
4 changes: 2 additions & 2 deletions profiles/Samples/SampleEmpath-setup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# - Rizzoli

# TUTORIALS
# https://github.com/rpherbig/dr-scripts/wiki/Empath-Tutorials
# https://github.com/elanthia-online/dr-scripts/wiki/Empath-Tutorials

# Empath tip: On a new empath, immediately type BRAWL in the game to remove the attack safeguard
# This file can be used with ;training-manager or ;t2. The T2 specifics are at the very bottom.
Expand Down Expand Up @@ -731,7 +731,7 @@ hunting_file_list:
- setup
# - back

#### T2 Setup - https://github.com/rpherbig/dr-scripts/wiki/T2-Tutorial
#### T2 Setup - https://github.com/elanthia-online/dr-scripts/wiki/T2-Tutorial
training_list:
- skill:
- Athletics
Expand Down
2 changes: 1 addition & 1 deletion profiles/Samples/SampleMoonMage-setup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# - Jardani

# TUTORIAL
# https://github.com/rpherbig/dr-scripts/wiki/Moon-Mage-Tutorials
# https://github.com/elanthia-online/dr-scripts/wiki/Moon-Mage-Tutorials

# It is recommended to get a target or debilitation spell for your second circle. (e.g. Dinazen Olkar or Calm)
# Please see the 'offensive_spells:' setting below for a commented (unused) example. Uncomment to begin usage (remove #'s).
Expand Down
Loading
Loading