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

How do I edit this pathfinding function of mine so that it works on high walkspeed humanoids?

Asked by
ben0h555 417 Moderation Voter
6 years ago

To get it to path find consistently to a changing position you must spam it, but when it is at higher walkspeeds it messes up, I don't know why or how to fix it, please help:

001modtable = {}
002pathfindingcache = {}
003function modtable.Humanoid:StartPathFind(hum, despoint)
004        if pathfindingcache[hum:GetFullName()] then
005            pathfindingcache[hum:GetFullName()].isdone = 1
006            repeat game:GetService("RunService").Heartbeat:wait() until pathfindingcache[hum:GetFullName()] == nil
007            pathfindingcache[hum:GetFullName()] = {}
008            pathfindingcache[hum:GetFullName()].isdone = 0
009        else
010            pathfindingcache[hum:GetFullName()] = {}
011            pathfindingcache[hum:GetFullName()].isdone = 0
012        end
013        if pathfinddebounce == 1 then return end
014        if pcall(function() return despoint.IsA end) then
015            despoint = despoint.Position
View all 112 lines...
0
Is the issue when the NPC stops, it goes past it's destination due to momentum? If so, you'll probably need to attempt changing friction - if that even affects characters- or use a custom everything. If not those options, attempt finding the extra distance passed then subtract it from the destination alphawolvess 1784 — 6y
0
You know what? That is probally it, becuase I think it overshots it then trys to move back to it, which turns into a infinite back and forth dance routine, I'll try to figure it out on my own, but I might still need an example, could you provide one?. ben0h555 417 — 6y
0
Welp, I cant seem to figure out how to keep it from overshooting and stil retaining the speed. ben0h555 417 — 6y

Answer this question