Originally Posted by
wlastas
oh very interesting.
What do you mean by "with inhuman like clicks" - can you be a little more specific? Does it mean that you move the mouse very fast and have an extremely short delay between clicks? What value do you consider safe and optimal? Unless of course it's private information...
By human like I meant for example the behavior of a group of bots on the maps - when 4 bots follow the leader point to point it looks extremely unsafe and can be easily detected on the server automatically
I had a bot banned that behaved extremely strangely in one of the town - there was a failure in the algorithm of interaction with the NPC and it ran from one to another for an hour, perhaps
He is talking about instant mouse movements, clicks happening exactly in position within milliseconds of each other. These are inhuman, but also not really outwardly detectable. They need to process information to develop trends in behavior. But when you have someone being suspicious in town, walking the same exact paths, doing the same thing over and over again.... its people reporting them that is causing the account flag most likely. The same stuff is true for other games like WOW. You can do all kinds of hacks, but the moment you try hacking in a BG everyone is going to report you. You are exposing your behavior to the other players, and they are likely reporting it using the tools they give to the players to do just that.
And as Sychotix points out, we are at the whim of GGG's decisions in this regard. While at any point we may feel this is "safe enough" that could change. Some methods will be more or less vulnerable to detection, but we can use every tool available to us to obscure our activity. This does not mean someone could report your account for something you thought was benign, and you get new scrutiny on your account which finds something.
Anywho, just came onto the thread to share a bit of a change I made in my BAT file so that I can launch gamehelper when the game is not open.
The changed lines are in green. This works best when you enable the option to close GH when the game exits.
Code:
SETLOCAL
ECHO OFF
SET run_as=C:\Windows\System32\runas.exe
REM Name of the local user account you are having launch the EXE
SET local_user=LimitedUserName
REM Possible EXE names: PathOfExile.exe, PathOfExile_x64.exe, PathOfExileSteam.exe, PathOfExile_x64Steam.exe, PathOfExile_KG.exe, PathOfExile_x64_KG.exe
SET exe_name=PathOfExile.exe
REM You can launch the game with additional Parameters --waitforpreload
SET exe_params=--nologo
REM Keep in mind because of strange reasons this one must have / instead of \
SET exe_path=D:/Program Files (x86)/Grinding Gear Games/Path of Exile
REM Set path and file for game helper
SET GH_path=C:/Path/To/GH
SET exe_gh=Launcher.exe
REM Make sure to change this drive letter if not on C: drive
CD D:
REM Now we run the code you provided
TASKLIST /fi "IMAGENAME eq %exe_name%" 2>NUL | FIND /I /N "%exe_name%">NUL
IF NOT "%ERRORLEVEL%"=="0" SET run=1
IF "%run%"=="1" START %run_as% /user:%local_user% /savecred "cmd /C cd /D \"%exe_path%\" && Start /high %exe_name% %exe_params%"
CD C:
IF "%run%"=="1" CD %GH_path%
IF "%run%"=="1" Start /high %exe_gh%
REM ---------------
REM Scripts Section
REM ---------------
REM Place all scripts in subfolders one directory
SET scripts_path=C:\Path\To\Scripts
SET ahk_path=C:\Program Files\AutoHotkey
REM Name of the script to run
SET script_1_name=PoE-Wingman.ahk
REM Which subdirectory of the scripts folder
SET script_1_subpath=PoE-Wingman
REM What to look for as an active process in AHK
SET script_1_searchString=PoE-Wingman.ahk ahk_exe AutoHotkey.exe
REM Build the Path from supplied values
SET script_1_path=%scripts_path%\%script_1_subpath%\%script_1_name%
REM Script 2
SET script_2_name=Awakened PoE Trade.exe
SET script_2_searchString=ahk_exe %script_2_name%
REM Build the Path
SET script_2_path=C:\Path\To\Awakened PoE Trade\%script_2_name%
REM Script 3
SET script_3_name=POE Trades Companion.ahk
SET script_3_subpath=POE-Trades Companion
SET script_3_searchString=%script_3_name% ahk_exe AutoHotkey.exe
REM Build the Path
SET script_3_path=%scripts_path%\%script_3_subpath%\%script_3_name%
REM Script 4
SET script_4_name=PoE-HarvestVendor.ahk
SET script_4_subpath=HarvestVendor
SET script_4_searchString=%script_4_name% ahk_exe AutoHotkey.exe
REM Build the Path
SET script_4_path=%scripts_path%\%script_4_subpath%\%script_4_name%
REM Send script to AutoHotkey to evaluate for hidden window titles
(
ECHO #NoTrayIcon
ECHO SetTitleMatchMode, 2
ECHO DetectHiddenWindows On
ECHO If !WinExist^("%script_1_searchString%"^^^)
ECHO Run *RunAs %script_1_path%
ECHO If !WinExist^("%script_2_searchString%"^^^)
ECHO Run %script_2_path%
ECHO If !WinExist^("%script_3_searchString%"^^^)
ECHO Run %script_3_path%
ECHO If !WinExist^("%script_4_searchString%"^^^)
ECHO Run %script_4_path%
ECHO ExitApp
)| "C:\Program Files\AutoHotkey\AutoHotkey.exe" *