I was browsing RunUO forums and ran into this post from Voxpire. This is pretty cool stuff. Is this accomplished through wrapping a single line on the object property list to bypass the property limitation? It would be awesome to find a coding example of this!

RPK_CROWN_OF_RPK.png
 
in the GetProperties method add

Code:
var opl = new ExtendedOPL( list );

then add properties like so
Code:
 opl.Add("Stuff and things");

after all the properties are done add this
Code:
opl.Apply( );

you'll of course need VitaNex and add " using VitaNex.Network; " to the top of the script
 
Back