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
/*Dark Iron Attack | |
23808 - [DND] Brewfest Keg Move to Target | |
24766 - [DND] Brewfest Face Me Bunny | |
24109 - [DND] Brewfest Target Dummy Move To Target | |
23894 - [DND] Brewfest Dark Iron Spawn Bunny | |
23703 - [DND] Brewfest Dark Iron Event Generator | |
188508 - Dark Iron Mole Machine (Minion Summoner) |
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
// Dark Iron Guzzler in the Brewfest achievement 'Down With The Dark Iron' | |
enum DarkIronGuzzler | |
{ | |
NPC_DARK_IRON_GUZZLER = 23709, | |
NPC_DARK_IRON_HERALD = 24536, | |
NPC_DARK_IRON_SPAWN_BUNNY = 23894, | |
NPC_FESTIVE_KEG_1 = 23702, // Thunderbrew Festive Keg | |
NPC_FESTIVE_KEG_2 = 23700, // Barleybrew Festive Keg | |
NPC_FESTIVE_KEG_3 = 23706, // Gordok Festive Keg |
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
#!/bin/bash | |
url=http://redefininggod.com | |
webarchive=https://web.archive.org | |
wget="wget -e robots=off -nv" | |
tab="$(printf '\t')" | |
additional_url=url.list | |
# Construct listing.txt from url.list | |
# The list of archived pages, including some wildcard url |
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
class AccountMounts : public PlayerScript | |
{ | |
static const bool limitrace = false; // This set to true will only learn mounts from chars on the same team, do what you want. | |
public: | |
AccountMounts() : PlayerScript("AccountMounts") { } | |
void OnLogin(Player* pPlayer) | |
{ | |
std::vector<uint32> Guids; | |
QueryResult result1 = CharacterDatabase.PQuery("SELECT guid, race FROM characters WHERE account = %u", pPlayer->GetSession()->GetAccountId()); |
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
/* | |
Ultimate Duel Script (Reward/Rating/Security/Zoned & Reset) | |
Author : Philippe | |
Version : V1.4 (Full Rewrite) | |
Release Date : 21/03/14 | |
Script Complete : 80 % | |
Version : 3.3.5 & 4.3.4 | |
TrinityCore based. | |
Tested and Works Well. |
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
//Orginal script by : ??? | |
//Fixed errors by : SymbolixDEV | |
#include "ScriptPCH.h" | |
#include <cstring> | |
#define SET_CURRENCY 2 //0 for gold, 1 for honor, 2 for tokens | |
#define TOKEN_ID 23247 // token id | |
#if SET_CURRENCY == 0 | |
#define BOUNTY_1 "I would like to place a 20g bounty." |
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: Walkline | |
Fixed by : SymbolixDEV | |
Complete : 91% | |
=================================================================================================== | |
diff --git a/sql/arena-spectator/spectator.sql b/sql/arena-spectator/spectator.sql | |
new file mode 100644 | |
index 0000000..39cff15 | |
--- /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
/************************************ | |
* Custom Commands * | |
* * | |
* RealityNetGaming * | |
************************************* | |
*/ | |
#include "ScriptPCH.h" | |
#include "Chat.h" |
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
/************************************ | |
* Login Script * | |
* * | |
* UNTESTED * | |
* * | |
* RealityNetGaming * | |
************************************* | |
*/ | |
//Credit to SymbolixDEV for original. |
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
/************************************ | |
* AnimationOnLevel * | |
* * | |
* Edit By DemonicRealms * | |
* * | |
* RealityNetGaming * | |
************************************* | |
*/ | |
class AnimationOnLevel : public PlayerScript |