set_hitbox_value

Overwrites a value from the hitbox grid for the specified attack and index. Default values are always 0.

ArgumentTypeDescription
attack:realThe attack to set the value of
hitbox:realThe hitbox to set the value of
index:realThe index of the attack grid to set the value of
value:realThe value to set

Example, called from fair.gml:

// sets the damage dealt by the first fair hitbox:
set_hitbox_value( AT_FAIR, 1, HG_DAMAGE, 10 );