From 3a440a5fa738dcd83c9aa931270f223547bcaa69 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Mon, 11 Feb 2019 00:43:57 +0100 Subject: [PATCH] - moved the displayed text in strfhelp.o to the string table. --- .../static/filter/game-strife/acs/strfhelp.o | Bin 3288 -> 3196 bytes wadsrc/static/language.enu | 6 ++++++ wadsrc/static/strifehelp.acs | 12 ++++++------ 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/wadsrc/static/filter/game-strife/acs/strfhelp.o b/wadsrc/static/filter/game-strife/acs/strfhelp.o index 521d8871455b1583c77450c88d8e22cfebb852a6..483056f7bf4d94f1c78aaa1aeac84e2b58d0a0f4 100644 GIT binary patch delta 503 zcmX}oF^CgE6vpwlyNQA!SemF{3PZ#~%yC+o$g-K}nq)WZ&V>scgcQo1Xk}7ZMFq7G z1X)lU16D!7LeePMD5SG65KxO0fkUv->aYpue+}Hg@0&OCW~P{L*<~haJE8R6Ca0z` zjJ}%Z$h1`>+tw-ao>j6+i(&N1DyJ%oVQW2|5E)5yJaIJ2Cw?c?Vx-2IVU8d8g+KU<1D42P96=5RoWXfqgo1|_wy=#J?&6_U5P3#1!aID#7wlq* z6u)x}Yvb<+ADCKi>W-&WrQ=+->#n2ZbpO`XYu%k2vfuHWb{PI&R)hFtGjK!SQ^9Jl xqCy?`?f3=XYpFo1AetS@orteHexq4enw}19*K@r~64u%cPoFK0ucRIu{{XE(Wk3J` delta 605 zcmY+=J!lj`6u|MfyLSjDDMXO?1-qaaO%ug5f?_<4NH`Tw?>sAqy-99i-92abf+^%c zR1igrMF?71ND5I1SBQlm>4Hrxf@!y~5mc}XvB>}ML^AMuGw|NLH_V^mwcW*ua#dCq zi(hQ3o_)2)i9^m5vEhsm?>Q%(vw1yRa!zeOm)C2@hYBJKlI<(($qp8N6(;kA$=+~r z-s;Yi=&$pCHyN=+&Y*(p@DX7S_wfub@EVKwh-IuI#}BNdXp8K?ejLU)CQv~G8nf85eK`H*gan?%)9)JEI~m zIlRFVKI0oKe#OHWPNRk=z13|G?QSFPxRKUPH*IOxZ>ccwwd=`|PNJt(5XzSPC8PXM zyO&jxc>Tl?HK?cy7O}r5NeQx7wjj2W?ZMf+&b)TxGP9>Qtk0@#@%7k>1bJQ)?4b CLX0{9 diff --git a/wadsrc/static/language.enu b/wadsrc/static/language.enu index a7f0b6322..736c578e0 100644 --- a/wadsrc/static/language.enu +++ b/wadsrc/static/language.enu @@ -2983,3 +2983,9 @@ TXT_STRIFE_MAP36 = "AREA 36: Castle Clash"; TXT_STRIFE_MAP37 = "AREA 37: Killing Grounds"; TXT_STRIFE_MAP38 = "AREA 38: Ordered Chaos"; TXT_STRIFE_EPI = "Quest for the Sigil"; + +TXT_NEED_CHALICE = "You need the chalice!"; +TXT_NEED_OPASS = "You need the Oracle Pass!"; +TXT_FREED_PRISONERS = "You've freed the prisoners!"; +TXT_DESTROYED_CONVERTER = "You've destroyed the Converter!"; +TXT_COMPLETED_TRAINING = "Congratulations! You have completed the training area"; diff --git a/wadsrc/static/strifehelp.acs b/wadsrc/static/strifehelp.acs index 495893edf..a3799de9e 100644 --- a/wadsrc/static/strifehelp.acs +++ b/wadsrc/static/strifehelp.acs @@ -268,7 +268,7 @@ script << 0 >> (int type, int tag) case 213: if (!CheckInventory ("OfferingChalice")) { - print (s:"You need the chalice !"); + print (l:"TXT_NEED_CHALICE"); activatorsound ("*usefail", 127); SetResultValue (0); } @@ -281,7 +281,7 @@ script << 0 >> (int type, int tag) case 232: if (!CheckInventory ("QuestItem18") && gametype() != GAME_NET_DEATHMATCH) { - print (s:"You need the Oracle Pass!"); + print (l:"TXT_NEED_OPASS"); activatorsound ("*usefail", 127); SetResultValue (0); } @@ -299,7 +299,7 @@ script << 0 >> (int type, int tag) case 194: if (Door_Open (tag, VDOORSPEED)) { - print (s:"You've freed the prisoners!"); + print (l:"TXT_FREED_PRISONERS"); GiveInventory ("QuestItem13", 1); } else @@ -311,7 +311,7 @@ script << 0 >> (int type, int tag) case 199: if (Ceiling_LowerAndCrush (tag, 8, 10)) { - print (s:"You've destroyed the Converter!"); + print (l:"TXT_DESTROYED_CONVERTER"); GiveInventory ("QuestItem25", 1); GiveInventory ("UpgradeStamina", 10); GiveInventory ("UpgradeAccuracy", 1); @@ -329,7 +329,7 @@ script << 0 >> (int type, int tag) } else { - print (s:"You need the chalice!"); + print (l:"TXT_NEED_CHALICE"); activatorsound ("*usefail", 127); SetResultValue (0); } @@ -345,7 +345,7 @@ script << 0 >> (int type, int tag) { GiveInventory ("UpgradeStamina", 10); GiveInventory ("UpgradeAccuracy", 1); - print (s:"Congratulations! You have completed the training area"); + print (l:"TXT_COMPLETED_TRAINING"); } else {