Please verify you are human

[Bot] LoLEtal v1.0 - LATEST VERSION! - Page 174
  Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > League of Legends
You last visited: Today at 08:32

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[Bot] LoLEtal v1.0 - LATEST VERSION!

Discussion on [Bot] LoLEtal v1.0 - LATEST VERSION! within the League of Legends forum part of the Popular Games category.

Closed Thread
 
Old 04/10/2012, 14:17   #2596
 
elite*gold: 0
Join Date: Apr 2012
Posts: 30
Received Thanks: 0
Quote:
Originally Posted by Lobatto View Post
It's correct and it takes around 3 hours.
It is doing custom games now, and it just stands there. Will it try to surrender after 20 minutes or is it trieing to surrender every 30 seconds?
cowsgomoo92 is offline  
Old 04/10/2012, 14:39   #2597
 
elite*gold: 0
Join Date: Jan 2011
Posts: 119
Received Thanks: 10
For all those who have problems with multiple webbrowsers opening and making VM or PC slow i've written a small but helpfull tool especially to make lolEtal using in VM much smoother:

Just extract it and run the exe - .Net Framework 3.5 or later must be installed.

What does this tool do?
It simply closes every new process of the selected browser right after the process starts.

Just run this tool, select your browser and than run lolEtal

Size: 8KB
Ram-usage: 8-10MB.

If you find errors : pm me

Have fun.
Maybe developer of loletal can add this tool to first post?

edit:*Added some exception-handling and fixed a few Bugs, now it should work *
Attached Files
File Type: zip killIE.zip (3.2 KB, 4 views)
xxsmile90xx is offline  
Old 04/10/2012, 14:40   #2598
 
elite*gold: 0
Join Date: Apr 2012
Posts: 19
Received Thanks: 0
3 hours, if lucky.
Seemingly, they click "play youtube video" at LoL client front page after logging in, then get stuck. This is not always the case, though.
Other times it gets stuck at champion selection at tutorial, and won't work on the same account after that.

edit; have 6 bots running atm, ordered extra 4GB ram just to make my computer experience enjoyable
EvilHomer15 is offline  
Old 04/10/2012, 15:48   #2599
 
elite*gold: 0
Join Date: Apr 2012
Posts: 126
Received Thanks: 9
Quote:
Originally Posted by xxsmile90xx View Post
For all those who have problems with multiple webbrowsers opening and making VM or PC slow i've written a small but helpfull tool especially to make lolEtal using in VM much smoother:



Just extract it and run the exe - .Net Framework 3.5 or later must be installed.

What does this tool do?
It simply closes every new process of the selected browser right after the process starts.

Just run this tool, select your browser and than run lolEtal

Size: 8KB
Ram-usage: 8-10MB.

If you find errors : pm me

Have fun.
Maybe developer of loletal can add this tool to first post?

edit:*Added some exception-handling and fixed a few Bugs, now it should work *
lol. seems trustful
w00tw00tw00t is offline  
Old 04/10/2012, 15:49   #2600
 
elite*gold: 0
Join Date: Jan 2011
Posts: 119
Received Thanks: 10
Quote:
Originally Posted by w00tw00tw00t View Post
lol. seems trustful



there u can find the csharp code as well

Not much code should be easy to understand :P
xxsmile90xx is offline  
Old 04/10/2012, 16:00   #2601
 
elite*gold: 0
Join Date: Apr 2012
Posts: 126
Received Thanks: 9
Quote:
Originally Posted by xxsmile90xx View Post



there u can find the csharp code as well

Not much code should be easy to understand :P
why dont you code a batch then which implements the already known solution into the file in the riot folder? think thats a lot easyer and trustable than a permanently running exe, is it? sorry for my offensive thread 2 above then anyway
w00tw00tw00t is offline  
Old 04/10/2012, 16:09   #2602
 
elite*gold: 0
Join Date: Jan 2011
Posts: 119
Received Thanks: 10
Quote:
Originally Posted by w00tw00tw00t View Post
why dont you code a batch then which implements the already known solution into the file in the riot folder? think thats a lot easyer and trustable than a permanently running exe, is it? sorry for my offensive thread 2 above then anyway
Cause this programm does not change anything in the riot folder ... i think editing anything in the directorys and/or files is always the worse way...

And i dont know why it should be more trustable cause lolEtal is a always running exe, too?!.

And easier? this solution just have to be clicked twice, after this u choose browswer - and its done.

U do not even have to change folder, just start it up from your desktop :P

But no reason to debate about this... its just an offer i made, if nobody wants it - ok :P just wanted to help :P

Mainly in vm i think its easier like this... on main system it might suck that u cant user your webbrowser :P
xxsmile90xx is offline  
Old 04/10/2012, 17:00   #2603
 
elite*gold: 0
Join Date: Mar 2012
Posts: 5
Received Thanks: 0
Wrote something similar (did it few days ago after couldnt find anything about this problem), here is my code if someone doesnt want to download.

PHP Code:
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;

namespace 
iexploreTerminator
{
    class 
Program
    
{
        static 
void Main(string[] args)
        {
            
string processName;
            
Console.WriteLine("** Please provide process name (press Enter for default ixplore) **");
            
processName Console.ReadLine();
            if (
processName == "")
                
processName "iexplore";
            
Console.WriteLine("** Looking for " processName " process **");
            while (
true)
            {
                
// Get the current process.
                
Process currentProcess Process.GetCurrentProcess();

                
// Get all instances of Notepad running on the local
                // computer.
                
Process[] localByName Process.GetProcessesByName(processName);
                foreach (
Process iexplore in localByName)
                {
                    
Console.WriteLine("** iexplore process detected, terminating **");
                    try
                    {
                        
iexplore.Kill();
                    }
                    catch (
Exception ex)
                    {
                        
Console.WriteLine(ex.ToString());
                    }
                }
                
Thread.Sleep(1000);
            }
        }
    }

danielzy is offline  
Old 04/10/2012, 17:11   #2604
 
elite*gold: 0
Join Date: Jan 2011
Posts: 119
Received Thanks: 10
Quote:
// Get the current process.
Process currentProcess = Process.GetCurrentProcess();
???? why do u get the process name there?

currentprozess gets declared but its never used i think?

...actually it seems we had exactly the same idea :P^^


edit**
k, googled parts of your code:


just forgot to delete this code snippit right? :P was googeling cause i wondered why u wrote
Code:
                // Get all instances of Notepad running on the local 
                // computer.
xD
xxsmile90xx is offline  
Old 04/10/2012, 17:54   #2605
 
elite*gold: 0
Join Date: Mar 2012
Posts: 6
Received Thanks: 0
if you have trouble with buying boost then set delay to 8000 or 9000. 5000 is sometimes to fast for VM with 512mb
sahdowdanec is offline  
Old 04/10/2012, 17:56   #2606
 
elite*gold: 0
Join Date: Jun 2009
Posts: 131
Received Thanks: 8
can some1 help me pls, i run the bot, it logs in correctly and starts a practise game. but after 9 or 10 minutes, it disconnects due to inactivity, which means it dont move. whats wrong there?
j0gan is offline  
Old 04/10/2012, 18:09   #2607
 
elite*gold: 0
Join Date: Jan 2011
Posts: 119
Received Thanks: 10
Quote:
Originally Posted by j0gan View Post
can some1 help me pls, i run the bot, it logs in correctly and starts a practise game. but after 9 or 10 minutes, it disconnects due to inactivity, which means it dont move. whats wrong there?
Using VM? If yes - which one?

try to do without practice game
xxsmile90xx is offline  
Old 04/10/2012, 18:10   #2608
 
elite*gold: 0
Join Date: Apr 2012
Posts: 126
Received Thanks: 9
check your grahpics! 1024x768, all low quality and borderless mode... windows in min. 1024x768 mode
w00tw00tw00t is offline  
Old 04/10/2012, 19:15   #2609
 
elite*gold: 0
Join Date: Apr 2012
Posts: 30
Received Thanks: 0
Quote:
Originally Posted by sahdowdanec View Post
if you have trouble with buying boost then set delay to 8000 or 9000. 5000 is sometimes to fast for VM with 512mb
yeah, it didn't buy XPboost on lvl 3 is this because the delay is on 5000 which is to fast for VM? So you tell me to put it on 8000? Ill try and let you know.
cowsgomoo92 is offline  
Old 04/10/2012, 19:33   #2610
 
elite*gold: 0
Join Date: Jan 2012
Posts: 19
Received Thanks: 2
hi

Can somebody make Turtorial for me how to make bot to work i can't nothing to undrstand please ^^ for League of legend please
MilanPro1996 is offline  
Closed Thread




All times are GMT +1. The time now is 08:32.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.