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 zcmca1`A34)(K(o*WFzZECdPS_uQQo4&YR53?9DiDawM|`u+!*YhnGAvS)RaxG%xISF&x>EJg-~Qbq=b21W*kZbk-%X^adE3mF+0)-p0M>||tMILgStaFLOL;VvTs z!%Id6hOdka42(<+47^MX43bO?45~~F42Db$47N-R44zC3453U642et(47p4U^$e9v z3=FMI3=9*Q7#QX3xDGBGebV`5-< z$Hc(!or!_rKNAB38#4m~KQjY^I5Pu-0y6`HIx_=<9y0@j88ZWeJu?G?D>DOwA2S0( z7&8My3^M~m1~UUg2{QvjBQpa-JF_|i!*pf_hULr*3_F+^7!EQsFkE0}V0gmJ!0?Be zfq|QafkB#ufx&3=P4+gXkdTOwct2NHmw0CnM;}jTR|c)p;?%Un%p3-|jDLV*a4?wb z76eim5ab!`@8=o>5p!`34hiy)1exIP7v>ri;uAkjlisP{_nk&rr+6 zz|hIWz%Z4GfngyN1H)P-28MM^3=G?u7#I#PF)*BDVqmzy#K3TaiGkrE69dC5CI*I2 zObiUanHU(DnHdC#^nHdC$fnHd<2m>C$Xm>C$HnHd;7nHd;@m>C$N zm>C!nm>C#ym>C!C#anHdTzg98f#Ll_GKL(k@`>}^c-k@=+xd8w%>3MCn-3dtFXIho0+3W^L`rNyafiJ3VJ zDDwVAiOD&s3IU15#fl&q^|Dljv?7@9f}+gg{Jhj6gj`B$aY<2rCDe51{JgT%qLS1i zMTXFV^rFO+)ZmiIJGsQdQ0#!ZL6N~ZKQFx~v7|I7u_QA;uUJt5q%0$`EL9;nKer$! lwFGKxNl{{EUS?jpLSj*BB15ouq_1CyfguCK=676ui~v(Yj5+`S 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 {