-
Notifications
You must be signed in to change notification settings - Fork 20
Miscelaneous
AnkhHeart edited this page Feb 25, 2018
·
3 revisions
int GetRandom(int min, int max)result = Parent.GetRandom(0,100)string GetStreamingService()result = Parent.GetStreamingService()string GetChannelName()result = Parent.GetChannelName()string GetCurrencyName()result = Parent.GetCurrencyName()void Log(string scriptName, string message)result = Parent.Log(ScriptName,"Look mom! I am logging!")bool PlaySound(string filePath, float volume)result = Parent.PlaySound("C:\airhorn.mp3",1.0)PythonDictionary<int,string> GetQueue(int max)result = Parent.GetQueue(10)
for obj in result :
Parent.Log(ScriptName,obj.Value)