- Joined
- Oct 17, 2012
- Messages
- 394
- Reaction score
- 98
- First Language
- Español
- Primarily Uses
- RMVXA
Hello, I'm using Victor Target Arrow's script and I'm having a trouble when I use a skill target the user itself. The next error is presented.
And this is the part of the script is showing the problem (the second line is the 451 line the error is refering to)
Does someone know a way to fix this problem? Thank you
And this is the part of the script is showing the problem (the second line is the 451 line the error is refering to)
Code:
def draw_tartge_info(align)
if @action.for_one?
@help_window.set_target_text(target(0), align)
elsif @action.for_all? && @action.for_random?
text = help_info[:random_enemies] if @action.for_opponent?
text = help_info[:random_actors] if @action.for_friend?
text = help_info[:random_target] if @action.for_all_targets?
@help_window.set_info_text(text, align)
elsif @action.for_all? && !@action.for_random?
text = help_info[:all_enemies] if @action.for_opponent?
text = help_info[:all_actors] if @action.for_friend?
text = help_info[:all_target] if @action.for_all_targets?
@help_window.set_info_text(text, align)
end
end
end

