I tried update the scripts with less effort (just did a replace now 2 scripts are with some strange errors on sayto:

Basevendor.cs
Code:
  CS1502: Line 1154: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, int, string)' has some invalid arguments
  CS1503: Line 1154: Argument 3: cannot convert from 'int' to 'string'
  CS1502: Line 1159: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, int, string)' has some invalid arguments
  CS1503: Line 1159: Argument 3: cannot convert from 'int' to 'string'
  CS1502: Line 1165: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, int, string)' has some invalid arguments
  CS1503: Line 1165: Argument 3: cannot convert from 'int' to 'string'
  CS1502: Line 1185: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, string, params object[])' has some invalid arguments
  CS1503: Line 1185: Argument 2: cannot convert from 'int' to 'string'
  CS1502: Line 1220: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, int, string)' has some invalid arguments
  CS1503: Line 1220: Argument 3: cannot convert from 'int' to 'string'
  CS1502: Line 1275: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, int, string)' has some invalid arguments
  CS1503: Line 1275: Argument 3: cannot convert from 'int' to 'string'
  CS1502: Line 1280: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, int, string)' has some invalid arguments
  CS1503: Line 1280: Argument 3: cannot convert from 'int' to 'string'
  CS1502: Line 1307: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, string, params object[])' has some invalid arguments
  CS1503: Line 1307: Argument 2: cannot convert from 'int' to 'string'
  CS1502: Line 1313: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, int, string)' has some invalid arguments
  CS1503: Line 1313: Argument 3: cannot convert from 'int' to 'string'
  CS1502: Line 1329: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, int, string)' has some invalid arguments
  CS1503: Line 1329: Argument 3: cannot convert from 'int' to 'string'
  CS1502: Line 174: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, string, params object[])' has some invalid arguments
  CS1503: Line 174: Argument 2: cannot convert from 'int' to 'string'
  CS1502: Line 210: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, string, params object[])' has some invalid arguments
  CS1503: Line 210: Argument 2: cannot convert from 'int' to 'string'
  CS1502: Line 215: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, string, params object[])' has some invalid arguments
  CS1503: Line 215: Argument 2: cannot convert from 'int' to 'string'
  CS1502: Line 268: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, int, string)' has some invalid arguments
  CS1503: Line 268: Argument 3: cannot convert from 'int' to 'string'

BulkOrderSystem.cs
Code:
  CS1502: Line 479: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, int, string)' has some invalid arguments
  CS1503: Line 479: Argument 3: cannot convert from 'int' to 'string'
  CS1502: Line 487: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, int, string)' has some invalid arguments
  CS1503: Line 487: Argument 3: cannot convert from 'int' to 'string'
  CS1502: Line 497: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, int, string)' has some invalid arguments
  CS1503: Line 497: Argument 3: cannot convert from 'int' to 'string'
  CS1502: Line 503: The best overloaded method match for 'Server.Mobile.SayTo(Server.Mobile, int, string)' has some invalid arguments
  CS1503: Line 503: Argument 3: cannot convert from 'int' to 'string'

I notice its because on my bkp (old script folder) in place of
SayTo(from, 1079976);

was swapped to

this.SayTo(from, 1079976, 0x3B2);

why that change? why the 0x3B2 ? isn't it already defined on speechhue?
 
Back