#How would I make it possible to ride players with the "rideable" tag?

1 messages · Page 1 of 1 (latest)

sharp star
#

I tried this and it does not work, any ideas?

            "minecraft:rideable": {"interactions": [{"on_interact": {"filters": {"all_of": [{ "test": "has_tag", "subject": "self", "operator": "equals", "value": "rideable" }]}},
            "seat_count": 2,
                "family_types": [
                    "parrot_tame", "player"
                ],
                "pull_in_entities": true,
                "seats": [
                    {
                        "position": [
                            0.4,
                            -0.2,
                            -0.1
                        ],
                        "min_rider_count": 0,
                        "max_rider_count": 0,
                        "lock_rider_rotation": 0
                    },
                    {
                        "position": [
                            -0.4,
                            -0.2,
                            -0.1
                        ],
                        "min_rider_count": 1,
                        "max_rider_count": 2,
                        "lock_rider_rotation": 0
                    }
                ]
        }
    ]
                
                
                
            },
sharp ibex