04-26-2011, 08:31 PM
I'm not sure if it's worth a new thread or anything but has anyone who's an active member here downloaded my recent event systems? Okay, remember how my event system settings would consist of CONSTANTS which looked like this:
Examples:
I'm thinking about housing all of my event system settings in a hash like this:
Example:
Is this a good idea?
Code:
PK8_(EventSystemShortNameHere)_(Setting) = "blahblah"
Code:
PK8_AOPH_PID = 50
I'm thinking about housing all of my event system settings in a hash like this:
Code:
PK8_(EventSystemShortNameHere) = {}
PK8_(EventSystemShortNameHere)['setting'] = value
Code:
PK8_AOPH = {}
PK8_AOPH['a_pid'] = 50
Is this a good idea?