How would I link a bool to an entity?
For example, to set the player's id with a bool, I'd do
PHP Code:
new b_IsCool[33]
b_IsCool[id] = true
What would I need to make the size of the array for if I was doing this?
I'd need something like this
PHP Code:
new b_DeagleIsLarger[111] // What would I set for the array size here?
b_DeagleIsLarger[e_Deagle] = true // I assume I'd just put the entity id in the brackets here.
Any help is appreciated.
__________________