Been messing with converting over an Old RunUO script I have with over 200+ Monster Statuettes and Im having a problem trying to add them to the MonsterStatuettes.cs File as I need to enter them as TextStrings not Clilcs but I'm not quiet sure how or if it's even possible to get around using Clilcs for such a script. I know for custom RewardRobes Custom Clilcs needed added.
Code:
Errors:
+ Items/Decorative/MonsterStatuette.cs:
CS1502: Line 136: The best overloaded method match for 'Server.Items.Monster
StatuetteInfo.MonsterStatuetteInfo(int, int, int)' has some invalid arguments
CS1503: Line 136: Argument 1: cannot convert from 'string' to 'int'
CS1503: Line 136: Argument 2: cannot convert from 'Server.Items.MonsterStatu
etteType' to 'int'
Scripts: One or more scripts failed to compile or no script files were found.
Code:
DarkFather,
PlatinumDragon,
//Custom
Male //Line 70
}
Code:
/* Dark Father */ new MonsterStatuetteInfo(1155748, 0x2632, 0x165),
/* Platinum Dragon */ new MonsterStatuetteInfo(1155745, 0x2635, new int[] { 0x2C1, 0x2C3 }),
/* Male */ new MonsterStatuetteInfo( "Male", MonsterStatuetteType.Male, 340), // Line 136