# Modify Player Property (Real)

Grammar — Modify player p prop: operation|Add/Subtract/Set To val
FlagsNative | Action

Modifies player properties such as supplies limit as a real.

# Arguments

Returns — void

native void PlayerModifyPropertyFixed(
	int inPlayer,
	int inProp,
	int inOper,
	fixed inVal,
);

Category: Player / Player Settings

# Examples

# mods/heroesbrawlmods/brawlmapmods/coop/escapefrombraxis.stormmod

LibPEB1.galaxy

// L3919
PlayerModifyPropertyFixed(lv_itPlayerIndex, c_playerPropDamageDealtPercent, c_playerPropOperSetTo, 0.0)
// L3920
PlayerModifyPropertyFixed(lv_itPlayerIndex, c_playerPropDamageTakenPercent, c_playerPropOperSetTo, 0.0)
// L4134
PlayerModifyPropertyFixed(lv_itPlayerIndex, c_playerPropDamageDealtPercent, c_playerPropOperSetTo, 0.0)
// L4135
PlayerModifyPropertyFixed(lv_itPlayerIndex, c_playerPropDamageTakenPercent, c_playerPropOperSetTo, 0.0)

# mods/starcoop/starcoop.sc2mod

LibCOMI.galaxy

// L14993
PlayerModifyPropertyFixed(EventPlayer(), c_playerPropSuppliesUsed, c_playerPropOperAdd, lv_supply)
// L15024
PlayerModifyPropertyFixed(EventPlayer(), c_playerPropSuppliesUsed, c_playerPropOperSubtract, lv_supply)

# mods/starcoop/starcoop.sc2mod

LibCOMU.galaxy

// L13181
PlayerModifyPropertyFixed(lv_indexPlayer, c_playerPropSuppliesUsed, c_playerPropOperSetTo, lv_combinedSupply)

# mods/warcoop/warcoopdata.sc2mod

WarCoopData.galaxy

// L2468
PlayerModifyPropertyFixed(lv_player, c_playerPropSuppliesMade, c_playerPropOperSetTo, 1000.0)
// L2469
PlayerModifyPropertyFixed(lv_player, c_playerPropSuppliesLimit, c_playerPropOperSetTo, 1000.0)
// L2615
PlayerModifyPropertyFixed(1, c_playerPropSuppliesLimit, c_playerPropOperSetTo, 200.0)