# Modify Creep

Grammaradd|Add/Remove permanent|Normal/Permanent creep at position, with radius radius
FlagsNative | Action

Add or remove creep around a point. This creep can be normal creep that will receed without a nearby generator, or permanent creep which will remain until removed with a trigger.

# Arguments

Returns — void

native void CreepModify(
	point inPos,
	fixed inRadius,
	bool inAdd,
	bool inPermanent,
);

Category: Environment / Creep And Power

# Examples

# campaigns/liberty.sc2campaign

MapScript.galaxy

// L692
CreepModify(UnitGetPosition(UnitLastCreated()), 10.0, true, false)
// L570
CreepModify(RegionGetCenter(RegionFromId(11)), 10.0, true, true)
// L571
CreepModify(RegionGetCenter(RegionFromId(12)), 10.0, true, true)
// L572
CreepModify(RegionGetCenter(RegionFromId(16)), 10.0, true, true)
// L573
CreepModify(RegionGetCenter(RegionFromId(19)), 10.0, true, true)
// L574
CreepModify(RegionGetCenter(RegionFromId(45)), 10.0, true, true)
// L575
CreepModify(RegionGetCenter(RegionFromId(47)), 10.0, true, true)
// L576
CreepModify(RegionGetCenter(RegionFromId(48)), 10.0, true, true)
// L630
CreepModify(RegionGetCenter(RegionFromId(18)), 15.0, true, true)
// L631
CreepModify(RegionGetCenter(RegionFromId(19)), 15.0, true, true)
// L632
CreepModify(RegionGetCenter(RegionFromId(25)), 15.0, true, true)
// L633
CreepModify(RegionGetCenter(RegionFromId(13)), 6.0, true, true)
// L634
CreepModify(RegionGetCenter(RegionFromId(14)), 6.0, true, true)
// L635
CreepModify(RegionGetCenter(RegionFromId(15)), 6.0, true, true)
// L381
CreepModify(RegionGetCenter(lp_area), 10.0, false, false)
// L4686
CreepModify(PointFromId(261), 50.0, false, false)
// L5134
CreepModify(PointFromId(511), 8.0, true, true)
// L5135
CreepModify(PointFromId(668), 8.0, true, true)
// L5136
CreepModify(PointFromId(684), 8.0, true, true)
// L5137
CreepModify(PointFromId(673), 8.0, true, true)
// L5138
CreepModify(PointFromId(701), 8.0, true, true)
// L4702
CreepModify(PointFromId(1907), 32.0, false, false)
// L4703
CreepModify(PointFromId(1907), 32.0, false, true)
// L1105
CreepModify(PointFromId(8), 10.0, true, true)
// L1106
CreepModify(PointFromId(9), 10.0, true, true)
// L1107
CreepModify(PointFromId(122), 10.0, true, true)
// L1108
CreepModify(PointFromId(124), 10.0, true, true)
// L1109
CreepModify(PointFromId(125), 10.0, true, true)
// L1110
CreepModify(PointFromId(127), 10.0, true, true)
// L1111
CreepModify(PointFromId(128), 10.0, true, true)
// L1112
CreepModify(PointFromId(129), 10.0, true, true)
// L1113
CreepModify(PointFromId(132), 10.0, true, true)
// L1114
CreepModify(PointFromId(134), 10.0, true, true)
// L416
CreepModify(RegionGetCenter(RegionFromId(18)), 2.0, false, false)
// L423
CreepModify(RegionGetCenter(RegionFromId(19)), 3.0, false, false)
// L430
CreepModify(RegionGetCenter(RegionFromId(17)), 4.0, false, false)
// L437
CreepModify(RegionGetCenter(RegionFromId(20)), 8.0, false, false)
// L823
CreepModify(PointFromId(1767), 10.0, true, true)
// L824
CreepModify(PointFromId(1870), 10.0, true, true)
// L825
CreepModify(PointFromId(1889), 10.0, true, true)
// L826
CreepModify(PointFromId(1890), 10.0, true, true)
// L827
CreepModify(PointFromId(1891), 10.0, true, true)
// L828
CreepModify(PointFromId(1892), 10.0, true, true)
// L843
CreepModify(UnitGetPosition(auto0098B004_var), 10.0, true, true)
// L934
CreepModify(PointFromId(215), 10.0, true, true)
// L935
CreepModify(PointFromId(216), 10.0, true, true)
// L936
CreepModify(PointFromId(217), 10.0, true, true)
// L937
CreepModify(PointFromId(349), 10.0, true, true)
// L938
CreepModify(PointFromId(350), 10.0, true, true)
// L939
CreepModify(PointFromId(351), 10.0, true, true)
// L940
CreepModify(PointFromId(352), 10.0, true, true)
// L941
CreepModify(PointFromId(353), 10.0, true, true)
// L942
CreepModify(PointFromId(355), 10.0, true, true)
// L995
CreepModify(PointFromId(55), 10.0, true, true)
// L8892
CreepModify(PointFromId(1708), 15.0, false, false)
// L9341
CreepModify(PointFromId(1642), 15.0, false, false)
// L9342
CreepModify(PointFromId(1643), 15.0, false, false)
// L9343
CreepModify(PointFromId(1644), 15.0, false, false)
// L4442
CreepModify(RegionGetCenter(RegionFromId(20)), 25.0, true, false)
// L4804
CreepModify(UnitGetPosition(UnitFromId(912)), 8.0, true, false)
// L4805
CreepModify(UnitGetPosition(UnitFromId(929)), 25.0, true, false)
// L5244
CreepModify(PointFromId(230), 25.0, true, false)
// L5245
CreepModify(PointFromId(230), 5.0, false, false)
// L5316
CreepModify(RegionGetCenter(RegionFromId(20)), 25.0, true, false)
// L561
CreepModify(PointFromId(5), 10.0, true, true)
// L562
CreepModify(PointFromId(7), 10.0, true, true)
// L563
CreepModify(PointFromId(94), 10.0, true, true)
// L564
CreepModify(PointFromId(116), 10.0, true, true)
// L565
CreepModify(PointFromId(133), 10.0, true, true)
// L566
CreepModify(PointFromId(169), 10.0, true, true)
// L567
CreepModify(PointFromId(176), 10.0, true, true)
// L568
CreepModify(PointFromId(187), 10.0, true, true)
// L569
CreepModify(PointFromId(188), 10.0, true, true)
// L570
CreepModify(PointFromId(189), 10.0, true, true)
// L381
CreepModify(RegionGetCenter(lp_area), 10.0, false, false)
// L4686
CreepModify(PointFromId(261), 50.0, false, false)
// L5134
CreepModify(PointFromId(511), 8.0, true, true)
// L5135
CreepModify(PointFromId(668), 8.0, true, true)
// L5136
CreepModify(PointFromId(684), 8.0, true, true)
// L5137
CreepModify(PointFromId(673), 8.0, true, true)
// L5138
CreepModify(PointFromId(701), 8.0, true, true)
// L4702
CreepModify(PointFromId(1907), 32.0, false, false)
// L4703
CreepModify(PointFromId(1907), 32.0, false, true)
// L1105
CreepModify(PointFromId(8), 10.0, true, true)
// L1106
CreepModify(PointFromId(9), 10.0, true, true)
// L1107
CreepModify(PointFromId(122), 10.0, true, true)
// L1108
CreepModify(PointFromId(124), 10.0, true, true)
// L1109
CreepModify(PointFromId(125), 10.0, true, true)
// L1110
CreepModify(PointFromId(127), 10.0, true, true)
// L1111
CreepModify(PointFromId(128), 10.0, true, true)
// L1112
CreepModify(PointFromId(129), 10.0, true, true)
// L1113
CreepModify(PointFromId(132), 10.0, true, true)
// L1114
CreepModify(PointFromId(134), 10.0, true, true)
// L416
CreepModify(RegionGetCenter(RegionFromId(18)), 2.0, false, false)
// L423
CreepModify(RegionGetCenter(RegionFromId(19)), 3.0, false, false)
// L430
CreepModify(RegionGetCenter(RegionFromId(17)), 4.0, false, false)
// L437
CreepModify(RegionGetCenter(RegionFromId(20)), 8.0, false, false)
// L823
CreepModify(PointFromId(1767), 10.0, true, true)
// L824
CreepModify(PointFromId(1870), 10.0, true, true)
// L825
CreepModify(PointFromId(1889), 10.0, true, true)