feat(chat): Campaign CH slice CH2 — retail SpewBox interface text
Retail routes on-screen refusals ("You can't jump while in the air",
"You are too encumbered to carry that!") through a SEPARATE transient
screen surface (gmSpewBoxUI, ClientSystem::AddTextToScroll @0x00563C50)
that never touches the chat scroll — type 0x1A is exactly the bit every
ChatInterface window's default filter excludes
(ChatInterface::ChatInterface @0x004F4550). acdream had no such split:
every WeenieError rendered in chat at a single stand-in LogTextType
0x00 (CH1-era approximation, register AP-176), and locally-detected
jump refusals were silently discarded.
This slice ports the full mechanism per
docs/research/2026-08-09-chat-retail-interface-text.md:
CORE (AcDream.Core/Chat):
- WeenieErrorMessages.Resolve now returns (text, RetailLogTextType) from
a 338-row transcription of ClientCommunicationSystem::HandleFailureEvent
@0x00571990 (Appendix A's 339 cases minus one, 0x4F8, deliberately
excluded — its case body is a tangled decompiler artifact, not
resolvable with confidence). Spot-checked ~20 rows directly against
the raw decomp (case 0x2b/0x36/0x3a/0x4e/0x4ec/0x4f3/0x4f4 and the
jump family), beyond the ~10 the brief asked for, because the first
pass surfaced two transcription classes the research doc's markdown
silently ate: (1) 7 ids marked "shared string global" resolved by
reading the case bodies directly (0x24/0x48/0x49 reuse the jump-
refusal globals; 0x4DE/0x4DF/0x55A/0x55E are pure param passthrough);
(2) 19 "arg3 + literal" CONCATENATION ids whose leading space (and
therefore their %s marker) the markdown table's cell-trimming ate —
fixed by re-reading each case body, several requiring a SECOND
non-truncated data_XXXXXXXX dump elsewhere in the same oracle file to
recover text the ~33-char inline preview cut off. One retail typo is
preserved verbatim: 0x4F4's second placeholder is literal "$s", not
"%s" — only the first substitutes.
- ClientTextRefusals: the 11 process-lifetime string globals, all
byte-recovered from the PDB-paired C:\Users\erikn\Downloads\acclient.exe
(MATCH verified via check_exe_pdb.py) via raw UTF-16LE prefix search —
5 were truncated in the research doc's own transcription and all 5
turned out to end "...combat mode"/"...this position", not the
shorter "...combat" a truncated read would suggest.
- SpewBoxState: the gmSpewBoxUI pending/visible queue port (insert-at-0,
dedupe-against-index-0-only, MaxConcurrentItems overflow, per-entry
expiry, one-frame enqueue/drain decoupling). Placed in Core (not
Runtime as the brief's default) because AcDream.UI.Abstractions
references Core but not Runtime, and SpewBoxVM needs to wrap it
directly — the same constraint ChatVM already satisfies against
ChatLog.
- Folded the 4-entry WeenieErrorText.cs into the full table; deleted it.
RUNTIME (AcDream.Runtime):
- RuntimeCommunicationState.AddText(text, type, windowId): the
AddTextToScroll chokepoint. type == ClientLocal -> SpewBox only, never
chat; everything else -> the existing transcript, tagged with type.
- GameEventWiring gains an `onInterfaceText` delegate hole (Core.Net
cannot reference Runtime, so this follows the file's own established
pattern for every other Runtime-owned sink). Rewires 0x028A/0x028B/
UseDone through the full table + router; fixes 0x02EB
CommunicationTransientString's routing type from a CH1-era 0x00
guess to retail's hardcoded ClientLocal (Handle_Communication__
TransientString @0x0057D460).
- LiveSessionEventRouter's 0xF7E0 ServerMessage handler now routes
through AddText with the wire chatType verbatim instead of always
writing ChatLog directly.
- PlayerMovementController gains OnInterfaceText, applied by
RuntimeLocalPlayerMovementState to every controller it installs.
Reports ChargeJump/jump refusals exactly as ClientCombatSystem::
CommenceJump @0x0056AF90 / DoJump @0x0056B110 do — confirmed via
their compiled dispatch that ONLY 0x24/0x48/0x49 produce text;
0x47 (GeneralMovementFailure, fully-constrained/no-stamina) and any
other code are retail-SILENT (DoJump's jump table has exactly 4 real
targets), which contradicts this task's brief ("0x47 -> the
constrained/stamina row per §4.2") — the brief's reading of §4.2
described what jump_is_allowed COMPUTES, not what CommenceJump/DoJump
DISPLAY for it. Implemented the decomp-verified silent behavior.
APP (AcDream.App / AcDream.UI.Abstractions):
- The 5 composition sites that already used RetailLogTextType.ClientLocal
now call Communication.AddText instead of Chat.OnSystemMessage
directly, so they reach the SpewBox instead of the transcript.
- SpewBoxVM (UI.Abstractions) + SpewBoxController (App), modeled
directly on PortalWaitNoticeController. Position/font/colour/
MaxConcurrentItems are placeholders: SpewBoxLayoutDumpDiagnostic
exhaustively swept the installed client_portal.dat's entire LayoutDesc
id range (0x21000000-0x21000075, 101/118 ids populated, sanity-checked
against 3 known ids) and found ZERO elements of class 0x10000016 —
gmSpewBoxUI is mounted from C++ code, not any authored LayoutDesc, so
the dump cannot recover these values.
REGISTER: AP-176 retired (its WeenieError half is now the full table
port); its OnCombatLine half was never in this slice's scope and is
split out to AP-179 so that divergence keeps a row. AP-177 (invented
line lifetime) and AP-178 (invented position/font/colour/max-items)
filed for the presentation placeholders above. AP-175 (PopUpString ->
chat instead of modal) is untouched, not duplicated.
Suite: 11,890 passed / 4 skipped / 0 failed (was 11,835/4/0; +55 net
new tests, 0 regressions).
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
parent
0fa4554759
commit
77c8296e3f
28 changed files with 2144 additions and 224 deletions
109
src/AcDream.Core/Chat/ClientTextRefusals.cs
Normal file
109
src/AcDream.Core/Chat/ClientTextRefusals.cs
Normal file
|
|
@ -0,0 +1,109 @@
|
|||
namespace AcDream.Core.Chat;
|
||||
|
||||
/// <summary>
|
||||
/// The 11 process-lifetime string globals retail's
|
||||
/// <c>ClientCommunicationSystem</c> static ctors initialize at
|
||||
/// <c>0x00708F00</c>-<c>0x00709180</c> (Sept 2013 EoR build) and reuses for
|
||||
/// BOTH locally-detected refusals (jump/posture/emote gates evaluated on the
|
||||
/// client, no server round-trip — research doc
|
||||
/// <c>docs/research/2026-08-09-chat-retail-interface-text.md</c> §4) AND the
|
||||
/// matching server-sent <c>WeenieError</c> ids inside
|
||||
/// <c>HandleFailureEvent @0x00571990</c> (<see cref="WeenieErrorMessages"/>'
|
||||
/// <c>0x024</c>/<c>0x048</c>/<c>0x049</c> rows point straight back to these
|
||||
/// same constants — retail shares ONE string table for both paths).
|
||||
///
|
||||
/// <para>
|
||||
/// Every value here was read byte-for-byte off the PDB-paired binary
|
||||
/// <c>C:\Users\erikn\Downloads\acclient.exe</c> (v11.4186, CodeView GUID
|
||||
/// <c>9e847e2f-777c-4bd9-886c-22256bb87f32</c> — verified MATCH via
|
||||
/// <c>tools/pdb-extract/check_exe_pdb.py</c>) via a raw UTF-16LE prefix
|
||||
/// search + null-terminator read, per
|
||||
/// <c>claude-memory/reference_pe_byte_decode.md</c>. This was necessary
|
||||
/// because the decompiled pseudo-C at
|
||||
/// <c>docs/research/named-retail/acclient_2013_pseudo_c.txt</c> truncates
|
||||
/// every one of these literals at ~33 characters — including 6 the research
|
||||
/// doc's §4.1 table had already resolved correctly by inference (the
|
||||
/// natural completion happened to be unambiguous) and 5 it explicitly
|
||||
/// flagged as needing this exact re-read
|
||||
/// (<c>cant_sit_combat</c>, <c>cant_lie_down_combat</c>,
|
||||
/// <c>cant_crouch_combat</c>, <c>cant_emote_combat</c>,
|
||||
/// <c>cant_emote_position</c> — all 5 turned out to end in
|
||||
/// "... combat mode" / "... this position", NOT the shorter
|
||||
/// "... combat" the truncated preview alone would suggest).
|
||||
/// </para>
|
||||
/// </summary>
|
||||
public static class ClientTextRefusals
|
||||
{
|
||||
/// <summary>
|
||||
/// <c>WeenieError.CantJumpFromThisPosition (0x0048)</c> — jump BLOCKED
|
||||
/// by the current motion or position (a blocklist check, not an
|
||||
/// airborne check).
|
||||
/// </summary>
|
||||
public const string CantJumpPosition = "You can't jump from this position";
|
||||
|
||||
/// <summary>
|
||||
/// <c>WeenieError.NotGrounded / YouCantJumpWhileInTheAir (0x0024)</c> —
|
||||
/// not grounded / no contact.
|
||||
/// </summary>
|
||||
public const string CantJumpInAir = "You can't jump while in the air";
|
||||
|
||||
/// <summary>
|
||||
/// <c>WeenieError.CantJumpLoadedDown (0x0049)</c> — the weenie's
|
||||
/// <c>CanJump(jump_extent)</c> virtual refused (stamina/burden gate).
|
||||
/// </summary>
|
||||
public const string CantJumpLoad = "You're too loaded down to jump";
|
||||
|
||||
/// <summary>
|
||||
/// Dead in the Sept 2013 EoR build per the research doc (no call site
|
||||
/// found) — kept for parity with retail's own string table.
|
||||
/// </summary>
|
||||
public const string CantJumpStamina = "You're too tired to jump!";
|
||||
|
||||
/// <summary>
|
||||
/// Dead in the Sept 2013 EoR build per the research doc (no call site
|
||||
/// found) — kept for parity with retail's own string table.
|
||||
/// </summary>
|
||||
public const string CantJumpRecent = "You've jumped too recently!";
|
||||
|
||||
/// <summary>
|
||||
/// <c>WeenieError.YouAreTooTiredToDoThat (0x003E)</c> —
|
||||
/// <c>CommandInterpreter::MovePlayer</c>'s stamina-exhausted refusal
|
||||
/// (code 0x3E in the movement/posture/emote family).
|
||||
/// </summary>
|
||||
public const string TooTired = "You are too tired to move!";
|
||||
|
||||
/// <summary>
|
||||
/// <c>WeenieError.SitInCombatStance / CantSitInCombat (0x0040)</c>.
|
||||
/// Byte-recovered — the pseudo-C truncated this to
|
||||
/// "You can't sit down while in comb…".
|
||||
/// </summary>
|
||||
public const string CantSitCombat = "You can't sit down while in combat mode";
|
||||
|
||||
/// <summary>
|
||||
/// <c>WeenieError.SleepInCombatStance / CantLieDownInCombat (0x0041)</c>.
|
||||
/// Byte-recovered — the pseudo-C truncated this to
|
||||
/// "You can't lie down while in comb…".
|
||||
/// </summary>
|
||||
public const string CantLieDownCombat = "You can't lie down while in combat mode";
|
||||
|
||||
/// <summary>
|
||||
/// <c>WeenieError.CrouchInCombatStance / CantCrouchInCombat (0x003F)</c>.
|
||||
/// Byte-recovered — the pseudo-C truncated this to
|
||||
/// "You can't crouch while in combat…".
|
||||
/// </summary>
|
||||
public const string CantCrouchCombat = "You can't crouch while in combat mode";
|
||||
|
||||
/// <summary>
|
||||
/// <c>WeenieError.ChatEmoteOutsideNonCombat / CantChatEmoteInCombat
|
||||
/// (0x0042)</c>. Byte-recovered — the pseudo-C truncated this to
|
||||
/// "You can't use chat emotes in com…".
|
||||
/// </summary>
|
||||
public const string CantEmoteCombat = "You can't use chat emotes in combat mode";
|
||||
|
||||
/// <summary>
|
||||
/// <c>WeenieError.CantChatEmoteNotStanding (0x0044)</c>. Byte-recovered
|
||||
/// — the pseudo-C truncated this to
|
||||
/// "You can't use chat emotes from t…".
|
||||
/// </summary>
|
||||
public const string CantEmotePosition = "You can't use chat emotes from this position";
|
||||
}
|
||||
150
src/AcDream.Core/Chat/SpewBoxState.cs
Normal file
150
src/AcDream.Core/Chat/SpewBoxState.cs
Normal file
|
|
@ -0,0 +1,150 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading;
|
||||
|
||||
namespace AcDream.Core.Chat;
|
||||
|
||||
/// <summary>
|
||||
/// One visible SpewBox line: display text plus the caller-clock timestamp
|
||||
/// (seconds) at which it should be pruned.
|
||||
/// </summary>
|
||||
public readonly record struct SpewBoxEntry(string Text, double ExpiresAtSeconds);
|
||||
|
||||
/// <summary>
|
||||
/// Retail's transient on-screen "interface text" — a direct port of
|
||||
/// <c>gmSpewBoxUI</c>'s pending/visible split
|
||||
/// (<c>docs/research/2026-08-09-chat-retail-interface-text.md</c> §1.1/§3.1).
|
||||
/// Pure state, no presentation.
|
||||
///
|
||||
/// <para>
|
||||
/// <b>Placement note (deviation from the CH2 brief):</b> the brief names
|
||||
/// <c>AcDream.Runtime</c> as this type's home. It lives in
|
||||
/// <c>AcDream.Core.Chat</c> instead, directly beside <see cref="ChatLog"/>,
|
||||
/// because <c>AcDream.UI.Abstractions</c> (Code Structure Rule 3 — panels/
|
||||
/// ViewModels target UI.Abstractions only) references <c>AcDream.Core</c>
|
||||
/// but NOT <c>AcDream.Runtime</c>, and the UI.Abstractions
|
||||
/// <c>SpewBoxVM</c> needs to wrap this type directly — exactly the same
|
||||
/// constraint <see cref="ChatVM"/> already satisfies by wrapping
|
||||
/// <see cref="ChatLog"/> (also Core, not Runtime). <c>RuntimeCommunicationState</c>
|
||||
/// still owns the canonical instance and is still the sole writer via its
|
||||
/// <c>AddText</c> router, matching every other J4-era Runtime-owns/App-or-
|
||||
/// UI.Abstractions-borrows pattern in this codebase.
|
||||
/// </para>
|
||||
///
|
||||
/// <para>
|
||||
/// Retail decouples enqueue (<c>RecvNotice_DisplayFinalStringInfo
|
||||
/// @0x004D60A0</c>, type-filtered to <c>0x1A</c> only) from display
|
||||
/// (<c>Update @0x004D5DF0</c>, driven once per UI tick by global message
|
||||
/// <c>3</c>) by exactly one frame. <see cref="Tick"/> reproduces that: it
|
||||
/// drains whatever is pending into the visible list (applying retail's
|
||||
/// dedupe-against-index-0 and <c>MaxConcurrentItems</c> overflow rules) and
|
||||
/// prunes expired entries, all in the caller's own per-frame cadence.
|
||||
/// </para>
|
||||
/// </summary>
|
||||
public sealed class SpewBoxState
|
||||
{
|
||||
/// <summary>
|
||||
/// Retail's own code default (<c>gmSpewBoxUI::PostInit @0x004D5AB0</c>)
|
||||
/// when ListBox property <c>0x10000028</c> is absent or unreadable. The
|
||||
/// shipped LayoutDesc's authored value was not resolved in this slice —
|
||||
/// see the divergence register.
|
||||
/// </summary>
|
||||
public const int MaxConcurrentItems = 1;
|
||||
|
||||
/// <summary>
|
||||
/// Retail's own client never raises the expiry element message
|
||||
/// (<c>0x10000003</c>) anywhere in the Sept 2013 EoR build — the real
|
||||
/// per-line timeout is owned by keystone.dll's authored behaviour for
|
||||
/// layout <c>0x10000012</c> element <c>0x1000004A</c> and was not
|
||||
/// measured in this slice (§3.2.1 of the research doc). This is an
|
||||
/// INVENTED placeholder, not a retail-measured value — see the
|
||||
/// divergence register.
|
||||
/// </summary>
|
||||
public static readonly TimeSpan DefaultLifetime = TimeSpan.FromSeconds(5);
|
||||
|
||||
private readonly object _gate = new();
|
||||
private readonly Queue<string> _pending = new();
|
||||
private readonly List<SpewBoxEntry> _visible = new();
|
||||
private long _revision;
|
||||
|
||||
/// <summary>Monotonic content revision — advances on any Tick that changes the visible set, and on Reset.</summary>
|
||||
public long Revision => Interlocked.Read(ref _revision);
|
||||
|
||||
/// <summary>Number of currently visible lines (0..<see cref="MaxConcurrentItems"/>).</summary>
|
||||
public int Count
|
||||
{
|
||||
get { lock (_gate) return _visible.Count; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Enqueue text for display — retail's
|
||||
/// <c>RecvNotice_DisplayFinalStringInfo</c> type-<c>0x1A</c> branch.
|
||||
/// Does not itself become visible until the next <see cref="Tick"/>.
|
||||
/// </summary>
|
||||
public void Enqueue(string text)
|
||||
{
|
||||
lock (_gate)
|
||||
_pending.Enqueue(text);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Drain any pending text into the visible list and prune expired
|
||||
/// entries. Call once per UI frame/tick (retail's global message
|
||||
/// <c>3</c>, <c>gmSpewBoxUI::Update</c>).
|
||||
/// </summary>
|
||||
/// <param name="nowSeconds">
|
||||
/// Caller's own monotonic clock, in seconds. Only used to stamp new
|
||||
/// entries' expiry and to prune old ones — never compared across
|
||||
/// different clock sources.
|
||||
/// </param>
|
||||
public void Tick(double nowSeconds)
|
||||
{
|
||||
bool changed;
|
||||
lock (_gate)
|
||||
{
|
||||
changed = _pending.Count > 0;
|
||||
while (_pending.Count > 0)
|
||||
{
|
||||
string text = _pending.Dequeue();
|
||||
|
||||
// Dedupe against index 0 ONLY (retail: 0x004D5EF6-0x004D5F91)
|
||||
// — an identical repeat refreshes the newest line in place
|
||||
// instead of stacking a duplicate.
|
||||
if (_visible.Count > 0 && _visible[0].Text == text)
|
||||
_visible.RemoveAt(0);
|
||||
|
||||
// Newest at the top — retail's InsertItem(item, 0).
|
||||
_visible.Insert(0, new SpewBoxEntry(text, nowSeconds + DefaultLifetime.TotalSeconds));
|
||||
|
||||
// Overflow drops the OLDEST (highest index) entry — retail's
|
||||
// DeleteItem(count - 1) when count > m_maxConcurrentItems.
|
||||
while (_visible.Count > MaxConcurrentItems)
|
||||
_visible.RemoveAt(_visible.Count - 1);
|
||||
}
|
||||
|
||||
int removed = _visible.RemoveAll(e => e.ExpiresAtSeconds <= nowSeconds);
|
||||
changed |= removed > 0;
|
||||
}
|
||||
|
||||
if (changed)
|
||||
Interlocked.Increment(ref _revision);
|
||||
}
|
||||
|
||||
/// <summary>Snapshot of currently visible lines, newest first.</summary>
|
||||
public SpewBoxEntry[] Snapshot()
|
||||
{
|
||||
lock (_gate)
|
||||
return _visible.ToArray();
|
||||
}
|
||||
|
||||
/// <summary>Clear all pending and visible state — session/generation reset.</summary>
|
||||
public void Reset()
|
||||
{
|
||||
lock (_gate)
|
||||
{
|
||||
_pending.Clear();
|
||||
_visible.Clear();
|
||||
}
|
||||
Interlocked.Increment(ref _revision);
|
||||
}
|
||||
}
|
||||
|
|
@ -4,30 +4,73 @@ namespace AcDream.Core.Chat;
|
|||
|
||||
/// <summary>
|
||||
/// Translates ACE <c>WeenieError</c> + <c>WeenieErrorWithString</c> codes
|
||||
/// into the human-readable templates the retail client showed. The
|
||||
/// retail client baked these strings into <c>string_table.bin</c>; for
|
||||
/// our purposes we mirror ACE's enum-doc comments
|
||||
/// (<c>references/ACE/Source/ACE.Entity/Enum/WeenieError.cs</c> +
|
||||
/// <c>WeenieErrorWithString.cs</c>) since they preserve the original
|
||||
/// templates verbatim, including the literal <c>_</c> placeholder where
|
||||
/// the parameter goes.
|
||||
/// into the human-readable templates retail actually showed, AND the retail
|
||||
/// destination (<see cref="RetailLogTextType"/>) each one routed to.
|
||||
///
|
||||
/// <para>
|
||||
/// <b>Why we need this:</b> Many of the codes ACE sends — especially
|
||||
/// the high-frequency ones the user actually sees in normal play —
|
||||
/// are <i>informational</i>, not error-level (e.g. <c>0x051B</c> =
|
||||
/// "You have entered the X channel.", <c>0x051D</c> = "Turbine Chat
|
||||
/// is enabled."). Displaying them as <c>WeenieError 0xNNNN</c> is
|
||||
/// noisy and misleading. With the proper template they read as the
|
||||
/// retail player would have seen them.
|
||||
/// <b>Campaign CH slice CH2 (2026-08-09):</b> this is a full port of
|
||||
/// <c>ClientCommunicationSystem::HandleFailureEvent @0x00571990</c>
|
||||
/// (Sept 2013 EoR build), the 339-case switch that decides BOTH the display
|
||||
/// string and the <c>AddTextToScroll</c> type argument for every
|
||||
/// <c>WeenieError</c>/<c>WeenieErrorWithString</c> id retail's client knows
|
||||
/// about. Transcribed from
|
||||
/// <c>docs/research/2026-08-09-chat-retail-interface-text.md</c> Appendix A
|
||||
/// (itself read off the named retail decomp), with the following
|
||||
/// corrections made directly against
|
||||
/// <c>docs/research/named-retail/acclient_2013_pseudo_c.txt</c> rather than
|
||||
/// trusting the appendix's markdown transcription wholesale:
|
||||
/// </para>
|
||||
///
|
||||
/// <list type="bullet">
|
||||
/// <item>7 ids the appendix marked "no literal — shared string global"
|
||||
/// (<c>0x024</c>, <c>0x048</c>, <c>0x049</c>, <c>0x4DE</c>, <c>0x4DF</c>,
|
||||
/// <c>0x55A</c>, <c>0x55E</c>) were resolved by reading the case bodies
|
||||
/// directly: <c>0x024</c>/<c>0x048</c>/<c>0x049</c> reuse the same
|
||||
/// process-lifetime globals as the local jump-refusal family (see
|
||||
/// <see cref="ClientTextRefusals"/>); <c>0x4DE</c>/<c>0x4DF</c> are
|
||||
/// <c>arg3 + "\n"</c>; <c>0x55A</c> is <c>sprintf("%s\n", arg3)</c>;
|
||||
/// <c>0x55E</c> passes <c>arg3</c> straight through with no format string
|
||||
/// at all.</item>
|
||||
/// <item>Appendix A's markdown table trims leading whitespace from every
|
||||
/// cell, which silently ate the leading <c>" "</c> retail's
|
||||
/// <c>arg3 + literal</c> CONCATENATION sites (as opposed to a real
|
||||
/// <c>sprintf("%s...")</c> site) depend on. 19 ids
|
||||
/// (<c>0x02B</c>, <c>0x3EF</c>, <c>0x46A</c>, <c>0x4CE</c>, <c>0x4CF</c>,
|
||||
/// <c>0x4F7</c>, <c>0x4F9</c>, <c>0x4FA</c>, <c>0x4FF</c>, <c>0x509</c>,
|
||||
/// <c>0x50B</c>, <c>0x50C</c>, <c>0x50D</c>, <c>0x517</c>, <c>0x518</c>,
|
||||
/// <c>0x51E</c>, <c>0x521</c>, <c>0x522</c>) were fixed by re-reading their
|
||||
/// case bodies and prepending the <c>%s</c> the concatenation implies.
|
||||
/// Several of these (and the <c>%s</c>-prefixed but truncated
|
||||
/// <c>0x4F4</c>-<c>0x4F6</c>, <c>0x530</c>, <c>0x534</c>, <c>0x53E</c>,
|
||||
/// <c>0x541</c>, <c>0x543</c>, <c>0x54B</c>, <c>0x562</c>, <c>0x56D</c>,
|
||||
/// <c>0x57A</c>, <c>0x57B</c>, <c>0x580</c>) were also truncated by the
|
||||
/// pseudo-C's ~33-char inline preview; the full text was recovered from a
|
||||
/// SECOND, non-truncated <c>data_XXXXXXXX</c> dump elsewhere in the same
|
||||
/// oracle file — reading the oracle again, not guessing.</item>
|
||||
/// <item><c>0x4F4</c>'s retail literal is
|
||||
/// <c>"%s fails to affect you because $s cannot affect anyone!"</c> —
|
||||
/// note <c>$s</c>, not <c>%s</c>, for the second placeholder. That is a
|
||||
/// genuine retail typo/bug (only the first <c>%s</c> substitutes; the
|
||||
/// literal <c>$s</c> prints as-is) and is preserved verbatim rather than
|
||||
/// corrected, per the "the client is probably right" rule.</item>
|
||||
/// <item><c>0x4F7</c>'s retail string is itself incomplete — it
|
||||
/// concatenates <c>arg3</c> with a literal that dangles on
|
||||
/// <c>"...as "</c> with no closing word. Confirmed via exact byte-count
|
||||
/// against the declared array size (not a display artifact); preserved
|
||||
/// verbatim.</item>
|
||||
/// <item><c>0x4F8</c> could not be resolved with confidence — its case
|
||||
/// body is a tangled multi-<c>operator+</c> concatenation chain full of
|
||||
/// decompiler self-referential artifacts (see
|
||||
/// <c>claude-memory/feedback_bn_decomp_field_names.md</c>). Deliberately
|
||||
/// EXCLUDED from the table rather than guessed; falls back to the generic
|
||||
/// <c>WeenieError 0xNNNN[: param]</c> form like any other unmapped id.
|
||||
/// </item>
|
||||
/// </list>
|
||||
///
|
||||
/// <para>
|
||||
/// We don't translate every code — only the ~30 most likely to appear
|
||||
/// in a normal session. Unknown codes fall back to the
|
||||
/// <c>WeenieError 0xNNNN[: param]</c> form so nothing is silently
|
||||
/// lost. New codes can be added in 30 seconds when the user reports
|
||||
/// one.
|
||||
/// This retires register row AP-176 (the CH1-era approximation that fixed
|
||||
/// every WeenieError display at <c>LogTextType.Default</c> pending this
|
||||
/// full port).
|
||||
/// </para>
|
||||
/// </summary>
|
||||
public static class WeenieErrorMessages
|
||||
|
|
@ -46,159 +89,394 @@ public static class WeenieErrorMessages
|
|||
public static bool IsSilentClientControlStatus(uint errorCode) =>
|
||||
errorCode is 0x003Bu or 0x003Cu;
|
||||
|
||||
/// <summary>
|
||||
/// One retail routing-table row: the display template (retail's own
|
||||
/// <c>%s</c> placeholder, substituted verbatim — never retail's literal
|
||||
/// <c>$s</c>, see <c>0x4F4</c> above) plus the exact
|
||||
/// <see cref="RetailLogTextType"/> <c>HandleFailureEvent</c> passed to
|
||||
/// <c>AddTextToScroll</c> for this id.
|
||||
/// </summary>
|
||||
public readonly record struct Entry(string Template, RetailLogTextType Type);
|
||||
|
||||
/// <summary>
|
||||
/// Format a WeenieError / WeenieErrorWithString into a human-readable
|
||||
/// system-message string.
|
||||
/// system-message string. Back-compat wrapper over <see cref="Resolve"/>
|
||||
/// for callers that only need text, not the routing type.
|
||||
/// </summary>
|
||||
/// <param name="errorCode">The wire error code.</param>
|
||||
/// <param name="param">The interpolated substring (null for plain
|
||||
/// <c>WeenieError</c>, set for <c>WeenieErrorWithString</c>).</param>
|
||||
public static string Format(uint errorCode, string? param)
|
||||
public static string Format(uint errorCode, string? param) => Resolve(errorCode, param).Text;
|
||||
|
||||
/// <summary>
|
||||
/// Resolve a WeenieError / WeenieErrorWithString code into its retail
|
||||
/// display text AND the retail <see cref="RetailLogTextType"/> it routes
|
||||
/// to. Unmapped codes fall back to the raw
|
||||
/// <c>WeenieError 0xNNNN[: param]</c> form at
|
||||
/// <see cref="RetailLogTextType.Default"/> so nothing is silently lost.
|
||||
/// </summary>
|
||||
public static (string Text, RetailLogTextType Type) Resolve(uint errorCode, string? param)
|
||||
{
|
||||
// WeenieErrorWithString templates use the literal underscore
|
||||
// character `_` as the placeholder for the param. We
|
||||
// substitute it for `param` if present, otherwise drop it.
|
||||
if (param is not null && WithStringTemplates.TryGetValue(errorCode, out var withTemplate))
|
||||
if (Table.TryGetValue(errorCode, out Entry entry))
|
||||
{
|
||||
return withTemplate.Replace("_", param);
|
||||
string text = param is not null && entry.Template.Contains("%s")
|
||||
? entry.Template.Replace("%s", param)
|
||||
: entry.Template;
|
||||
return (text, entry.Type);
|
||||
}
|
||||
|
||||
if (NoParamTemplates.TryGetValue(errorCode, out var template))
|
||||
{
|
||||
// Some "no-param" codes do still arrive with a meaningless
|
||||
// param string; ignore it.
|
||||
return template;
|
||||
}
|
||||
|
||||
// Unknown code — fall back to the raw form.
|
||||
return string.IsNullOrEmpty(param)
|
||||
string fallback = string.IsNullOrEmpty(param)
|
||||
? $"WeenieError 0x{errorCode:X4}"
|
||||
: $"WeenieError 0x{errorCode:X4}: {param}";
|
||||
return (fallback, RetailLogTextType.Default);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Codes from <c>WeenieError</c> (no param). Templates copied
|
||||
/// verbatim from ACE enum-doc comments.
|
||||
/// The full retail routing table, transcribed from
|
||||
/// <c>ClientCommunicationSystem::HandleFailureEvent @0x00571990</c> (338
|
||||
/// of its 339 cases — see the class doc comment for the one deliberate
|
||||
/// exclusion and every correction made against the raw decomp).
|
||||
/// </summary>
|
||||
private static readonly Dictionary<uint, string> NoParamTemplates = new()
|
||||
private static readonly Dictionary<uint, Entry> Table = new()
|
||||
{
|
||||
// Command parser
|
||||
[0x0026] = "That is not a valid command.", // ThatIsNotAValidCommand
|
||||
[0x055F] = "Only Player Killer characters may use this command!",
|
||||
[0x0560] = "Only Player Killer Lite characters may use this command!",
|
||||
|
||||
// Tell-related
|
||||
[0x052B] = "That person is not available now.", // CharacterNotAvailable
|
||||
|
||||
// Chat-channel related
|
||||
[0x051D] = "Turbine Chat is enabled.", // TurbineChatIsEnabled
|
||||
|
||||
// Trade
|
||||
[0x0529] = "Trade Complete!", // TradeComplete
|
||||
|
||||
// Allegiance / Fellowship membership errors (high-frequency
|
||||
// when player isn't in either group and tries the channel)
|
||||
[0x0414] = "You are not in an allegiance!", // YouAreNotInAllegiance
|
||||
[0x050F] = "You do not belong to a Fellowship.", // YouDoNotBelongToAFellowship
|
||||
|
||||
// Allegiance
|
||||
[0x0496] = "Your Allegiance has been dissolved!", // YourAllegianceHasBeenDissolved
|
||||
[0x0497] = "Your patron's Allegiance to you has been broken!",
|
||||
// YourPatronsAllegianceHasBeenBroken
|
||||
[0x0535] = "You do not have the authority within your allegiance to do that.",
|
||||
|
||||
// Movement / teleport / housing
|
||||
[0x0036] = "Action cancelled!", // ActionCancelled
|
||||
[0x003D] = "You charged too far!", // YouChargedTooFar
|
||||
[0x004A] = "Ack! You killed yourself!", // YouKilledYourself
|
||||
[0x0498] = "You have moved too far!", // YouHaveMovedTooFar
|
||||
[0x0499] = "That is not a valid destination!", // TeleToInvalidPosition
|
||||
[0x0532] = "You must wait 30 days after purchasing a house before you may purchase another with any character on the same account.",
|
||||
[0x0550] = "Out of Range!", // MissileOutOfRange
|
||||
|
||||
// Fellowship
|
||||
[0x0528] = "The fellowship is locked; you cannot open locked fellowships.",
|
||||
|
||||
// Player flavour
|
||||
[0x0526] = "You chicken out.", // YouChickenOut
|
||||
|
||||
// PK status (retail: ClientCommunicationSystem::HandleFailureEvent
|
||||
// @0x00571990, decompiled at
|
||||
// docs/research/named-retail/acclient_2013_pseudo_c.txt:382900+.
|
||||
// Strings recovered from the PDB-paired
|
||||
// C:\Users\erikn\Downloads\acclient.exe (imagebase 0x400000) via
|
||||
// VA -> RVA -> file-offset mapping per
|
||||
// claude-memory/reference_pe_byte_decode.md, because the pseudo-C
|
||||
// dump for data_7d32c0 truncates at its declared array bound
|
||||
// (0x5f wchar16) mid-sentence. Retail's literal ends with a
|
||||
// trailing "\n" that we drop here — acdream's ChatEntry already
|
||||
// renders one line per system message, unlike retail's single
|
||||
// scrolling text buffer.
|
||||
[0x0504] = "You are enveloped in a feeling of warmth as you are brought back into the protection of the Light. You are once again a Non-Player Killer.",
|
||||
// YouAreNonPKAgain, case 0x504 @0x005745cd, data_7d32c0
|
||||
[0x0505] = "You're too close to your sanctuary!", // YoureTooCloseToYourSanctuary, case 0x505 @0x00574c65, data_7d2640
|
||||
[0x04EC] = "You cannot modify your player killer status while you are recovering from a PK death.",
|
||||
// CannotChangePKStatusWhileRecovering, case 0x4ec @0x0057446f, data_7d3820
|
||||
[0x04ED] = "Advocates may not change their player killer status!",
|
||||
// AdvocatesCannotChangePKStatus, case 0x4ed @0x005744a1, data_7d37b0
|
||||
};
|
||||
|
||||
/// <summary>
|
||||
/// Codes from <c>WeenieErrorWithString</c>. Templates copied
|
||||
/// verbatim from ACE enum-doc comments. The <c>_</c> placeholder
|
||||
/// is substituted with the param at format time.
|
||||
/// </summary>
|
||||
private static readonly Dictionary<uint, string> WithStringTemplates = new()
|
||||
{
|
||||
// Channel join / leave (high frequency at login)
|
||||
[0x051B] = "You have entered the _ channel.", // YouHaveEnteredThe_Channel
|
||||
[0x051C] = "You have left the _ channel.", // YouHaveLeftThe_Channel
|
||||
|
||||
// Chat-server failures
|
||||
[0x051E] = "_ will not receive your message, please use urgent assistance to speak with an in-game representative.",
|
||||
[0x051F] = "Message Blocked: _", // MessageBlocked_
|
||||
|
||||
// Hear / loud-list
|
||||
[0x0521] = "_ has been added to the list of people you can hear.",
|
||||
[0x0522] = "_ has been removed from the list of people you can hear.",
|
||||
[0x0525] = "You fail to remove _ from your loud list.",
|
||||
|
||||
// Snooping (admin)
|
||||
[0x052C] = "You are now snooping on _.",
|
||||
[0x052D] = "You are no longer snooping on _.",
|
||||
[0x052E] = "You fail to snoop on _.",
|
||||
[0x052F] = "_ attempted to snoop on you.",
|
||||
[0x0551] = "You are not listening to the _ channel.",
|
||||
|
||||
// Allegiance
|
||||
[0x046A] = "_ doesn't know what to do with that.",
|
||||
[0x0413] = "_ is already one of your followers.",
|
||||
[0x0416] = "_ cannot have any more Vassals.",
|
||||
[0x03EF] = "_ is not accepting gifts right now.",
|
||||
|
||||
// Combat / spell failures
|
||||
[0x004E] = "You fail to affect _ because you cannot affect anyone!",
|
||||
[0x004F] = "You fail to affect _ because they cannot be harmed!",
|
||||
[0x0050] = "You fail to affect _ because beneficial spells do not affect them!",
|
||||
[0x0051] = "You fail to affect _ because you are not a player killer!",
|
||||
[0x0052] = "You fail to affect _ because they are not a player killer!",
|
||||
[0x0053] = "You fail to affect _ because you are not the same sort of player killer as them!",
|
||||
[0x0054] = "You fail to affect _ because you are acting across a house boundary!",
|
||||
|
||||
// Healing
|
||||
[0x04FF] = "_ is already at full health!", // _IsAtFullHealth
|
||||
|
||||
// Inventory / etiquette
|
||||
[0x001E] = "_ is too busy to accept gifts right now.",
|
||||
[0x002B] = "_ cannot carry anymore.",
|
||||
|
||||
// Fellowship
|
||||
[0x0517] = "_ is not close enough to your level.",
|
||||
[0x0518] = "This fellowship is locked; _ cannot be recruited into the fellowship.",
|
||||
|
||||
// Hooks
|
||||
[0x0510] = "Maximum number of _ hooked.",
|
||||
[0x0514] = "Maximum number of _ hooked until one is removed.",
|
||||
[0x0515] = "You no longer have the maximum number of _ hooked. You may hook additional.",
|
||||
[0x017u] = new("You failed to go to non-combat mode.", RetailLogTextType.ClientLocal),
|
||||
[0x01Du] = new("You're too busy!", RetailLogTextType.ClientLocal),
|
||||
[0x01Eu] = new("You must control both objects!", RetailLogTextType.ClientLocal),
|
||||
[0x020u] = new("You must control both objects!", RetailLogTextType.ClientLocal),
|
||||
[0x023u] = new("Unable to move to object!", RetailLogTextType.ClientLocal),
|
||||
[0x024u] = new(ClientTextRefusals.CantJumpInAir, RetailLogTextType.ClientLocal),
|
||||
[0x026u] = new("That is not a valid command.", RetailLogTextType.ClientLocal),
|
||||
[0x028u] = new("The item is under someone else's control!", RetailLogTextType.ClientLocal),
|
||||
[0x029u] = new("You cannot pick that up!", RetailLogTextType.ClientLocal),
|
||||
[0x02Au] = new("You are too encumbered to carry that!", RetailLogTextType.ClientLocal),
|
||||
[0x02Bu] = new("%s cannot carry anymore.", RetailLogTextType.Default),
|
||||
[0x036u] = new("Action cancelled!", RetailLogTextType.ClientLocal),
|
||||
[0x037u] = new("Unable to move to object!", RetailLogTextType.ClientLocal),
|
||||
[0x038u] = new("Unable to move to object!", RetailLogTextType.ClientLocal),
|
||||
[0x039u] = new("Unable to move to object!", RetailLogTextType.ClientLocal),
|
||||
[0x03Au] = new("You can't do that... you're dead!", RetailLogTextType.ClientLocal),
|
||||
[0x03Du] = new("You charged too far!", RetailLogTextType.ClientLocal),
|
||||
[0x03Eu] = new("You are too tired to do that!", RetailLogTextType.ClientLocal),
|
||||
[0x048u] = new(ClientTextRefusals.CantJumpPosition, RetailLogTextType.ClientLocal),
|
||||
[0x049u] = new(ClientTextRefusals.CantJumpLoad, RetailLogTextType.ClientLocal),
|
||||
[0x04Au] = new("Ack! You killed yourself!", RetailLogTextType.Default),
|
||||
[0x04Du] = new("Invalid PK status!", RetailLogTextType.ClientLocal),
|
||||
[0x04Eu] = new("You fail to affect %s because you cannot affect anyone!", RetailLogTextType.Magic),
|
||||
[0x050u] = new("You fail to affect %s because beneficial spells do not affect %s!", RetailLogTextType.Magic),
|
||||
[0x051u] = new("You fail to affect %s because you cannot affect anyone!", RetailLogTextType.Magic),
|
||||
[0x052u] = new("You fail to affect %s because %s is not a player killer!", RetailLogTextType.Magic),
|
||||
[0x053u] = new("You fail to affect %s because you cannot affect anyone!", RetailLogTextType.Magic),
|
||||
[0x054u] = new("You fail to affect %s because you cannot affect anyone!", RetailLogTextType.Magic),
|
||||
[0x3EFu] = new("%s is not accepting gifts right now.", RetailLogTextType.Default),
|
||||
[0x3F1u] = new("You failed to go to non-combat mode.", RetailLogTextType.ClientLocal),
|
||||
[0x3F7u] = new("You are too fatigued to attack!", RetailLogTextType.ClientLocal),
|
||||
[0x3F8u] = new("You are out of ammunition!", RetailLogTextType.ClientLocal),
|
||||
[0x3F9u] = new("Your missile attack misfired!", RetailLogTextType.ClientLocal),
|
||||
[0x3FAu] = new("You've attempted an impossible spell path!", RetailLogTextType.ClientLocal),
|
||||
[0x3FEu] = new("You don't know that spell!", RetailLogTextType.ClientLocal),
|
||||
[0x3FFu] = new("Incorrect target type", RetailLogTextType.ClientLocal),
|
||||
[0x400u] = new("You don't have all the components for this spell.", RetailLogTextType.ClientLocal),
|
||||
[0x401u] = new("You don't have enough Mana to cast this spell.", RetailLogTextType.ClientLocal),
|
||||
[0x402u] = new("Your spell fizzled.", RetailLogTextType.Magic),
|
||||
[0x403u] = new("Your spell's target is missing!", RetailLogTextType.ClientLocal),
|
||||
[0x404u] = new("Your projectile spell mislaunched!", RetailLogTextType.ClientLocal),
|
||||
[0x407u] = new("Your spell cannot be cast outside", RetailLogTextType.ClientLocal),
|
||||
[0x40Au] = new("You are unprepared to cast a spell", RetailLogTextType.ClientLocal),
|
||||
[0x40Bu] = new("You've already sworn your Allegiance", RetailLogTextType.ClientLocal),
|
||||
[0x40Cu] = new("You don't have enough experience available to swear Allegiance", RetailLogTextType.ClientLocal),
|
||||
[0x413u] = new("%s is already one of your followers", RetailLogTextType.ClientLocal),
|
||||
[0x414u] = new("You are not in an allegiance!", RetailLogTextType.ClientLocal),
|
||||
[0x416u] = new("%s cannot have any more Vassals", RetailLogTextType.ClientLocal),
|
||||
[0x41Du] = new("You must be the leader of a Fellowship", RetailLogTextType.ClientLocal),
|
||||
[0x41Eu] = new("Your Fellowship is full", RetailLogTextType.ClientLocal),
|
||||
[0x41Fu] = new("That Fellowship name is not permitted", RetailLogTextType.ClientLocal),
|
||||
[0x422u] = new("That channel doesn't exist.", RetailLogTextType.ClientLocal),
|
||||
[0x423u] = new("You can't use that channel.", RetailLogTextType.ClientLocal),
|
||||
[0x424u] = new("You're already on that channel.", RetailLogTextType.ClientLocal),
|
||||
[0x425u] = new("You're not currently on that channel.", RetailLogTextType.ClientLocal),
|
||||
[0x427u] = new("You cannot merge different stacks!", RetailLogTextType.ClientLocal),
|
||||
[0x428u] = new("You cannot merge enchanted items!", RetailLogTextType.ClientLocal),
|
||||
[0x429u] = new("You must control at least one stack!", RetailLogTextType.ClientLocal),
|
||||
[0x432u] = new("Your craft attempt fails.", RetailLogTextType.ClientLocal),
|
||||
[0x433u] = new("Your craft attempt fails.", RetailLogTextType.ClientLocal),
|
||||
[0x434u] = new("Given that number of items, you cannot craft anything.", RetailLogTextType.ClientLocal),
|
||||
[0x435u] = new("Your craft attempt fails.", RetailLogTextType.ClientLocal),
|
||||
[0x437u] = new("Either you or one of the items involved does not pass the requirements for this craft interaction.", RetailLogTextType.ClientLocal),
|
||||
[0x438u] = new("You do not have all the neccessary items.", RetailLogTextType.ClientLocal),
|
||||
[0x439u] = new("Not all the items are avaliable.", RetailLogTextType.ClientLocal),
|
||||
[0x43Au] = new("You must be at rest in peace mode to do trade skills.", RetailLogTextType.ClientLocal),
|
||||
[0x43Bu] = new("You are not trained in that trade skill.", RetailLogTextType.ClientLocal),
|
||||
[0x43Cu] = new("Your hands must be free.", RetailLogTextType.ClientLocal),
|
||||
[0x43Du] = new("You cannot link to that portal!", RetailLogTextType.Magic),
|
||||
[0x43Eu] = new("You have solved this quest too recently!", RetailLogTextType.Default),
|
||||
[0x43Fu] = new("You have solved this quest too many times!", RetailLogTextType.Default),
|
||||
[0x445u] = new("This item requires you to complete a specific quest before you can pick it up!", RetailLogTextType.Default),
|
||||
[0x45Cu] = new("Player killers may not interact with that portal!", RetailLogTextType.Magic),
|
||||
[0x45Du] = new("Non-player killers may not interact with that portal!", RetailLogTextType.Magic),
|
||||
[0x45Eu] = new("You do not own a house!", RetailLogTextType.ClientLocal),
|
||||
[0x45Fu] = new("You do not own a house!", RetailLogTextType.ClientLocal),
|
||||
[0x466u] = new("You must purchase Asheron's Call -- Dark Majesty to use this function.", RetailLogTextType.Magic),
|
||||
[0x469u] = new("You have used all the hooks you are allowed to use for this house.", RetailLogTextType.Default),
|
||||
[0x46Au] = new("%s doesn't know what to do with that.", RetailLogTextType.Default),
|
||||
[0x474u] = new("You must complete a quest to interact with that portal.", RetailLogTextType.Magic),
|
||||
[0x47Fu] = new("You must own a house to use this command.", RetailLogTextType.ClientLocal),
|
||||
[0x480u] = new("Your monarch does not own a mansion or a villa!", RetailLogTextType.ClientLocal),
|
||||
[0x481u] = new("Your monarch does not own a mansion or a villa!", RetailLogTextType.ClientLocal),
|
||||
[0x482u] = new("Your monarch has closed the mansion to the Allegiance.", RetailLogTextType.ClientLocal),
|
||||
[0x488u] = new("You must be above level %s to purchase this dwelling.", RetailLogTextType.Default),
|
||||
[0x489u] = new("You must be at or below level %s to purchase this dwelling.", RetailLogTextType.Default),
|
||||
[0x48Bu] = new("You must be above allegiance rank %s to purchase this dwelling.", RetailLogTextType.Default),
|
||||
[0x48Cu] = new("You must be at or below allegiance rank %s to purchase this dwelling.", RetailLogTextType.Default),
|
||||
[0x48Eu] = new("Your offer of Allegiance has been ignored.", RetailLogTextType.ClientLocal),
|
||||
[0x48Fu] = new("You are already involved in something!", RetailLogTextType.ClientLocal),
|
||||
[0x490u] = new("You must be a monarch to use this command.", RetailLogTextType.ClientLocal),
|
||||
[0x491u] = new("You must specify a character to boot.", RetailLogTextType.ClientLocal),
|
||||
[0x492u] = new("You can't boot yourself!", RetailLogTextType.ClientLocal),
|
||||
[0x493u] = new("That character does not exist.", RetailLogTextType.ClientLocal),
|
||||
[0x494u] = new("That person is not a member of your Allegiance!", RetailLogTextType.ClientLocal),
|
||||
[0x495u] = new("No patron from which to break!", RetailLogTextType.ClientLocal),
|
||||
[0x496u] = new("Your Allegiance has been dissolved!", RetailLogTextType.Default),
|
||||
[0x497u] = new("Your patron's Allegiance to you has been broken!", RetailLogTextType.Default),
|
||||
[0x498u] = new("You have moved too far!", RetailLogTextType.ClientLocal),
|
||||
[0x499u] = new("That is not a valid destination!", RetailLogTextType.ClientLocal),
|
||||
[0x49Au] = new("You must purchase Asheron's Call -- Dark Majesty to use this function.", RetailLogTextType.ClientLocal),
|
||||
[0x49Bu] = new("You fail to link with the lifestone!", RetailLogTextType.Magic),
|
||||
[0x49Cu] = new("You wandered too far to link with the lifestone!", RetailLogTextType.Magic),
|
||||
[0x49Du] = new("You successfully link with the lifestone!", RetailLogTextType.Magic),
|
||||
[0x49Eu] = new("You must have linked with a lifestone in order to recall to it!", RetailLogTextType.Magic),
|
||||
[0x49Fu] = new("You fail to recall to the lifestone!", RetailLogTextType.Magic),
|
||||
[0x4A0u] = new("You fail to link with the portal!", RetailLogTextType.Magic),
|
||||
[0x4A1u] = new("You successfully link with the portal!", RetailLogTextType.Magic),
|
||||
[0x4A2u] = new("You fail to recall to the portal!", RetailLogTextType.Magic),
|
||||
[0x4A3u] = new("You must have linked with a portal in order to summon it!", RetailLogTextType.Magic),
|
||||
[0x4A4u] = new("You fail to summon the portal!", RetailLogTextType.Magic),
|
||||
[0x4A5u] = new("You must have linked with a portal in order to summon it!", RetailLogTextType.Magic),
|
||||
[0x4A6u] = new("You fail to teleport!", RetailLogTextType.Magic),
|
||||
[0x4A7u] = new("You have been teleported too recently!", RetailLogTextType.Magic),
|
||||
[0x4A8u] = new("You must be an Advocate to interact with that portal.", RetailLogTextType.Magic),
|
||||
[0x4AAu] = new("Players may not interact with that portal.", RetailLogTextType.Magic),
|
||||
[0x4ABu] = new("You are not powerful enough to interact with that portal!", RetailLogTextType.Magic),
|
||||
[0x4ACu] = new("You are too powerful to interact with that portal!", RetailLogTextType.Magic),
|
||||
[0x4ADu] = new("You cannot recall to that portal!", RetailLogTextType.Magic),
|
||||
[0x4AEu] = new("You cannot summon that portal!", RetailLogTextType.Magic),
|
||||
[0x4AFu] = new("The lock is already unlocked.", RetailLogTextType.ClientLocal),
|
||||
[0x4B0u] = new("You can't lock or unlock that!", RetailLogTextType.ClientLocal),
|
||||
[0x4B1u] = new("You can't lock or unlock what is open!", RetailLogTextType.ClientLocal),
|
||||
[0x4B2u] = new("The key doesn't fit this lock.", RetailLogTextType.Default),
|
||||
[0x4B3u] = new("The lock has been used too recently.", RetailLogTextType.ClientLocal),
|
||||
[0x4B4u] = new("You aren't trained in lockpicking!", RetailLogTextType.ClientLocal),
|
||||
[0x4B5u] = new("You must specify a character to boot.", RetailLogTextType.ClientLocal),
|
||||
[0x4B6u] = new("Please use the allegiance panel to view your own information.", RetailLogTextType.ClientLocal),
|
||||
[0x4B7u] = new("You have used that command too recently.", RetailLogTextType.ClientLocal),
|
||||
[0x4B8u] = new("You do not own that salvage tool!", RetailLogTextType.Default),
|
||||
[0x4B9u] = new("You do not own that salvage tool!", RetailLogTextType.Default),
|
||||
[0x4BAu] = new("You do not own that salvage tool!", RetailLogTextType.Default),
|
||||
[0x4BDu] = new("You do not own that salvage tool!", RetailLogTextType.Default),
|
||||
[0x4BEu] = new("You do not own that item!", RetailLogTextType.Default),
|
||||
[0x4BFu] = new("The %s was not suitable for salvaging.", RetailLogTextType.ClientLocal),
|
||||
[0x4C0u] = new("The %s contains the wrong material.", RetailLogTextType.ClientLocal),
|
||||
[0x4C1u] = new("The material cannot be created.", RetailLogTextType.Default),
|
||||
[0x4C2u] = new("The list of items you are attempting to salvage is invalid.", RetailLogTextType.Default),
|
||||
[0x4C3u] = new("You cannot salvage items that you are trading!", RetailLogTextType.Default),
|
||||
[0x4C4u] = new("You must be a guest in this house to interact with that portal.", RetailLogTextType.Magic),
|
||||
[0x4C5u] = new("Your Allegiance Rank is too low to use that item's magic.", RetailLogTextType.ClientLocal),
|
||||
[0x4C6u] = new("You must be %s to use that item's magic.", RetailLogTextType.ClientLocal),
|
||||
[0x4C7u] = new("Your Arcane Lore skill is too low to use that item's magic.", RetailLogTextType.ClientLocal),
|
||||
[0x4C8u] = new("That item doesn't have enough Mana.", RetailLogTextType.ClientLocal),
|
||||
[0x4C9u] = new("Your %s is too low to use that item's magic.", RetailLogTextType.ClientLocal),
|
||||
[0x4CAu] = new("Only %s may use that item's magic.", RetailLogTextType.ClientLocal),
|
||||
[0x4CBu] = new("You must have %s specialized to use that item's magic.", RetailLogTextType.ClientLocal),
|
||||
[0x4CCu] = new("You have been involved in a player killer battle too recently to do that!", RetailLogTextType.Magic),
|
||||
[0x4CEu] = new("%s is too busy to accept gifts right now.", RetailLogTextType.Default),
|
||||
[0x4CFu] = new("%s cannot accept stacked objects. Try giving one at a time.", RetailLogTextType.Default),
|
||||
[0x4D0u] = new("You have failed to alter your skill.", RetailLogTextType.Default),
|
||||
[0x4D1u] = new("Your %s skill must be trained, not untrained or specialized, in order to be altered in this way!", RetailLogTextType.Default),
|
||||
[0x4D2u] = new("You do not have enough skill credits to specialize your %s skill.", RetailLogTextType.Default),
|
||||
[0x4D3u] = new("You have too many available experience points to be able to absorb the experience points from your %s skill. Please spend some of your experience points and try again.", RetailLogTextType.Default),
|
||||
[0x4D4u] = new("Your %s skill is already untrained!", RetailLogTextType.Default),
|
||||
[0x4D5u] = new("You are currently wielding items which require a certain level of %s. Your %s skill cannot be lowered while you are wielding these items. Please remove these items and try again.", RetailLogTextType.Default),
|
||||
[0x4D6u] = new("You have succeeded in specializing your %s skill!", RetailLogTextType.Default),
|
||||
[0x4D7u] = new("You have succeeded in lowering your %s skill from specialized to trained!", RetailLogTextType.Default),
|
||||
[0x4D8u] = new("You have succeeded in untraining your %s skill!", RetailLogTextType.Default),
|
||||
[0x4D9u] = new("Although you cannot untrain your %s skill, you have succeeded in recovering all the experience you had invested in it.", RetailLogTextType.Default),
|
||||
[0x4DAu] = new("You have too many credits invested in specialized skills already! Before you can specialize your %s skill, you will need to unspecialize some other skill.", RetailLogTextType.Default),
|
||||
[0x4DDu] = new("You have failed to alter your attributes.", RetailLogTextType.Default),
|
||||
[0x4DEu] = new("%s", RetailLogTextType.Default),
|
||||
[0x4DFu] = new("%s", RetailLogTextType.Default),
|
||||
[0x4E0u] = new("You are currently wielding items which require a certain level of %s. Your %s skill cannot be lowered while you are wielding these items. Please remove these items and try again.", RetailLogTextType.Default),
|
||||
[0x4E1u] = new("You have succeeded in transferring your attributes!", RetailLogTextType.Default),
|
||||
[0x4E2u] = new("This hook is a duplicated housing object. You may not add items to a duplicated housing object. Please empty the hook and allow it to reset.", RetailLogTextType.Default),
|
||||
[0x4E3u] = new("That item is of the wrong type to be placed on this hook.", RetailLogTextType.Default),
|
||||
[0x4E4u] = new("This chest is a duplicated housing object. You may not add items to a duplicated housing object. Please empty everything -- including backpacks -- out of the chest and allow the chest to reset.", RetailLogTextType.Default),
|
||||
[0x4E5u] = new("This hook was a duplicated housing object. Since it is now empty, it will be deleted momentarily. Once it is gone, it is safe to use the other, non-duplicated hook that is here.", RetailLogTextType.Default),
|
||||
[0x4E6u] = new("This chest was a duplicated housing object. Since it is now empty, it will be deleted momentarily. Once it is gone, it is safe to use the other, non-duplicated chest that is here.", RetailLogTextType.Default),
|
||||
[0x4E7u] = new("You cannot swear allegiance to anyone because you own a monarch-only house. Please abandon your house and try again.", RetailLogTextType.Default),
|
||||
[0x4E9u] = new("The %s cannot be used while on a hook and only the owner may open the hook.", RetailLogTextType.Default),
|
||||
[0x4EAu] = new("The %s can only be used while on a hook.", RetailLogTextType.Default),
|
||||
[0x4EBu] = new("You can't do that while in the air!", RetailLogTextType.ClientLocal),
|
||||
[0x4ECu] = new("You cannot modify your player killer status while you are recovering from a PK death.", RetailLogTextType.Default),
|
||||
[0x4EDu] = new("Advocates may not change their player killer status!", RetailLogTextType.Default),
|
||||
[0x4EEu] = new("Your level is too low to change your player killer status with this object.", RetailLogTextType.Default),
|
||||
[0x4EFu] = new("Your level is too high to change your player killer status with this object.", RetailLogTextType.Default),
|
||||
[0x4F0u] = new("You feel a harsh dissonance, and you sense that an act of killing you have committed recently is interfering with the conversion.", RetailLogTextType.Default),
|
||||
[0x4F1u] = new("Bael'Zharon's power flows through you again. You are once more a player killer.", RetailLogTextType.Default),
|
||||
[0x4F2u] = new("Bael'Zharon has granted you respite after your moment of weakness. You are temporarily no longer a player killer.", RetailLogTextType.Default),
|
||||
[0x4F3u] = new("Lite Player Killers may not interact with that portal!", RetailLogTextType.Magic),
|
||||
[0x4F4u] = new("%s fails to affect you because $s cannot affect anyone!", RetailLogTextType.Magic),
|
||||
[0x4F5u] = new("%s fails to affect you because you cannot be harmed!", RetailLogTextType.Magic),
|
||||
[0x4F6u] = new("%s fails to affect you because %s is not a player killer!", RetailLogTextType.Magic),
|
||||
[0x4F7u] = new("%s fails to affect you because you are not the same sort of player killer as", RetailLogTextType.Magic),
|
||||
// 0x4F8 deliberately excluded — see the class doc comment.
|
||||
[0x4F9u] = new("%s fails to affect you across a house boundary!", RetailLogTextType.Magic),
|
||||
[0x4FAu] = new("%s is an invalid target.", RetailLogTextType.Magic),
|
||||
[0x4FBu] = new("You are an invalid target for the spell of %s.", RetailLogTextType.Magic),
|
||||
[0x4FCu] = new("You aren't trained in healing!", RetailLogTextType.ClientLocal),
|
||||
[0x4FDu] = new("You don't own that healing kit!", RetailLogTextType.ClientLocal),
|
||||
[0x4FEu] = new("You can't heal that!", RetailLogTextType.ClientLocal),
|
||||
[0x4FFu] = new("%s is already at full health!", RetailLogTextType.ClientLocal),
|
||||
[0x500u] = new("You aren't ready to heal!", RetailLogTextType.ClientLocal),
|
||||
[0x501u] = new("You can only use Healing Kits on player characters.", RetailLogTextType.ClientLocal),
|
||||
[0x502u] = new("The Lifestone's magic protects you from the attack!", RetailLogTextType.Magic),
|
||||
[0x503u] = new("The portal's residual energy protects you from the attack!", RetailLogTextType.Magic),
|
||||
[0x504u] = new("You are enveloped in a feeling of warmth as you are brought back into the protection of the Light. You are once again a Non-Player Killer.", RetailLogTextType.Default),
|
||||
[0x505u] = new("You're too close to your sanctuary!", RetailLogTextType.ClientLocal),
|
||||
[0x506u] = new("You can't do that -- you're trading!", RetailLogTextType.ClientLocal),
|
||||
[0x507u] = new("Only Non-Player Killers may enter PK Lite. Please see @help pklite for more details about this command.", RetailLogTextType.Default),
|
||||
[0x508u] = new("A cold wind touches your heart. You are now a Player Killer Lite.", RetailLogTextType.Default),
|
||||
[0x509u] = new("%s has no appropriate targets equipped for this spell.", RetailLogTextType.Magic),
|
||||
[0x50Au] = new("You have no appropriate targets equipped for %s's spell.", RetailLogTextType.Magic),
|
||||
[0x50Bu] = new("%s is now an open fellowship; anyone may recruit new members.", RetailLogTextType.Default),
|
||||
[0x50Cu] = new("%s is now a closed fellowship.", RetailLogTextType.Default),
|
||||
[0x50Du] = new("%s is now the leader of this fellowship.", RetailLogTextType.Default),
|
||||
[0x50Eu] = new("You have passed leadership of the fellowship to %s", RetailLogTextType.Default),
|
||||
[0x50Fu] = new("You do not belong to a Fellowship.", RetailLogTextType.ClientLocal),
|
||||
[0x510u] = new("You may not hook any more %s on your house. You already have the maximum number of %s hooked or you are not permitted to hook any on your type of house.", RetailLogTextType.Default),
|
||||
[0x512u] = new("You are now using the maximum number of hooks. You cannot use another hook until you take an item off one of your hooks.", RetailLogTextType.Default),
|
||||
[0x513u] = new("You are no longer using the maximum number of hooks. You may again add items to your hooks.", RetailLogTextType.Default),
|
||||
[0x514u] = new("You now have the maximum number of %s hooked. You cannot hook any additional %s until you remove one or more from your house.", RetailLogTextType.Default),
|
||||
[0x515u] = new("You no longer have the maximum number of %s hooked. You may hook additional %s.", RetailLogTextType.Default),
|
||||
[0x516u] = new("You are not permitted to use that hook.", RetailLogTextType.Default),
|
||||
[0x517u] = new("%s is not close enough to your level.", RetailLogTextType.Default),
|
||||
[0x518u] = new("%s cannot be recruited into the fellowship.", RetailLogTextType.Default),
|
||||
[0x519u] = new("The fellowship is locked, you were not added to the fellowship.", RetailLogTextType.Default),
|
||||
[0x51Au] = new("Only the original owner may use that item's magic.", RetailLogTextType.ClientLocal),
|
||||
[0x51Bu] = new("You have entered the %s channel.", RetailLogTextType.Default),
|
||||
[0x51Cu] = new("You have left the %s channel.", RetailLogTextType.Default),
|
||||
[0x51Eu] = new("%s will not receive your message, please use urgent assistance to speak with an in-game representative", RetailLogTextType.Default),
|
||||
[0x51Fu] = new("Message Blocked: %s", RetailLogTextType.ClientLocal),
|
||||
[0x520u] = new("You cannot add anymore people to the list of players that you can hear.", RetailLogTextType.Default),
|
||||
[0x521u] = new("%s has been added to the list of people you can hear.", RetailLogTextType.Default),
|
||||
[0x522u] = new("%s has been removed from the list of people you can hear.", RetailLogTextType.Default),
|
||||
[0x523u] = new("You are now deaf to player's screams.", RetailLogTextType.Default),
|
||||
[0x524u] = new("You can hear all players once again.", RetailLogTextType.Default),
|
||||
[0x525u] = new("You fail to remove %s from your loud list.", RetailLogTextType.Default),
|
||||
[0x526u] = new("You chicken out.", RetailLogTextType.ClientLocal),
|
||||
[0x527u] = new("You cannot posssibly succeed.", RetailLogTextType.ClientLocal),
|
||||
[0x528u] = new("The fellowship is locked; you cannot open locked fellowships.", RetailLogTextType.Default),
|
||||
[0x529u] = new("Trade Complete!", RetailLogTextType.ClientLocal),
|
||||
[0x52Au] = new("That is not a salvaging tool.", RetailLogTextType.ClientLocal),
|
||||
[0x52Bu] = new("That person is not available now.", RetailLogTextType.ClientLocal),
|
||||
[0x52Cu] = new("You are now snooping on %s.", RetailLogTextType.Default),
|
||||
[0x52Du] = new("You are no longer snooping on %s.", RetailLogTextType.Default),
|
||||
[0x52Eu] = new("You fail to snoop on %s.", RetailLogTextType.Default),
|
||||
[0x52Fu] = new("%s attempted to snoop on you.", RetailLogTextType.Default),
|
||||
[0x530u] = new("%s is already being snooped on, only one person may snoop on another at a time.", RetailLogTextType.Default),
|
||||
[0x531u] = new("%s is in limbo and cannot receive your message.", RetailLogTextType.Default),
|
||||
[0x532u] = new("You must wait 30 days after purchasing a house before you may purchase another with any character on the same account. This applies to all housing except apartments.", RetailLogTextType.Default),
|
||||
[0x533u] = new("You have been booted from your allegiance chat room. Use \"@allegiance chat on\" to rejoin. (%s).", RetailLogTextType.Default),
|
||||
[0x534u] = new("%s has been booted from the allegiance chat room.", RetailLogTextType.Default),
|
||||
[0x535u] = new("You do not have the authority within your allegiance to do that.", RetailLogTextType.Default),
|
||||
[0x536u] = new("The account of %s is already banned from the allegiance.", RetailLogTextType.Default),
|
||||
[0x537u] = new("The account of %s is not banned from the allegiance.", RetailLogTextType.Default),
|
||||
[0x538u] = new("The account of %s was not unbanned from the allegiance.", RetailLogTextType.Default),
|
||||
[0x539u] = new("The account of %s has been banned from the allegiance.", RetailLogTextType.Default),
|
||||
[0x53Au] = new("The account of %s is no longer banned from the allegiance.", RetailLogTextType.Default),
|
||||
[0x53Bu] = new("Banned Characters:", RetailLogTextType.Default),
|
||||
[0x53Eu] = new("%s is banned from the allegiance!", RetailLogTextType.Default),
|
||||
[0x53Fu] = new("You are banned from %s's allegiance!", RetailLogTextType.Default),
|
||||
[0x540u] = new("You have the maximum number of accounts banned.!", RetailLogTextType.Default),
|
||||
[0x541u] = new("%s is now an allegiance officer.", RetailLogTextType.Default),
|
||||
[0x542u] = new("An unspecified error occurred while attempting to set %s as an allegiance officer.", RetailLogTextType.Default),
|
||||
[0x543u] = new("%s is no longer an allegiance officer.", RetailLogTextType.Default),
|
||||
[0x544u] = new("An unspecified error occurred while attempting to set %s as an allegiance officer.", RetailLogTextType.Default),
|
||||
[0x545u] = new("You already have the maximum number of allegiance officers. You must remove some before you add any more.", RetailLogTextType.Default),
|
||||
[0x546u] = new("Your allegiance officers have been cleared.", RetailLogTextType.Default),
|
||||
[0x547u] = new("You must wait %s before communicating again!", RetailLogTextType.Default),
|
||||
[0x548u] = new("You cannot join any chat channels while gagged.", RetailLogTextType.Default),
|
||||
[0x549u] = new("Your allegiance officer status has been modified. You now hold the position of: %s.", RetailLogTextType.Default),
|
||||
[0x54Au] = new("You are no longer an allegiance officer.", RetailLogTextType.Default),
|
||||
[0x54Bu] = new("%s is already an allegiance officer of that level.", RetailLogTextType.Default),
|
||||
[0x54Cu] = new("Your allegiance does not have a hometown.", RetailLogTextType.Default),
|
||||
[0x54Du] = new("The %s is currently in use.", RetailLogTextType.ClientLocal),
|
||||
[0x54Eu] = new("The hook does not contain a usable item. Use the '@house hooks on'command to make the hook openable.", RetailLogTextType.Default),
|
||||
[0x54Fu] = new("The hook does not contain a usable item. Use the '@house hooks on'command to make the hook openable.", RetailLogTextType.Default),
|
||||
[0x550u] = new("Out of Range!", RetailLogTextType.ClientLocal),
|
||||
[0x551u] = new("You are not listening to the %s channel!", RetailLogTextType.Default),
|
||||
[0x552u] = new("You must purchase Asheron's Call -- Dark Majesty to use this function.", RetailLogTextType.ClientLocal),
|
||||
[0x553u] = new("You must purchase Asheron's Call -- Dark Majesty to use this function.", RetailLogTextType.ClientLocal),
|
||||
[0x554u] = new("You must purchase Asheron's Call -- Dark Majesty to use this function.", RetailLogTextType.ClientLocal),
|
||||
[0x555u] = new("You must purchase Asheron's Call -- Dark Majesty to use this function.", RetailLogTextType.ClientLocal),
|
||||
[0x556u] = new("You have failed to complete the augmentation.", RetailLogTextType.Default),
|
||||
[0x557u] = new("You have used this augmentation too many times already.", RetailLogTextType.Default),
|
||||
[0x558u] = new("You have used augmentations of this type too many times already.", RetailLogTextType.Default),
|
||||
[0x559u] = new("You do not have enough unspent experience available to purchase this augmentation.", RetailLogTextType.Default),
|
||||
[0x55Au] = new("%s", RetailLogTextType.Default),
|
||||
[0x55Bu] = new("Congratulations! You have succeeded in acquiring the %s augmentation.", RetailLogTextType.Default),
|
||||
[0x55Cu] = new("Although your augmentation will not allow you to untrain your %s skill, you have succeeded in recovering all the experience you had invested in it.", RetailLogTextType.Default),
|
||||
[0x55Du] = new("You must exit the Training Academy before that command will be available to you.", RetailLogTextType.Default),
|
||||
[0x55Eu] = new("%s", RetailLogTextType.Default),
|
||||
[0x55Fu] = new("Only Player Killer characters may use this command!", RetailLogTextType.Default),
|
||||
[0x560u] = new("Only Player Killer Lite characters may use this command!", RetailLogTextType.Default),
|
||||
[0x561u] = new("You may only have a maximum of 50 friends at once. If you wish to add more friends, you must first remove some.", RetailLogTextType.ClientLocal),
|
||||
[0x562u] = new("%s is already on your friends list!", RetailLogTextType.Default),
|
||||
[0x563u] = new("That character is not on your friends list!", RetailLogTextType.Default),
|
||||
[0x564u] = new("Only the character who owns the house may use this command.", RetailLogTextType.Default),
|
||||
[0x565u] = new("That allegiance name is invalid because it is empty. Please use the @allegiance name clear command to clear your allegiance name.", RetailLogTextType.Default),
|
||||
[0x566u] = new("That allegiance name is too long. Please choose another name.", RetailLogTextType.Default),
|
||||
[0x567u] = new("That allegiance name contains illegal characters. Please choose another name using only letters, spaces, - and '.", RetailLogTextType.Default),
|
||||
[0x568u] = new("That allegiance name is not appropriate. Please choose another name.", RetailLogTextType.Default),
|
||||
[0x569u] = new("That allegiance name is already in use. Please choose another name.", RetailLogTextType.Default),
|
||||
[0x56Au] = new("You may only change your allegiance name once every 24 hours. You may change your allegiance name again in %s.", RetailLogTextType.Default),
|
||||
[0x56Bu] = new("Your allegiance name has been cleared.", RetailLogTextType.Default),
|
||||
[0x56Cu] = new("That is already the name of your allegiance!", RetailLogTextType.Default),
|
||||
[0x56Du] = new("%s is the monarch and cannot be promoted or demoted.", RetailLogTextType.Default),
|
||||
[0x56Eu] = new("That level of allegiance officer is now known as: %s.", RetailLogTextType.Default),
|
||||
[0x56Fu] = new("That is an invalid officer level.", RetailLogTextType.Default),
|
||||
[0x570u] = new("That allegiance officer title is not appropriate.", RetailLogTextType.Default),
|
||||
[0x571u] = new("That allegiance name is too long. Please choose another name.", RetailLogTextType.Default),
|
||||
[0x572u] = new("All of your allegiance officer titles have been cleared.", RetailLogTextType.Default),
|
||||
[0x573u] = new("That allegiance title contains illegal characters. Please choose another name using only letters, spaces, - and '.", RetailLogTextType.Default),
|
||||
[0x574u] = new("Your allegiance is currently: %s.", RetailLogTextType.Default),
|
||||
[0x575u] = new("Your allegiance is now: %s.", RetailLogTextType.Default),
|
||||
[0x576u] = new("You may not accept the offer of allegiance from %s because your allegiance is locked.", RetailLogTextType.Default),
|
||||
[0x577u] = new("You may not swear allegiance at this time because the allegiance of %s is locked.", RetailLogTextType.Default),
|
||||
[0x578u] = new("You have pre-approved %s to join your allegiance.", RetailLogTextType.Default),
|
||||
[0x579u] = new("You have not pre-approved any vassals to join your allegiance.", RetailLogTextType.Default),
|
||||
[0x57Au] = new("%s is already a member of your allegiance!", RetailLogTextType.Default),
|
||||
[0x57Bu] = new("%s has been pre-approved to join your allegiance.", RetailLogTextType.Default),
|
||||
[0x57Cu] = new("You have cleared the pre-approved vassal for your allegiance.", RetailLogTextType.Default),
|
||||
[0x57Du] = new("That character is already gagged!", RetailLogTextType.Default),
|
||||
[0x57Eu] = new("That character is not currently gagged!", RetailLogTextType.Default),
|
||||
[0x57Fu] = new("Your allegiance chat privileges have been restored.", RetailLogTextType.Default),
|
||||
[0x580u] = new("%s is now temporarily unable to view or speak in allegiance chat. The gag will run out in 5 minutes, or %s may be explicitly ungagged before then.", RetailLogTextType.Default),
|
||||
[0x581u] = new("Your allegiance chat privileges have been restored.", RetailLogTextType.Default),
|
||||
[0x582u] = new("Your allegiance chat privileges have been restored.", RetailLogTextType.Default),
|
||||
[0x583u] = new("You have restored allegiance chat privileges to %s.", RetailLogTextType.Default),
|
||||
[0x584u] = new("You cannot pick up more of that item!", RetailLogTextType.ClientLocal),
|
||||
[0x585u] = new("You are restricted to clothes and armor created for your race.", RetailLogTextType.ClientLocal),
|
||||
[0x586u] = new("That item was specifically created for another race.", RetailLogTextType.ClientLocal),
|
||||
[0x587u] = new("Olthoi cannot interact with that!", RetailLogTextType.Magic),
|
||||
[0x588u] = new("Olthoi cannot use regular lifestones! Asheron would not allow it!", RetailLogTextType.Magic),
|
||||
[0x589u] = new("The vendor looks at you in horror!", RetailLogTextType.Magic),
|
||||
[0x58Au] = new("%s cowers from you!", RetailLogTextType.Default),
|
||||
[0x58Bu] = new("As a mindless engine of destruction an Olthoi cannot join a fellowship!", RetailLogTextType.Magic),
|
||||
[0x58Cu] = new("The Olthoi only have an allegiance to the Olthoi Queen!", RetailLogTextType.Magic),
|
||||
[0x58Du] = new("You cannot use that item!", RetailLogTextType.Magic),
|
||||
[0x58Eu] = new("This person will not interact with you!", RetailLogTextType.Magic),
|
||||
[0x58Fu] = new("Only Olthoi may pass through this portal!", RetailLogTextType.Magic),
|
||||
[0x590u] = new("Olthoi may not pass through this portal!", RetailLogTextType.Magic),
|
||||
[0x591u] = new("You may not pass through this portal while Vitae weakens you!", RetailLogTextType.Magic),
|
||||
[0x592u] = new("This character must be two weeks old or have been created on an account at least two weeks old to use this portal!", RetailLogTextType.Magic),
|
||||
[0x593u] = new("Olthoi characters can only use Lifestone and PK Arena recalls!", RetailLogTextType.Magic),
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue