Remove territory points
Last updated
Removes points from a faction in a territory from an external script
exports["drugs_creator"]:removeTerritoryPoints(territory, job, amount)territory
string
Territory name, or "*" to target all territories
job
string
Job/gang name to remove points from, or "*" to target all configured factions
amount
int
Number of points to remove (must be > 0)
-- Remove 5 points from "vagos" in "RANCHO"
exports["drugs_creator"]:removeTerritoryPoints("RANCHO", "vagos", 5)Last updated