Quote:
|
Originally Posted by BowhunterDT
just fired this up on a fresh install of 1.0 and got the following error
Scripts: Compiling C# scripts...failed (1 errors, 0 warnings)
- Error: Scripts\Custom\BagOfHolding.cs: CS0149: (line 82, column 16) Method na
me expected
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
|
This is the line 82 :
Code:
Hue = Utility.RandomMetalHue();
if your install is correct it should take it correctly or just change it for
ONE of those line :
Code:
Hue = Utility.RandomBlueHue();
Hue = Utility.RandomGreenHue();
Hue = Utility.RandomRedHue();
Hue = Utility.RandomYellowHue();
Hue = Utility.RandomNeutralHue();
that will fix it !