crb
02-18-2010, 11:44 AM
I am trying my hand at modifying a script and I can't figure a few things out.
targ = find_target
echo targ
beast = @target_list.index(targ)
This is working within the megatron script. The echo works appropriately, so I know the find_target function is working and I know targ is being defined. I also know that target_list contains a value equal to [i]targ]/i]
Beast however does not work, it is nil. Instead of returning an array index number.
Second problem.
echo targ //prints kobold
echo @target_list[0] //prints kobold
if @target_list[0] == targ then
message("Match")
else
message("No Match");
end
It gives me No Match, why?
I think I must be missing some syntax rule for working with arrays in ruby.
targ = find_target
echo targ
beast = @target_list.index(targ)
This is working within the megatron script. The echo works appropriately, so I know the find_target function is working and I know targ is being defined. I also know that target_list contains a value equal to [i]targ]/i]
Beast however does not work, it is nil. Instead of returning an array index number.
Second problem.
echo targ //prints kobold
echo @target_list[0] //prints kobold
if @target_list[0] == targ then
message("Match")
else
message("No Match");
end
It gives me No Match, why?
I think I must be missing some syntax rule for working with arrays in ruby.