Actually I don't know if it's the official way or even a sensible way, but if I want to store an integer onto an itemdesc item I do this:
Quote:
CProp skillreq i101
The cprop name of skillreq has an integer value of 101. The i means the value is integer.
But of course, you would only want to do this if this value is likely to change. For a constant, better to create a property in itemdesc:
skillreq 101
and then use some cfg file functions to read it.