Activities & Missions Spawning shops in new areas

So I've been trying to spawn new food shops, made entries in shops sr2 city xtbl, pairs of triggers in city triggers, and the relevant navpts in city navpoints, and [pairs of triggers in shops sr2 city xtbl and coords for the trigger.xtbl] in city.cts
but when I access them ingame they somehow come up as car dealerships with generic car models available.
Do I need a clerk for them or is there more to this? Put them near other food stores in shops sr2 city.xtbl?

Code:
    <Shop>
        <Name>RL Phuc</Name>
        <Chain>Phuc_Mi_Phuc_Yu</Chain>
        <Ownership_Trigger>shops_sr2_city_$RL_phuc_own</Ownership_Trigger>
        <Flags>
            <Flag>no_hostile_clerk</Flag>
            </Flags>
        <_Editor>
            <Category>Entries</Category>
            </_Editor>
        <Purchase_Start_Navpoint>shops_sr2_city_$RL_phuc_cam1</Purchase_Start_Navpoint>
        <Purchase_End_Navpoint>shops_sr2_city_$RL_phuc_cam2</Purchase_End_Navpoint>
        <Exterior_Elements>
            <Outside_Trigger>shops_sr2_city_$RL_phuc_store</Outside_Trigger>
            <Normal_Viewing_Navp>shops_sr2_city_$RL_phuc_view</Normal_Viewing_Navp>
            <Large_Viewing_Navp>shops_sr2_city_$RL_phuc_view</Large_Viewing_Navp>
            </Exterior_Elements>
        </Shop>
    <Shop>
        <Name>RL Freckle Bitchs</Name>
        <Chain>Freckle_Bitch's</Chain>
        <Flags>
            <Flag>no_hostile_clerk</Flag>
            </Flags>
        <_Editor>
            <Category>Entries</Category>
            </_Editor>
        <Ownership_Trigger>shops_sr2_city_$RL_fb_own</Ownership_Trigger>
        <Exterior_Elements>
            <Outside_Trigger>shops_sr2_city_$RL_fb_store</Outside_Trigger>
            <Normal_Viewing_Navp>shops_sr2_city_$RL_fb_cam1</Normal_Viewing_Navp>
            <Large_Viewing_Navp>shops_sr2_city_$RL_fb_cam2</Large_Viewing_Navp>
            </Exterior_Elements>
        <Purchase_Start_Navpoint>shops_sr2_city_$RL_fb_cam1</Purchase_Start_Navpoint>
        <Purchase_End_Navpoint>shops_sr2_city_$RL_fb_cam2</Purchase_End_Navpoint>
        </Shop>
FYI this is in front of Tee N Ay in Rebadeaux
thought it would be fitting and convenient and since it had its own big carpark
(also wonder if any line is needed to allow the purchase of food from a vehicle)

UPDATE 1 :
Code:
$Navpoint:    "shops_sr2_city_$RL_phuc_own"
$Type:        "ground"
$Pos:            <-56.221180 -3.809600 -222.135520>
$Orient:        [-0.489014]

$Navpoint:    "shops_sr2_city_$RL_phuc_store"
$Type:        "ground"
$Pos:            <-60.051180 -3.809680 -225.820520>
$Orient:        [-0.591574]

$Navpoint:    "shops_sr2_city_$RL_phuc_view"
$Type:        "floating"
$Pos:            <-58.051180 -1.809680 -220.820520>
$Orient:        [<-0.791522 0 -0.611141> <0.101865 0.986011 -0.131931> <0.602592 -0.166681 -0.780449]

$Navpoint:    "shops_sr2_city_$RL_phuc_cam1"
$Type:        "floating"
$Pos:            <-60.501260 -3.009680 -222.309000>
$Orient:        [<0.612272 0 0.790647> <-0.173874 0.975520 0.134647> <-0.771292 -0.219913 0.597284>]

$Navpoint:    "shops_sr2_city_$RL_phuc_cam2"
$Type:        "floating"
$Pos:            <-65.501260 3.109680 -230.309000>
$Orient:        [<0.867999 0 0.496567> <-0.134373 0.962691 0.234884> <-0.478040 -0.270605 0.835614>]

$Navpoint:    "shops_sr2_city_$RL_fb_own"
$Type:        "ground"
$Pos:            <-45.009310 -3.808210 -217.135520>
$Orient:        [-0.489014]

$Navpoint:    "shops_sr2_city_$RL_fb_store"
$Type:        "ground"
$Pos:            <-50.974310 -3.678880 -205.780470>
$Orient:        [-0.591574]

$Navpoint:    "shops_sr2_city_$RL_fb_cam1"
$Type:        "floating"
$Pos:            <-42.621410 -2.826250 -218.516290>
$Orient:        [<0.612272 0 0.790647> <-0.173874 0.975520 0.134647> <-0.771292 -0.219913 0.597284>]

$Navpoint:    "shops_sr2_city_$RL_fb_cam2"
$Type:        "floating"
$Pos:            <-43.051180 8.009680 -245.516290>
$Orient:        [<0.867999 0 0.496567> <-0.134373 0.962691 0.234884> <-0.478040 -0.270605 0.835614>]

For some reason at first both were able to load, but after little bit more working around and trying to add a company of gyros to Barrio opposite the Hospital it started crashing when loading the map
then I removed the barrio gyros parts and end up with the Phuc Yu coordinates here and still it won't work, just the Freckle bitchs entries themselves work when I delete phuc yu's entries...
 
Last edited:
How your "$Trigger action" looks like? (not navpoints)
If it says:
Code:
$Trigger action:        "car dealership"
change it to
Code:
$Trigger action:        "freckle bitches"
might do the trick.
 
Yes I did that too, maybe there were some other spawnpoints outside TNA which conflicted with the point I used
thx
 
Back
Top