I'm having a problem with the advanced "Show Choices" option. The script line I'm using in the event is:
$game_temp.num_choices = 8
I follow this with a series of conditional branches, each asking if actors 2-8 are in the group. If an actor is in the group it adds a "Show Choices" with that actors name as the only choice. This is repeated for seven actors based on if they are in the group or not. I tested it on a smaller scale simply using two "Show Choices" and each only having one choice entered, and that worked. Am I just having too many choices? The error code that comes up when I test is:
Script 'UMS' line 663: NoMethodError occured.
undefined method 'code' for nil:NilClass
Line 663 reads:
if @list.code == 102
Let me know if anymore details are needed. Thanks in advance for any help.
$game_temp.num_choices = 8
I follow this with a series of conditional branches, each asking if actors 2-8 are in the group. If an actor is in the group it adds a "Show Choices" with that actors name as the only choice. This is repeated for seven actors based on if they are in the group or not. I tested it on a smaller scale simply using two "Show Choices" and each only having one choice entered, and that worked. Am I just having too many choices? The error code that comes up when I test is:
Script 'UMS' line 663: NoMethodError occured.
undefined method 'code' for nil:NilClass
Line 663 reads:
if @list.code == 102
Let me know if anymore details are needed. Thanks in advance for any help.