Skip to main content

Condition_CanRumorTransfer

Description

Checks whether the BaseObject entity can transfer the rumor at the specified index to the other entity (Self transfers to Target, Target transfers to Self).

Note

A maximum of 3 rumors can be held, so only index values 0, 1, and 2 are valid. Returns false for any other index.

Parameters

ParameterDescription
BaseObjectThe entity that would propagate the rumor. Self transfers to Target, Target transfers to Self.
CompareTypeSupported compare types: Equal (can transfer), NotEqual (cannot transfer).
F1Index of the rumor held by the BaseObject to check transferability (valid values: 0, 1, 2).

Examples

DescriptionBaseObjectCommandCompareType
Check if Self can transfer its rumor at index 0 to TargetSelfCanRumorTransferEqual
Check if Self cannot transfer its rumor at index 1 to TargetSelfCanRumorTransferNotEqual
Check if Target can transfer its rumor at index 0 to SelfTargetCanRumorTransferEqual