Quote:
Q) When start the BOT the License Window it's "red" and I can't register the BOT!
Solution:
create a bat with the commands:
NHC4.exe -ITPSilentActivate
NHC4.exe -ITPSilentRegister "XXXX-XXXXXX-XXXXXXXX-XXXXXXXX-XXXXXXXX-XX-XXXX"
exit
run in the folder of the BOT, XXX its the license ofc.
For the lazy : [Only registered and activated users can see links. Click Here To Register...]
If after this you still have the message, maybe you need to reset the key.
|
You use it on your VM that you're going to clone.
------------------------------------
And for those of you that wanted to know about the ghetto work around, this is the autoit code.
$NHC = "NHC4.exe"
$lolc = "LoLClient.exe"
$loll = "LoLLauncher.exe"
$ff = "firefox.exe"
Func Reopen()
If ProcessExists($NHC) Then
ProcessClose($NHC)
EndIf
sleep(2000)
If ProcessExists($NHC) = 0 Then
Run("C:\Users\Administrator\Desktop\NHC\NHC4.exe", "C:\Users\Administrator\Desktop\NHC") ;May need changing depending on your NHC4.exe location.
EndIf
EndFunc
While 1
sleep(10000)
If ProcessExists("LoLLauncher.exe") And Not ProcessExists("LoLClient.exe") Then ;Edit3 Change
sleep(15000)
If ProcessExists("LoLLauncher.exe") And Not ProcessExists("LoLClient.exe") And Not PixelSearch(911, 83, 1002, 132, 0x1EC87E) Then
Call("Reopen")
EndIf
Else
EndIf ;Checks if LoLClient isn't open, LoLLauncher is open, and if Online has appeared, reopens NHC4.exe if not.
If ProcessExists("BsSndRpt.exe") Then ;Edit 3 Change
Call("Reopen")
Else
EndIf ;Checks if LolCient isn't open, LoLLauncher is open and if orange from bugsplat is present, if so, reopens NHC4.exe
If ProcessExists($ff) Then ;Kills firefox due to pesky opening blocking clicks.
ProcessClose($ff)
EndIf
sleep(10000) ;Change value higher for higher sleep intervals to lower cpu load (in millsecs)
WEnd
Don't expect it to be the end-all of your problems, firstly, I am no expert coder, I've had no previous experience with autoit as of 2 days ago, secondly, I'm not even sure its working 100%, I've only got 6 VMs running so its slow work testing it. You also may need to do some work depending on what problems you have, but its what is working for me currently.
Edit: If you've no idea what do do with it, using the autoit program, convert it to an exe and stick it in start-up it'll run in the back ground from there. I could upload my exe but i'm not sure if i'm allowed or not.
Edit 2:
[Only registered and activated users can see links. Click Here To Register...]
That is the exe, again, its better to compile it yourself as it may need tweaks to work properly. I'm not sure if the bugsplat fix will work but i'll fix the problems as i run into them.
Edit 3:
[Only registered and activated users can see links. Click Here To Register...]
V.3. Now with working bugsplat reopening. Code also updated.
Edit 4: Missed a Not out of line 28. Will upload new exe in a few minutes.
V3.1.
[Only registered and activated users can see links. Click Here To Register...]
Edit 5: V4 HYPE
[Only registered and activated users can see links. Click Here To Register...]
Added delay in checking if Online has appeared, should fix issue where it would reopen before it had a chance to appear.