Code: Select all
Variable["T001"] = Variable["T001"] + RandNumber(20);
Code: Select all
public static double RandNumber(double max)
{
double randomValue = UnityEngine.Random.Range(0f, (float)max);
ConsoleProDebug.LogToFilter($"Generated random number: {randomValue}, within range 0 to {max}.", "System");
return randomValue;
}
Lastly, just to add, there's an extra parenthesis at the end of this line in the documentation. I happened to notice it, so I’m mentioning it here: https://www.pixelcrushers.com/dialogue_ ... d_lua.html
Code: Select all
int myCoins = Lua.Run("return Variable['numberOfCoins']").AsInt);