From ffeab6ec3687bacc44a06ad01dc858f0b55d9c15 Mon Sep 17 00:00:00 2001 From: 0bbedCode <114315756+0bbedCode@users.noreply.github.com> Date: Mon, 13 May 2024 14:51:26 +0400 Subject: [PATCH] Update APIHELP.md --- APIHELP.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/APIHELP.md b/APIHELP.md index 36a3f680..59315808 100644 --- a/APIHELP.md +++ b/APIHELP.md @@ -129,6 +129,9 @@ List fileListHasEvidence(List files, int code) //Create a String Array with the Evidence it found removed String[] stringArrayHasEvidence(String[] file, int code) + +//Clean Stack Trace from any Evidence of Hooking / Hooked Functions +StackTraceElement[] stackHasEvidence(StackTraceElement[] elements) ``` ```LUA @@ -379,6 +382,12 @@ boolean hasFunction(String function) //Check if a Function exists within a Class boolean hasFunction(String classPath, String function) +//Check if a Field Exists in the "this" Object of the Instance / Hook +boolean hasField(String field) + +//Check if a Field exists within a Class +boolean hasField(String classPath, String field) + ``` ```LUA