This file contains hidden or 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
| From 64ec1da49d233ab40c04b6b13698d038cf6729f5 Mon Sep 17 00:00:00 2001 | |
| From: irancore <amir.cinderella@gmail.com> | |
| Date: Fri, 7 Jul 2017 20:43:23 +0430 | |
| Subject: [PATCH] Crossfaction Complete Fixed | |
| --- | |
| src/server/database/Database/MySQLConnection.cpp | 4 +- | |
| src/server/game/Battlegrounds/Arena.cpp | 4 +- | |
| src/server/game/Battlegrounds/Battleground.cpp | 53 ++-- | |
| src/server/game/Battlegrounds/Battleground.h | 2 +- |
This file contains hidden or 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
| Emissary Chest = 19 | |
| Mythic+ Dungeon = 10 | |
| Lesser Invasion = 6 | |
| Normal Raid = 6 | |
| World Boss = 5 | |
| Weekly Chest = 5 | |
| LFR = 4 | |
| PvP = 4 | |
| Paragon Chest = 2 | |
| Heroic Raid = 1 |
This file contains hidden or 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
| copy="Troll" | |
| race=troll | |
| copy="Orc" | |
| race=orc | |
| copy="Undead" | |
| race=undead | |
| copy="Blood Elf" |
This file contains hidden or 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
| From b86040a5b96460748af8c3949ffd1ad18a9a6bc2 Mon Sep 17 00:00:00 2001 | |
| From: walkline <walkline.ua@gmail.com> | |
| Date: Sun, 3 Jun 2012 15:29:04 +0300 | |
| Subject: [PATCH] Implemented Arena Spectator. | |
| diff --git a/sql/updates/fc_updates_world/arena_spectator.sql b/sql/updates/fc_updates_world/arena_spectator.sql | |
| new file mode 100644 | |
| index 0000000..280de81 | |
| --- /dev/null |
This file contains hidden or 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
| let parking = []; | |
| function actualizar() { | |
| for (let i = 0; i < parking.length; i++) { | |
| console.log(`Auto: ${parking[i]}, Puesto ${i}`); | |
| } | |
| console.log(`----------------------------`) | |
| } | |
| parking.push("ROJO", "GRIS", "AZUL", "AMARILLO", "VERDE"); |
OlderNewer