Native referenceFiveM

CLEAR_RELATIONSHIP_BETWEEN_GROUPS

0x5E29243FB56FC6D4 PED
FUNCTION SIGNATURE
void CLEAR_RELATIONSHIP_BETWEEN_GROUPS(int relationship, Hash group1, Hash group2);
Property Value
Native Name CLEAR_RELATIONSHIP_BETWEEN_GROUPS
Hash 0x5E29243FB56FC6D4
Return Type void
Parameters relationship (int), group1 (Hash), group2 (Hash)

Description: ``` Clears the relationship between two groups. This should be called twice (once for each group).
Relationship types:
0 = Companion
1 = Respect
2 = Like
3 = Neutral
4 = Dislike
5 = Hate
255 = Pedestrians
(Credits: Inco)
Example:
PED::CLEAR_RELATIONSHIP_BETWEEN_GROUPS(2, l_1017, 0xA49E591C);
PED::CLEAR_RELATIONSHIP_BETWEEN_GROUPS(2, 0xA49E591C, l_1017);

Back to PED