--EnableChatDialogComponent --SetChatDialogComponentProperty(self_id, contact_id, property_name, property_value_type, property_value, component_id...) --[[ -- //! 1 - self_id stirng -- //! 2 - contact_id string -- //! 3 - property name string -- //! 4 - property value type string -- //! 5 - property value [string | int | bool] -- //! 6 - component_id string -- // ..... .. ---- //! n - component_id string -- /*! property value type 目前可能是 String INT BOOL*/ --]] function lua_FileTransmissionEnableCheck(self_id, self_site, contact_id, contact_site) retValue = false; if contact_site ~= 'htyahooo' then retValue = true; else retValue = false; end return retValue; end