Re: has anyone had this problem?
in Lite, when the crons are generated for you at the end of the database creation routing you executed, you should have seen two crons generated, these were to be copied and added to cpanel typically...did you copy these? That would be the first question.
otherwise something like make an item called will potion in the MEDICAL type section of the database
and add something similar to this in itemuse.php
if($r['itmname'] == 'Will Potion')
{
mysql_query("UPDATE users SET will=maxwill WHERE userid=$userid",$c);
print "You drink the entire bottle of {$r['itmname']} and immediately feel like a million dollars.";
}
smaller amounts of increase could be will=will+(maxwill/100*25) WHERE will<maxwill (a 25% example)
not elegant if you are adding MANY itmes, but if it's the only item you are adding, it'll work.
I hope this was correct and helps.