#Infinite Radar is Broken
1 messages · Page 1 of 1 (latest)
your infinite radar mod is broken or at least with PySE
-- control.lua
-- Get entity center chunk
local center = {
x = math.floor(gfsr.entity.x / 32),
y = math.floor(gfsr.entity.y / 32)
}
``` to
```lua
-- control.lua
-- Get entity center chunk
local center = {
x = math.floor(gfsr.x / 32),
y = math.floor(gfsr.y / 32)
}
Hmm that's not good
We do need the entity because that is the center of our spiral
Did you by any chance remove a radar?
And do you have the error message for me?
when I powered the radar it broke
this made it work
though
Ah I see
Hmm this is sloppy
I needed to get the position.x
Let me fix it real quick, one sec
!!
Just uploaded v1.0.4 which fixes this issue