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
<?php | |
// Procedure 3964R | |
// Interpreter RK512 | |
class Com525 | |
{ | |
// commands | |
private const CMD_SEND = 0x41; // 'A' | |
private const CMD_SEND_X = 0x4F; // 'O' |
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
@echo off | |
echo ****************************************************************************************** | |
echo This uses FFMPEG to convert and rename all of the files required for AoWoW sounds and | |
echo music. FFMPEG will loop indefinitely if we output a file of the same extension (MP3 to | |
echo MP3), so we just append an underscore there. | |
echo ****************************************************************************************** | |
echo USE: Place this convert.cmd and ffmpeg.exe in the <localeCode>\Sound folder and run. | |
echo ****************************************************************************************** | |
pause |
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
#!/bin/bash | |
find . -name "*.wav" | xargs -I % sh -c 'ffmpeg -hide_banner -y -i "%" -acodec libvorbis -f ogg "%_"; rm "%";' && find . -name "*.mp3" | xargs -I % sh -c 'ffmpeg -hide_banner -y -i "%" -acodec libmp3lame -f mp3 "%_"; rm "%";' |
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
#!/bin/bash | |
############### | |
# definitions # | |
############### | |
# 0 0 2 3 4 5 5 8 ? | |
LOCALES=( 'enUS' 'enGB' 'frFR' 'deDE' 'zhCN' 'esES' 'esMX' 'ruRU' '') | |
LOCALIZED=( |
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
-- class:0, subclass:6,8 (item enhancement, other consumables) | |
UPDATE locales_item SET `name_loc2` = 'Pierre de soins mineure', `name_loc3` = 'Schwacher Gesundheitsstein', `name_loc6` = 'Piedra de salud', `name_loc8` = 'Крошечный камень здоровья' WHERE `entry` = 5512; | |
UPDATE locales_item SET `name_loc2` = 'Feu d\'artifice « rose jaune »', `name_loc3` = 'Feuerwerk mit gelben Rosen', `name_loc6` = 'Fuego de artificio amarillo y rosa', `name_loc8` = 'Фейерверк \"Желтая роза\"' WHERE `entry` = 9315; | |
UPDATE locales_item SET `name_loc2` = 'Pierre de soins mineure', `name_loc3` = 'Schwacher Gesundheitsstein', `name_loc6` = 'Piedra de salud', `name_loc8` = 'Крошечный камень здоровья' WHERE `entry` = 19004; | |
UPDATE locales_item SET `name_loc2` = 'Pierre de soins mineure', `name_loc3` = 'Schwacher Gesundheitsstein', `name_loc6` = 'Piedra de salud', `name_loc8` = 'Крошечный камень здоровья' WHERE `entry` = 19005; | |
UPDATE locales_item SET `name_loc2` = 'Parchemin d\'enchantement de bottes (Dextérité)', `name_loc3` = 'Rolle |
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
-- link breath and self-stun | |
DELETE FROM spell_linked_spell WHERE spell_trigger = -69006; | |
INSERT INTO spell_linked_spell (spell_trigger, spell_effect, type, comment) VALUES (-69006, 69004, 0, 'Onyxian Whelpling - Emote'); | |
-- periodic trigger-aura to creature | |
DELETE FROM creature_template_addon WHERE entry = 36607; | |
INSERT INTO creature_template_addon (entry, auras) VALUES (36607, '69005'); | |
-- emote text | |
DELETE FROM creature_text WHERE entry = 36607; | |
INSERT INTO creature_text (entry, text, type, probability, comment) VALUES (36607, '%s takes a deep breath!', 16, 100, 'Onyxian Whelpling - Deep Breath'); | |
-- create AI |
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
diff --git a/src/server/scripts/Northrend/Nexus/EyeOfEternity/eye_of_eternity.h b/src/server/scripts/Northrend/Nexus/EyeOfEternity/eye_of_eternity.h | |
index cc74ce9..59eb2af 100644 | |
--- a/src/server/scripts/Northrend/Nexus/EyeOfEternity/eye_of_eternity.h | |
+++ b/src/server/scripts/Northrend/Nexus/EyeOfEternity/eye_of_eternity.h | |
@@ -24,49 +24,82 @@ enum InstanceData | |
MAX_ENCOUNTER, | |
DATA_VORTEX_HANDLING, | |
- DATA_POWER_SPARKS_HANDLING | |
+ DATA_POWER_SPARKS_HANDLING, |