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
| Parameter | Description |
|---|---|
| BaseObject | The entity that would propagate the rumor. Self transfers to Target, Target transfers to Self. |
| CompareType | Supported compare types: Equal (can transfer), NotEqual (cannot transfer). |
| F1 | Index of the rumor held by the BaseObject to check transferability (valid values: 0, 1, 2). |
Examples
| Description | BaseObject | Command | CompareType |
|---|---|---|---|
| Check if Self can transfer its rumor at index 0 to Target | Self | CanRumorTransfer | Equal |
| Check if Self cannot transfer its rumor at index 1 to Target | Self | CanRumorTransfer | NotEqual |
| Check if Target can transfer its rumor at index 0 to Self | Target | CanRumorTransfer | Equal |