Advertisement
007tropix

OnUpdate_Handler

Dec 8th, 2022
1,135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.47 KB | None | 0 0
  1. heroPBs[e.actorTurnTag-1].BackColor = Color.Yellow;
  2.             heroPBs[e.actorTurnTag - 1].Update();
  3.             battleLog.Text = (e.actorTurnTag + " is taking a turn");
  4.  
  5.             attackBtn.Enabled = true;
  6.             defendBtn.Enabled = true;
  7.             if (heroPBs[e.actorTurnTag - 1].Image != clericImage)
  8.             {
  9.                 specialBtn.Enabled = false;
  10.             }
  11.             else
  12.             {
  13.                 specialBtn.Enabled = true;
  14.             }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement