diff options
author | Haru <haru@dotalux.com> | 2015-11-11 14:03:45 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-12-15 20:53:51 +0100 |
commit | 0cc6aa2a8b1fa570b020fa1c582bedc74f273ee4 (patch) | |
tree | 161222fb5b37ced31b9dffa6e351e1b08b7e29fe /npc/merchants/cashheadgear_dye.txt | |
parent | a29147e139c55ecedfce5dbd75de9bb886b1ad4e (diff) | |
download | hercules-0cc6aa2a8b1fa570b020fa1c582bedc74f273ee4.tar.gz hercules-0cc6aa2a8b1fa570b020fa1c582bedc74f273ee4.tar.bz2 hercules-0cc6aa2a8b1fa570b020fa1c582bedc74f273ee4.tar.xz hercules-0cc6aa2a8b1fa570b020fa1c582bedc74f273ee4.zip |
Standardized header in scripts (part 6)
- Now including GPL-compliant license/copyright info
- Restored some missing copyrights
- Merchants scripts folders
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/merchants/cashheadgear_dye.txt')
-rw-r--r-- | npc/merchants/cashheadgear_dye.txt | 62 |
1 files changed, 41 insertions, 21 deletions
diff --git a/npc/merchants/cashheadgear_dye.txt b/npc/merchants/cashheadgear_dye.txt index f9a6cd089..9df88ab2a 100644 --- a/npc/merchants/cashheadgear_dye.txt +++ b/npc/merchants/cashheadgear_dye.txt @@ -1,36 +1,56 @@ -//===== Hercules Script ====================================== +//================= Hercules Script ======================================= +//= _ _ _ +//= | | | | | | +//= | |_| | ___ _ __ ___ _ _| | ___ ___ +//= | _ |/ _ \ '__/ __| | | | |/ _ \/ __| +//= | | | | __/ | | (__| |_| | | __/\__ \ +//= \_| |_/\___|_| \___|\__,_|_|\___||___/ +//================= License =============================================== +//= This file is part of Hercules. +//= http://herc.ws - http://github.com/HerculesWS/Hercules +//= +//= Copyright (C) 2012-2015 Hercules Dev Team +//= Copyright (C) Xantara +//= Copyright (C) Maud_Dib +//= +//= Hercules is free software: you can redistribute it and/or modify +//= it under the terms of the GNU General Public License as published by +//= the Free Software Foundation, either version 3 of the License, or +//= (at your option) any later version. +//= +//= This program is distributed in the hope that it will be useful, +//= but WITHOUT ANY WARRANTY; without even the implied warranty of +//= MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +//= GNU General Public License for more details. +//= +//= You should have received a copy of the GNU General Public License +//= along with this program. If not, see <http://www.gnu.org/licenses/>. +//========================================================================= //= Headgear Dyer (Cash) -//===== By: ================================================== -//= Xantara -//= Maud_Dib -//===== Current Version: ===================================== -//= 1.0 -//===== Description: ========================================= -//= [Official Conversion] +//================= Description =========================================== //= Change headgear's color. Cost is a Mysterious Dyestuff -//===== Additional Comments: ================================= -//= 1.0 First / Optimized Version -//============================================================ +//================= Current Version ======================================= +//= 1.0 +//========================================================================= prt_in,253,168,4 script Alora 4_F_LGTGIRL,{ - -// Mysterious Dyestuff + // Mysterious Dyestuff .@dyeID = 6220; -// Headgear Choices + // Headgear Choices setarray .@hgn$[1], "Mage Hat","Beanie","Drooping Cat","Deviruchi Hat","Wig","Ribbon","Magestic Goat"; -// Mage Hats - Normal, Yellow, Blue, Brown, Gray, Red + // Mage Hats - Normal, Yellow, Blue, Brown, Gray, Red setarray .@hg_1[1], 5027, 5242, 5241, 5240, 5239, 5238; -// Beanies - Normal, Pink, Blue, Brown + // Beanies - Normal, Pink, Blue, Brown setarray .@hg_2[1], 5076, 5237, 5236, 5235; -// Drooping Cats - Normal, Blue, Brown, Gray, Pink, Yellow + // Drooping Cats - Normal, Blue, Brown, Gray, Pink, Yellow setarray .@hg_3[1], 5058, 5233, 5231, 5230, 5232, 5234; -// Deviruchi Hats - Normal, Red, Gray, Brown + // Deviruchi Hats - Normal, Red, Gray, Brown setarray .@hg_4[1], 5038, 5227, 5228, 5229; -// Wigs - Happy, Shiny, Marvelous, Fantastic + // Wigs - Happy, Shiny, Marvelous, Fantastic setarray .@hg_5[1], 5273, 5274, 5275, 5276; -// Ribbons - Normal, Black, Yellow, Green, Pink, Red, Orange, White + // Ribbons - Normal, Black, Yellow, Green, Pink, Red, Orange, White setarray .@hg_6[1], 2208, 5191, 5192, 5193, 5194, 5195, 5196, 5197; -// Magestic Goats - Normal, Evolved + // Magestic Goats - Normal, Evolved setarray .@hg_7[1], 2256, 5217; mes "[Alora]"; |