I am attempting to create a table that will output something of the following:
"superadmin"
"prop_physics" = 500
"ragdolls" = 10
"admin"
"prop_physics" = 300
"ragdolls" = 5
"user"
"prop_physics" = 50
"ragdolls" = 0
This would obviously be a table consisting of keys corresponding to group names and values which are equivelent to an assosciative arrays of class names and values.
This is my attempt at this:
Limits = {
"superadmin" = {
"prop_physics" = 1000,
"ragdolls" = 10
},
"admin" = {
"prop_physics" = 500,
"ragdolls" = 10
}
"user" = {
"prop_physics" = 50,
"ragdolls" = 0
}
}
Unfortunately, it does not work. Any guidance on how I would do this is most appreciated.