Please, could you add OnHostMSO event? I believe it would be as simple as this:
in managePacket.cs :
and in readCfg.cs just adding :
in managePacket.cs :
<?php
void managePacket(InSim.Decoder.MSO mso)
{
// Check for host messages
if (mso.UserType == 0)
{
newCfg.executeFunction("OnHostMSO", mso.message );
}
}
?>
<?php
eventAllowed["OnHostMSO"] = new eventProperties("$text");
?>