Trader City Safe zones offset with Sauerland

Gilley

New Member
Hey guys, Just wondering what i can do to fix this issue, The safe zone is just shifted over and not actually on the traders, Im using AGN
 
ur_arma_folder\MPMissions\ur_server_mission.pbo* or folder with the server files

Find and edit mission.sqm
*If it's .pbo file, unpack it with pbo manager or other tool and pack again after editing

My fixed BanditVendor example:

Position of the vendor marker
Code:
        class Item19
        {
            position[]={16890.479,300.05701,1778.1558};
            name="BanditVendor";
            text="Bandit Vendor";
            type="mil_dot";
            colorName="ColorRed";
        };

Position of the vendor (AGN safe) zone
Code:
        class Item3
        {
            position[]={16890.479,300.05701,1778.1558};
            activationBy="WEST";
            repeating=1;
            interruptable=1;
            age="UNKNOWN";
            name="Bandit";
            expCond="(player distance Bandit) < 50;";
            expActiv="[""Bandit Camp"",true,""enter""] spawn player_traderCity;";
            expDesactiv="[""Bandit Camp"",true,""leave""] spawn player_traderCity;";
            class Effects
            {
            };
 
Last edited:
Back
Top