Hot Summer Deals are Here!
Celebrate with up to 99% off on 17,700 resources
01
Days
17
Hours
29
Mins
10
Secs

Anti-FreeCam Detectable

Status
This thread has been locked.

Atrocities

Premium
Feedback score
0
Posts
1
Reactions
0
Resources
0
Hello There! Let's get straight to the point shall we?

So I've been through a lot of work bloody swet and finally came up with a plugin that prevents People from Freecaming Cegg, and it also alerts staff* who the person is and location of being done at.

I'm selling it for 5$.

Why so cheap? - This is my first time publishing a my own custom plugins into the media and actually selling it so I want to start off fresh trying to be as nice as I can to you guys by making my items/plugins more affordable than any other people's.

Pm me on discord
- Name / Laothao#0810

Any questions? Feel free to PM me I'm always on so it won't take long for a reply.
 
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

MarkElf

9+ Year Member
Supreme
Feedback score
27
Posts
1,215
Reactions
1,217
Resources
2
How can you detect freecam?
Moving the player's position slightly every few seconds which also force closes inventories/chests when looking at them.

Something like this:
Code:
    public void onUpdate(Player p)
    {
        long lastMoveTime = movementBase.getLastMoveTime(p.getUniqueId());
        if (lastMoveTime > 0 && System.currentTimeMillis() > lastMoveTime + 1000)
        {
            p.teleport(p.getLocation().add(0, 0.001, 0));
        }
    }
 
Status
This thread has been locked.
Top