ParentVarAdd/ja

From M.U.G.E.N Wiki

Jump to: navigation, search


This page is in progress of being translated to ja. You can help translating it or go to another language version that follows:



State Controller: ParentVarAdd

If the player is a helper, adds to one of the player's parent's working variables. Either a float variable or an int variable can be added to by this controller. If the player is not a helper, this controller does nothing.

Required parameters (int version):
v = var_no (int)
var_no should evaluate to an integer between 0 and 59.
value = int_expr (int)
int_expr is the value to add to the int variable indicated by var_no.
Required parameters (float version):
fv = var_no (int)
var_no should evaluate to an integer between 0 and 39.
value = float_expr (float)
float_expr is the value to add to the float variable indexed by var_no.
Optional parameters:
none in both cases
Alternate syntax:

var(var_no) = int_expr (int version)

fvar(var_no) = float_expr (float version)

Notes:

Due to historical reasons, note that the alternate VarAdd syntax listed above matches neither the syntax for variable assignment within an expression, nor the syntax for variable addition within an expression.

If you have placed P2 in a custom state through a successful hit, do not use variable assignment within the custom states. Otherwise, you will overwrite P2's parent's variables, which can cause unintended malfunction of the opponent player.

Example:
none


Personal tools