Skip to content

Commit

Permalink
chore: test build
Browse files Browse the repository at this point in the history
  • Loading branch information
Whipstickgostop committed Sep 7, 2024
1 parent 4309e85 commit 18d5aaf
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions streamerbot/3.api/3.csharp/_methods/core/actions/RunAction.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
---
description: Run an action, by name<br>Returns a boolean indicating whether the operation was successful.
description: |
Run an action, by name
Returns a boolean indicating whether the operation was successful.
example: |
using System;
public class CPHInline
{
public bool Execute()
{
//Specify name of action you want to run
// Specify name of action you want to run
string actionName = "Streamer.bot Docs Action";
//Run Action (in current queue)
// Run Action (in current queue)
CPH.RunAction(actionName);
CPH.RunAction(actionName, true);
//Run Action in it's own queue
// Run Action in it's own queue
CPH.RunAction(actionName, false);
return true;
}
}
Expand Down

0 comments on commit 18d5aaf

Please sign in to comment.