is this maintaned still, and if so, when for update to be released?
thanks.
is this maintaned still, and if so, when for update to be released?
thanks.
Just replace:
antonescupaul87
Just replace:
- `.Args[0]` with `.GetString(0)`
- `.Args[1]` with `.GetString(1)`
tried that fix, got this in return, did not work. did I miss something?
Error while compiling ItemCostCalculator: Cannot implicitly convert type 'ConsoleSystem.Arg' to 'System.Index' | Line: 389, Pos: 50
Line 389 , 390 should be:
var language = arg.Args.Length > 1 ? arg.GetString(1).ToLower() : null;
switch (arg.GetString(0).ToLower())
Lorenzo
Line 389 , 390 should be:
var language = arg.Args.Length > 1 ? arg.GetString(1).ToLower() : null;
switch (arg.GetString(0).ToLower())
Thank you my friend, compiled & working now.
Thank you for the fix