Hey all, I'm in the midst of transferring all my old scripts that were RunUO 2.0 to run with ServUO Pub 54 and the latest client. I'm running into errors in regards to the Tile and StaticTile and whatnot and not sure what's going...probably Tile got changed to something else.. Anybody have any ideas?

-Alch



Code:
--------------------------------------------------------------------------------

ServUO - [http://www.servuo.com] Version 0.5, Build 5987.26572
Publish 54
Core: Optimizing for 4 64-bit processors
RandomImpl: CSPRandom (Software)
Core: Loading config...
Scripts: Compiling C# scripts...Failed with: 2 errors, 37 warnings

+ Custom Systems/Apiculture/BeeHiveHelper.cs:
    CS0246: Line 156: The type or namespace name 'Tile' could not be found (are
you missing a using directive or an assembly reference?)
    CS0029: Line 156: Cannot implicitly convert type 'Server.StaticTile[]' to 'T
ile[]'
+ Custom Systems/BurialSystem/GraveShovel.cs:
    CS0246: Line 69: The type or namespace name 'Tile' could not be found (are y
ou missing a using directive or an assembly reference?)
    CS0246: Line 146: The type or namespace name 'Tile' could not be found (are
you missing a using directive or an assembly reference?)
    CS0029: Line 146: Cannot implicitly convert type 'Server.StaticTile[]' to 'T
ile[]'
    CS0246: Line 150: The type or namespace name 'Tile' could not be found (are
you missing a using directive or an assembly reference?)
Scripts: One or more scripts failed to compile or no script files were found.
- Press return to exit, or R to try again.
 
For the BeehiveHelper I'd say StaticTile, GraveShovel is probably LandTile but without seeing the scripts, its kind of hard to tell. Shovel could use both.
 
Back