In v83 it's called OnScriptProgressMessage, part of WvsContext. However I noticed the Odin-logic like usual named it "EARN_TITLE_MESSAGE".
PHP Code:
ScriptProgressMessage(0x7A),
PHP Code:
public static byte[] OnScriptProgressMessage(String sMsg) {
OutPacket oPacket = new OutPacket();
oPacket.Encode2(CWvsContext.ScriptProgressMessage.getVal());
oPacket.EncodeStr(sMsg);
return oPacket.getPacket();
}
Oh, and what's a "Catch Message"? I thought the only packets dealing with catch had 3 nType bytes for success, failed, and too strong?