Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

AI script gone wrong please help?

Asked by 9 years ago

I am making a zombie AI but it seems that when it kills me it no longer chases anyone. Please help as I can not figure it out.

But when it touches my torso it begins chasing me again!

Here is the script:

01torso = script.Parent.Torso
02range = 50
03armDmg=5
04torDmg=10
05target = nil
06 
07function findNearestTarget()
08    plrs = game.Players:GetChildren()
09    for i,plr in ipairs (plrs) do
10        if plr.Character ~= nil then
11            if plr.Character:findFirstChild("Humanoid") and plr.Character.Humanoid.Health>0 then
12           tor = plr.Character.Torso
13            if target ~= nil then
14             if(torso.Position-tor.Position).magnitude < (torso.Position-target.Torso.Position).magnitude then
15                print(plr.Name.." is in range")
View all 55 lines...

1 answer

Log in to vote
1
Answered by 9 years ago

Please provide explanation with your answers. Simply posting code does not spread knowledge of integral scripting processes which helps people understand the logic and reasoning behind your answer.

Okay, I'll go in depth a bit more.

So, first, let's change our variables to local, so we're not storing unnecessary data in the script's function environment.

01-- Let's make some local variables
02 
03local torso = script.Parent.Torso
04local range = 50
05local armDmg = 5
06local torDmg = 10
07local target = nil
08 
09function findNearestTarget()
10 
11    -- Let's also use "GetPlayers()" instead of "GetChildren()"
12    -- Notice how we make it a local variable.
13 
14    local plrs = game.Players:GetPlayers()
15 
View all 59 lines...

Now, there are a few things we should elaborate on.

1: Comparing positions

We see in your code that we have something like:

1if (torso.Position-tor.Position).Magnitude < (torso.Position-target.Torso.Position).Magnitude then
2    -- ...
3end

Now, here, we want to compare the magnitude of these 2 vectors, with the "range" variable. So it would now look something like this:

1if (torso.Position-tor.Position).Magnitude < range then
2    -- ... target in range
3end

Other than that, indenting seems pretty good and you should probably get into the habit of using if statements like:

1if Variable then
2    -- ect
3end
4 
5-- Oppose to ...
6 
7if Variable ~= nil then
8    -- ect
9end

Just to make the code seem a bit neater, and eliminate obsolete comparisons.

Hope this helped, let me know if you have any questions.

0
Don't just post code--explain what you did. At the very least you should include comments that highlight the important differences. BlueTaslem 18071 — 9y
0
I guess that's the result of posting without sleep for 2 days. Let's hope this updated post makes it a bit clearer. CodingEvolution 490 — 9y
Ad

Answer this question