How do recup a fortCharacter to compare a position

you could just use the distance or distancexy functions to return a float which is the distance in centimeters that the two vectors are from eachother

here’s an example

@editable Prop :creative_prop = creative_prop{}

GetDistance(Prop:creative_prop, FortCharacter:fort_character):logic=
    PropLoc := Prop.GetTransform().Translation
    FCharLoc := FortCharacter.GetTransform().Translation
    Threshold := 1200.0
    Dist := Distance(PropLoc, FCharLoc)
    if(Dist >= threshold):
        return true
   return false