Fail to compile for june update

is this maintaned still, and if so, when for update to be released?

thanks.

Just replace:

  1. `.Args[0]` with `.GetString(0)`
  2. `.Args[1]` with `.GetString(1)`
iNjA1xHsmBeMUSE.jpg antonescupaul87

Just replace:

  1. `.Args[0]` with `.GetString(0)`
  2. `.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())

Iq21dlQIlYnlQTl.jpg 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