From 97394ed0db1368b909680d6ffaec19088867333e Mon Sep 17 00:00:00 2001 From: Eddoursul Date: Sun, 23 Feb 2025 04:13:51 +0100 Subject: [PATCH] Added _00E_HelpMessage generating unique help message events --- scripts/_00E_HelpMessage.pex | Bin 0 -> 874 bytes scripts/scriptarchiveorder.txt | 3 ++- source/scripts/_00E_HelpMessage.psc | 7 +++++++ 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 scripts/_00E_HelpMessage.pex create mode 100644 source/scripts/_00E_HelpMessage.psc diff --git a/scripts/_00E_HelpMessage.pex b/scripts/_00E_HelpMessage.pex new file mode 100644 index 0000000000000000000000000000000000000000..266f20c8f8d24d53deae4498033ea1842cbb6345 GIT binary patch literal 874 zcmb7C%aRf?6g`0khK6~7_?YpPohzrX%8l%NFvtQoSh}2w-4}?}BvdC2&TsfRuKW`J z!i_6$XeiO0>FVU<+*Vd>E(K~Ahk(#(U8aq>n)$C1?tB``)Rc4hB)Yy2+*IW}TJyBoY>m@lC;$$}j3w3GJJXG*;EmbWC`iV{83luEZfpCdz?-SIfeX2D^(eL7sT z0hv=mdd=yZ1qFE)+!o3J%04M;&n6z0)#Y4g;?W^dVadmT2ywwezX2=@z-|Bl literal 0 HcmV?d00001 diff --git a/scripts/scriptarchiveorder.txt b/scripts/scriptarchiveorder.txt index 84a77c298..a61c83b3f 100644 --- a/scripts/scriptarchiveorder.txt +++ b/scripts/scriptarchiveorder.txt @@ -4797,4 +4797,5 @@ scripts\pf_mq14_sc06_toriusstandstil_0003c597.pex scripts\_00E_UpdateSpeedmult.pex scripts\_00E_AutolearnEffectsAlias.pex scripts\_00E_ArcaneArrowEffect.pex -scripts\_00E_AlchArcaneFever.pex \ No newline at end of file +scripts\_00E_AlchArcaneFever.pex +scripts\_00E_HelpMessage.pex \ No newline at end of file diff --git a/source/scripts/_00E_HelpMessage.psc b/source/scripts/_00E_HelpMessage.psc new file mode 100644 index 000000000..2d85fcb91 --- /dev/null +++ b/source/scripts/_00E_HelpMessage.psc @@ -0,0 +1,7 @@ +Scriptname _00E_HelpMessage + +Function Show(Message aMsg, float afDuration, float afInterval = 1.0, int aiMaxTimes = 1) global + + aMsg.ShowAsHelpMessage("MessageId" + Utility.GetCurrentGameTime(), afDuration, afInterval, aiMaxTimes) + +endfunction