So I am scripting a trap that attracts the zombies(similar to the monkey bomb), and I was looking at the zombie_point_of_interest line in the monkey bomb script.
I believe the max_attract_dist is how much distance the zombies have to be away from the thing that you are tageting before the zombies gets attracted to it.(probably explained that poorly xD) and the num_attractors is how many zombies can be targeted to a certain ent at one time. but what does the third value mean, the long number?
So it says it is only used for monkies, so I guess I dont need it for what I am doing.
I think you still need it for a trap that attracts zombies, if the player throws it. It says it's used for monkeys in the air. If it's not a throwable trap you might still need this part:
Code Snippet
Plaintext
else { position = self add_poi_attractor( best_poi ); }
Since this code is found in _zombiemode_utility.gsc, used for all zombiemode scripts, I wouldn't edit that function. You might be able to call the create_zombie_point_of_interest() function (and related ones) on any throwable trap/item you're looking to use.
I'm not an expert though, maybe someone with more knowledge can correct me.