Run Python
From UBot Studio
(Difference between revisions)
(Created page with "Run Python is a Developer Command for Developer Edition license holders only. This command will run python commands within UBot Studio. == Example == ...") |
Revision as of 20:20, 13 October 2014
Run Python is a Developer Command for Developer Edition license holders only.
This command will run python commands within UBot Studio.
Example
run python("import clr
clr.AddReference(\"System.Windows.Forms\")
from System.Windows.Forms import MessageBox
MessageBox.Show(\"Hello World\")")
Running the script will produce an alert with the words "Hello World" displayed within it.
