Jump to content

Fulzamoth

Player
  • Content count

    301
  • Joined

  • Last visited

Everything posted by Fulzamoth

  1. Battlegrounds The Warsong Gulch and Alterac Valley battlegrounds have come to Nighthaven with the release of Content Patch 1.5. Players looking for structured PvP battles now have a place to go. The Warsong Gulch entrances may be found in the northern Barrens near the Mor'Shan Rampart (Horde) and south of Silverwing Outpost in Ashenvale (Alliance). The Alterac Valley entrances may be found east of Sofera's Naze in Alterac (Horde), and in the Headlands of Alterac (Alliance). Quests Players level 44-52 will find a new quest hub for both factions at Thorium Point in the Searing Gorge. Horde players also have a new quest hub at Revantusk Village in the Hinterlands. NOTE: As per usual, please note that this release is a content update only. Core code bug fixes will come in the next development update. General Dishonorable kills — gained by killing a trivial Civilian NPC, now have a negative impact on a player's honor. Craftsmen will be happy to know that the Thorium Brotherhood has opened up many new opportunities to gain favor amongst their clan (even for level 60 players). Additional new raid items have been added to the treasure lists for Azuregos, Lord Kazzak, and bosses in Molten Core. New Items The following items have been added to the game: New Quests The following quests are now available for players to complete: Further Info Full version of Blizzard's original World of Warcraft Patch 1.5 notes . Original Battlegrounds trailer No client updates are needed for server side content patches. Bug Reporting As always, please report any bugs on Elysium's bug-tracker on GitHub. Go to the Elysium Project Bug-Tracker on GitHub. Do a search for your issue(search box at top has is:issue is:open, append your search text to that). If a similar issue exists, add any additional details you have. If no similar issue exists, please open a new one.
  2. The Call to War Today Nighthaven takes another step in content progression with the release of Patch 1.4. Please note that this release is a content update only. Core code bug fixes will come in the next development update. PvP Honor System The much anticipated Player versus Player Honor System is now active. Players will be able to gain rankings based on their PvP performance, with lucrative rewards for those who distinguish themselves in World PvP. Battlegrounds are planned for Patch 1.5. Gurubashi Arena Event There is now a regular event in Gurubashi Arena in Stranglethorn Vale. Every three hours starting at midnight, a pirate with too much treasure on his hands will drop a chest in the center of the arena. Whoever can open the chest first gets the contents! Of course, the arena is a PvP Free for All area, so there might be other players who are trying to open it first... Elemental Invasions! Invasions by elementals at different locations on Kalimdor have reportedly been occurring sporadically every few days. Concerned adventurers should investigate Silithus, Un'Goro Crater, Azshara, and Winterspring to counter these incursions. General Level 60 mounts purchased at vendors now have a whole new look. Faster undead mounts already have a different look and so have not changed. The new mounts can be seen standing near the mount vendors. If you have one of the old fast mounts, you can exchange it for one with a new look at the mount vendor. Riding skill and mount prices have been switched to allow players to buy mutltiple mounts. Total cost for first mount (standard and epic) is effectively the same. Savory Deviate Delight hast buff is now a 10% buff, down from 50%. Dungeons & Raids Scholomance Itemization 20 new Rare items have been added to Scholomance. Several Uncommon items have been upgraded to Rare quality. Rattlegore, Jandice Barov, and Lord Alexei Barov will now always drop at least one Rare item. Ras Frostwhisper will always drop at least two Rare items. Stratholme Itemization 26 new Rare items have been added to Stratholme. Several Uncommon items have been upgraded to Rare quality. Archivist Galford, Baroness Anastasi, Nerub'enkan, and Maleki the Pallid will now always drop at least one Rare item. Raid Itemization Onyxia, Azuregos, Lord Kazzak, and all Molten Core boss creatures have all received some new items on their loot tables. Onyxia will once again drop two upper tier class set helms. Most of the non-class set items that dropped from Molten Core and Onyxia have had their effective levels increased, resulting in higher DPS weapons, and/or better stats and effects. Players who defeat the Majordomo Executus encounter will now be rewarded with new epic items. This reward will only be granted the first time the encounter is defeated during the 6 day lifespan of a Molten Core instance. The loot tables for some of the Molten Core bosses have been improved so they drop an additional epic item per kill. World bosses such as Onyxia, Azuregos, and Lord Kazzak will no longer drop random blue items of a level lower than 50. Prior to this patch, Molten Core boss creatures could drop items from one of two different tiered sets for every character class. The loot tables have been changed so Molten Core bosses will now only drop items from the lower tier class sets. However, some of the items from those sets were not previously dropping in Molten Core. These missing class set items will now drop in Molten Core, allowing players to complete their lower tier class sets. The higher tier class set pieces that once dropped in Molten Core will be found once again in Blackwing Lair, the next raiding zone scheduled for release in a future patch. Items Following patch 1.4, the following items are available in-game: Quests Following patch 1.4, the following quests are available in-game: Further Info Full version of Blizzard's original World of Warcraft Patch 1.4 notes No client updates are needed for server side content patches. Bug Reporting As always, please report any bugs on Elysium's bug-tracker on GitHub. Go to the Elysium Project Bug-Tracker on GitHub. Do a search first (search box at top has is:issue is:open, append your search text to that). If a similar issue exists, add any additional details you have. If no similar issue exists, please open a new one.
  3. The gold seller accounts get collected up and looked at en masse rather than one by one as reported. They do get removed in time.
  4. Fulzamoth

    War Macro Issues 2H + 1H Shield

    SuperMacro has an equip function, but WeaponQuickSwap may be a better option for your specific case.
  5. Fulzamoth

    Addons not adding on?

    This is a fairly common problem usually caused by one of two issues: incorrect directory name addons installed in a subdirectory Incorrect Directory Name AddOn directories must be named correctly. The name of the directory must match the name of the .toc file inside the AddOn directory itself. The most common problem, at least with AddOns downloaded from Github, is having the -master git branch name appended to the AddOn's directory name. Removing the -master usually gets the AddOn loading properly. Interface --> AddOns --> SomeAddonName <----- this directory name must match... --> main.lua --> SomeAddonName.toc <----- ... this file name --> othercode.lua --> AddonFromGithub-master <----- the -master mismatches the toc name... --> main.lua --> AddonFromGithub.toc <----- toc has no -master in name --> othercode.lua The bold text in the above examples show what must match. Addons Installed in Subdirectory AddOns must be installed in directly subdirectories below Interface/Addons, and not in further subdirectories below that. Interface --> AddOns --> SomeAddonName <----- Correctly installed --> main.lua --> SomeAddonName.toc --> othercode.lua --> Subdirectory --> SomeOtherAddonName <----- this addon will not load --> main.lua --> SomeOtherAddonName.toc --> othercode.lua In this case the clue to look for is the location of the .toc file. The Warcraft client will only look in the subdirectories immediately below the AddOns directory for toc files to load.
  6. It'll be faster waiting the week or two for an old paper copy to ship. They can be had for less than $10.
  7. Macro Tooltips for Vanilla WoW Create custom tooltips in macros. MacroTT-V fills in for the #showtooltip command that comes in Patch 2.0.1, and thus doesn't exist in this timeline. Usage MacroTT provides four slash commands to use in macros. /mtts <spell name> - Displays the tooltip for the spell listed. The name must match exactly. Rank is optional; if not provided the highest rank will be shown. /mtte <equipment slot> - Displays the tooltip for item currently equipped in the equipment slot. Equipment slot can be one of: ammo, head, neck, shoulder, body, chest, waist, legs, feet, wrist, hands, finger, finger1, trinket, trinket2, cloak, mainhand, offhand, ranged, wand, tabard. /mttc <custom header text> - Displays a tooltip with the custom header text. This is usually followed by additional text (/mtta) /mtta <additional text> - Adds the additional text to any of the above tooltips. Multiple /mtta lines can be used. Note that macro names must be unique. The addon finds macros by name to read the macro body (GetActionInfo wasn't available until patch 2.0.1). Examples: /mttc A Generic Tooltip /mtta All your /mtta BASE /mtta are belong to us. /mtts Renew (Rank 5) /mtta /mtta Real tanks don't need healing Code is on GitHub: https://github.com/UndercityAddons-Vanilla/MacroTT-V The MacroTT-V addon can be downloaded from: https://github.com/UndercityAddons-Vanilla/MacroTT-V/releases Updates 2018-04-08 - Version 1.1.0 released. Support for Discord Action Bars added.
  8. MacroTT-V now supports Discord Action Bars A bit of Discord Action Bars code has been added into MacroTT, and the DAB_ActionButton_OnEnter() will be wrapped if DAB is active. DAB features supported: Modify Tooltip global option works Disable Tooltip on a specific action bar works DAB on event scripts should work (needs more testing to confirm)
  9. Our January 14, 2018 Development Update went relatively unnoticed at the time it was released but contained a major change that made Nighthaven unique in the vanilla server community. This update reduced the quest experience rewards on all quests over level 31 to the amounts given during the original Vanilla World of Warcraft days. The change was the result of extensive work by Navak and Egregious, two of the Elysium Project QA staff. They are researching the experience point system in Vanilla WoW, and discovered that experience awards listed on online databases for level 31—60 quests was higher than what archived information from 2004–2006 showed. Testing in game showed quests were granting these higher amounts of XP. They looked at hundreds of quests to ensure the problem was system and then opened bug report #276. A week later Elysium updated the XP awards, and Nighthaven became the first server running with true vanilla-era XP. This work is an example of the ongoing attention to detail that is required to make a Blizz-like server. The source of the error is likely The Burning Crusade Patch 2.3 (released 2007-11-13), which contained a couple of changes to the experience point system: The amount of experience needed to gain a level has been decreased between levels 11 and 60. In addition, the amount of experience granted by quests has been increased between levels 30 and 60. No single source of data online is completely accurate, so researchers like Navak and Egregious must comb through old forum posts and other places to find corroborating evidence. As an example of how muddy the waters are, for The Active Agent (quest 5213): Thottbot reports 6850 XP pre-2.3 and 14300 XP post-2.3. WoWWiki agrees with the post-2.3 award of 14300 XP. Allakhazam says 6500 pre-2.3 and 14500 post-2.3. ClassicDB says 1450, and appears to list 1/10 the post-2.3 experience for all quests. Servers were awarding 14500. Examples of other quests affected: Quest 629 — The Vile Reef (Level 37) Pre-2.3 — 2850 XP Post-2.3 — 3700 XP, a ~30% increase Quest 1136 — Frostmaw (Level 37) Pre-2.3 — 4250 XP Post-2.3 — 5550 XP, a ~30% increase Quest 2903 — The Battle Plans (Level 43) Pre-2.3 — 3600 XP Post-2.3 — 5050 XP, a ~40% increase Quest 1691 — More Wastewander Justice (Level 44) Pre-2.3: — 3750 XP Post-2.3 — 5300 XP, a ~40% increase Quest 6041 — When Smokey Sings, I Get Violent (Level 58) Pre-2.3 — 6200 XP Post-2.3 — 9000 XP, a ~45% increase We expect other servers in the Blizz-like Vanilla community will be adjusting their quest XP rewards on existing or future fresh realms. While the projects do compete, we also all seek to give players the most accurate Vanilla WoW experience possible. Well researched and documented bug reports, whether from staff or players, are one common source of information that the entire community benefits from. Thanks to Navak and Egregious, players can now look forward to a slower, but more true-to-vanilla, journey to level 60.
  10. Fulzamoth

    Unable to kill any monsters

    Close game client and erase contents of the WDB folder to clear the local game content cache.
  11. Fulzamoth

    BUG- Bitter rivals quest

    Open a GM ticket so they can review the quest for you.
  12. Fulzamoth

    BUG- Bitter rivals quest

    You abandon, and no question mark appears?
  13. Fulzamoth

    BUG- Bitter rivals quest

    Abandon "Distracting Jarven" and try again then.
  14. Did you disabled/enabled the hardware cursor setting in Video Options? It's often the cause.
  15. Fulzamoth

    Email removal

    We don't remove email addresses from accounts.
  16. Fulzamoth

    Authenticator

    We do not support 2FA at this time.
  17. Fulzamoth

    invalid/banned info/acount

    PM me the details and I'll look up your appeal.
  18. Fulzamoth

    invalid/banned info/acount

    We don't do email verification here. Are you sure you filed and appeal in our ban appeals?
  19. Fulzamoth

    Email removal

    Not clear what you're asking - you want us to remove another account that is using what you believe to be your email?
  20. Fulzamoth

    Faction Numbers

    53% Horde to 47% Alliance, online at level 60, this past Saturday.
  21. Fulzamoth

    Population

    /who in game shows you.
  22. Staff do not play on accounts and characters with any extra privileges at all.
  23. Fulzamoth

    Mac OS Client

    https://docs.google.com/uc?id=0BwqkyVclKhsveG5ObkRTRW1ram8&export=download
  24. Yes, some staff do play. I regularly get waved at before being killed. It's a slow grind to 60 when you're busy doing other server activities. I'm not sure what you mean by "highly unprofessional" since we're all unpaid amateurs here. Staff are drawn from the player base. Would you expect they delete their toon because they start helping the server? If someone appears to be using their position for personal advantage they're asked to leave the team.
  25. Fulzamoth

    Resend 2FA e-mail

    There is no 2FA on the Elysium Project.
×