Compiled perfectly. Thanks for the help.
Quick question: I had previously done
PHP Code:
#define MAX_REASONS 7
new const sz_Reasons[MAX_REASONS] = {
"Wifebeater",
"Robber",
"Bank Heister",
"Hitman",
"Rapist",
"Computer Hacker",
"Identity Thief"
}
But it gave me an error saying initialization data exceeds declared size, and I also tried defining it as 8. So I changed it to
PHP Code:
#define MAX_REASONS 7
new const sz_Reasons[MAX_REASONS][] = {
"Wifebeater",
"Robber",
"Bank Heister",
"Hitman",
"Rapist",
"Computer Hacker",
"Identity Thief"
}
Is that correct, the double array? Or should I change it to something different?
__________________