Skip to content

Commit

Permalink
Update Phrases & Add Missing Parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
ClaudiuHKS committed Dec 26, 2023
1 parent 28b7e92 commit d732704
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
22 changes: 11 additions & 11 deletions AQS.ini
Original file line number Diff line number Diff line change
Expand Up @@ -618,14 +618,14 @@ QS_PHR_STATUS_DEF = >> QUAKE SOUNDS %s.
# IF %s WILL BE "ENABLED", %c WILL BE \x04 (GREEN).
# IF %s WILL BE "DISABLED", %c WILL BE \x03 (RED).
#
# INVERSED USAGE: \x01>> %c%s \x01QUAKE SOUNDS. TYPE '%c%s\x01' TO %c%s\x01.
# INVERSED USAGE: >> %s QUAKE SOUNDS. TYPE 'sounds' TO %s.
# INVERSED USAGE: \x01>> %c%s \x01QUAKE SOUNDS. TYPE '%c/sounds\x01' TO %c%s\x01.
# INVERSED USAGE: >> %s QUAKE SOUNDS. TYPE '/sounds' TO %s.
#
# DEFAULT \x01>> QUAKE SOUNDS %c%s\x01. TYPE '%c%s\x01' TO %c%s\x01. >> QUAKE SOUNDS %s. TYPE 'sounds' TO %s.
# DEFAULT \x01>> QUAKE SOUNDS %c%s\x01. TYPE '%c/sounds\x01' TO %c%s\x01. >> QUAKE SOUNDS %s. TYPE '/sounds' TO %s.
#

QS_PHR_STATUS_TYPE = \x01>> QUAKE SOUNDS %c%s\x01. TYPE '%c%s\x01' TO %c%s\x01.
QS_PHR_STATUS_TYPE_DEF = >> QUAKE SOUNDS %s. TYPE 'sounds' TO %s.
QS_PHR_STATUS_TYPE = \x01>> QUAKE SOUNDS %c%s\x01. TYPE '%c/sounds\x01' TO %c%s\x01.
QS_PHR_STATUS_TYPE_DEF = >> QUAKE SOUNDS %s. TYPE '/sounds' TO %s.

#
# \x01 WILL BE YELLOW HERE.
Expand Down Expand Up @@ -655,22 +655,22 @@ QS_PHR_HATTRICK_VICTIMS_PLURAL_SUFFIX = S
# \x03 WILL BE RED HERE.
# \x04 WILL BE GREEN HERE.
#
# DEFAULT \x01>> QUAKE SOUNDS \x04ENABLED\x01. TYPE '\x03sounds\x01' TO \x03DISABLE\x01. >> QUAKE SOUNDS ENABLED. TYPE 'sounds' TO DISABLE.
# DEFAULT \x01>> QUAKE SOUNDS \x04ENABLED\x01. TYPE '\x03/sounds\x01' TO \x03DISABLE\x01. >> QUAKE SOUNDS ENABLED. TYPE '/sounds' TO DISABLE.
#

QS_PHR_STATUS_ENABLED_TYPE = \x01>> QUAKE SOUNDS \x04ENABLED\x01. TYPE '\x03sounds\x01' TO \x03DISABLE\x01.
QS_PHR_STATUS_ENABLED_TYPE_DEF = >> QUAKE SOUNDS ENABLED. TYPE 'sounds' TO DISABLE.
QS_PHR_STATUS_ENABLED_TYPE = \x01>> QUAKE SOUNDS \x04ENABLED\x01. TYPE '\x03/sounds\x01' TO \x03DISABLE\x01.
QS_PHR_STATUS_ENABLED_TYPE_DEF = >> QUAKE SOUNDS ENABLED. TYPE '/sounds' TO DISABLE.

#
# \x01 WILL BE YELLOW HERE.
# \x03 WILL BE RED HERE.
# \x04 WILL BE GREEN HERE.
#
# DEFAULT \x01>> QUAKE SOUNDS \x03DISABLED\x01. TYPE '\x04sounds\x01' TO \x04ENABLE\x01. >> QUAKE SOUNDS DISABLED. TYPE 'sounds' TO ENABLE.
# DEFAULT \x01>> QUAKE SOUNDS \x03DISABLED\x01. TYPE '\x04/sounds\x01' TO \x04ENABLE\x01. >> QUAKE SOUNDS DISABLED. TYPE '/sounds' TO ENABLE.
#

QS_PHR_STATUS_DISABLED_TYPE = \x01>> QUAKE SOUNDS \x03DISABLED\x01. TYPE '\x04sounds\x01' TO \x04ENABLE\x01.
QS_PHR_STATUS_DISABLED_TYPE_DEF = >> QUAKE SOUNDS DISABLED. TYPE 'sounds' TO ENABLE.
QS_PHR_STATUS_DISABLED_TYPE = \x01>> QUAKE SOUNDS \x03DISABLED\x01. TYPE '\x04/sounds\x01' TO \x04ENABLE\x01.
QS_PHR_STATUS_DISABLED_TYPE_DEF = >> QUAKE SOUNDS DISABLED. TYPE '/sounds' TO ENABLE.

#
# NO COLORS NEEDED HERE.
Expand Down
16 changes: 8 additions & 8 deletions AQS.sma
Original file line number Diff line number Diff line change
Expand Up @@ -2036,19 +2036,19 @@ static g_szPhrWaitDef[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// >> WAIT.
static g_szPhrStatus[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// \x01>> QUAKE SOUNDS %c%s\x01.
static g_szPhrStatusDef[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// >> QUAKE SOUNDS %s.

static g_szPhrStatusType[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// \x01>> QUAKE SOUNDS %c%s\x01. TYPE '%c%s\x01' TO %c%s\x01.
static g_szPhrStatusTypeDef[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// >> QUAKE SOUNDS %s. TYPE 'sounds' TO %s.
static g_szPhrStatusType[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// \x01>> QUAKE SOUNDS %c%s\x01. TYPE '%c/sounds\x01' TO %c%s\x01.
static g_szPhrStatusTypeDef[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// >> QUAKE SOUNDS %s. TYPE '/sounds' TO %s.

static g_szPhrHattrickVictims[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// \x01>> QUAKE SOUNDS \x03%s \x01HAD \x04%d VICTIM%s\x01.
static g_szPhrHattrickVictimsDef[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// >> QUAKE SOUNDS %s HAD %d VICTIM%s.

static g_szPhrHattrickVictimsPluralSuf[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// S

static g_szPhrStatusEnabledType[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// \x01>> QUAKE SOUNDS \x04ENABLED\x01. TYPE '\x03sounds\x01' TO \x03DISABLE\x01.
static g_szPhrStatusEnabledTypeDef[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// >> QUAKE SOUNDS ENABLED. TYPE 'sounds' TO DISABLE.
static g_szPhrStatusEnabledType[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// \x01>> QUAKE SOUNDS \x04ENABLED\x01. TYPE '\x03/sounds\x01' TO \x03DISABLE\x01.
static g_szPhrStatusEnabledTypeDef[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// >> QUAKE SOUNDS ENABLED. TYPE '/sounds' TO DISABLE.

static g_szPhrStatusDisabledType[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// \x01>> QUAKE SOUNDS \x03DISABLED\x01. TYPE '\x04sounds\x01' TO \x04ENABLE\x01.
static g_szPhrStatusDisabledTypeDef[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// >> QUAKE SOUNDS DISABLED. TYPE 'sounds' TO ENABLE.
static g_szPhrStatusDisabledType[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// \x01>> QUAKE SOUNDS \x03DISABLED\x01. TYPE '\x04/sounds\x01' TO \x04ENABLE\x01.
static g_szPhrStatusDisabledTypeDef[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// >> QUAKE SOUNDS DISABLED. TYPE '/sounds' TO ENABLE.

static g_szPhrEnable[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// ENABLE
static g_szPhrDisable[QS_CHAT_PHRASE_MAX_LEN] = { EOS, ... }; /// DISABLE
Expand Down Expand Up @@ -4605,7 +4605,7 @@ public QS_DisplayPlayerInfo(szParam[], nTaskIndex)
{
QS_CSCZColored(nPlayer, QS_CC_ST_X03_RED, g_szPhrStatusType,
g_pbDisabled[nPlayer] ? 3 : 4, g_pbDisabled[nPlayer] ? g_szPhrDisabled : g_szPhrEnabled,
g_pbDisabled[nPlayer] ? 4 : 3, "sounds", g_pbDisabled[nPlayer] ? 4 : 3, g_pbDisabled[nPlayer] ? g_szPhrEnable : g_szPhrDisable);
g_pbDisabled[nPlayer] ? 4 : 3, g_pbDisabled[nPlayer] ? 4 : 3, g_pbDisabled[nPlayer] ? g_szPhrEnable : g_szPhrDisable);
}
}

Expand Down Expand Up @@ -5841,7 +5841,7 @@ public QS_Flawless(nTaskIndex)
///
/// FIRED WHEN A MESSAGE BEGINS
///
public QS_FM_OnMsgBegin_POST(nDestination, nType)
public QS_FM_OnMsgBegin_POST(nDestination, nType, Float: pfOrigin[3], nEntity)
{
///
/// IF GLOBALLY SENT
Expand Down

0 comments on commit d732704

Please sign in to comment.