Make a new label (LChar2) and place it where required.
To duplicate a label simply use this
Code: ags
or add to existing code:
Code: ags
You would put this in Global Rep Exec.
To duplicate a label simply use this
if (player==me){
LChar.Text=("Me");
LChar2.Text=("Me");
}
else (player==him){
LChar.Text=("Him");
LChar2.Text=("Him");
}
}
or add to existing code:
if (player==me){
Button34.NormalGraphic=101; // Button sprite of character
LChar.Text=("Me");
LChar2.Text=("Me"); // Characters name on label
} else if(player==him){
Button34.NormalGraphic=106; // Button sprite of character
LChar.Text=("Him");
LChar2.Text=("Him"); // Characters name on label
}
}
You would put this in Global Rep Exec.