|
You last visited: Today at 04:50
Advertisement
Para's VanillaTool [Rework]
Discussion on Para's VanillaTool [Rework] within the Aion Hacks, Bots, Cheats & Exploits forum part of the Aion category.
08/20/2018, 00:33
|
#8626
|
elite*gold: 0
Join Date: Nov 2015
Posts: 335
Received Thanks: 20
|
Quote:
Originally Posted by Diavolakos
Well a couple of things could possibly go wrong, i this case I will assume it is a delay issue.
The character "enters" kumuki, waits some delay and then if he is in, he makes the instance, if he is not in the script tries some more times to enter and if he still doesn't, the script assumes he can't enter or is not the correct level or he did kumuki etc so he logs out to the next char.
In this case it would probably solve your problem if you added this line:
DelayGlobal=1.5;
this will set all delay for example to 1,5x more (aka +50%, thus a delay that is 10 seconds will become 15 seconds)
BUT this will do it for the whole instance and you might not want this.
In this case you could only change manually the delays about the entry only.
~~~~~~~
If you are an asmo, search for this line: end_EnterAsmo;
Right before this line there is a Delay=10000; this means when an asmo tries to enter, he waits 10 seconds. I'd suggest you to change this to 20000 like below, every char will wait 10 more second to enter before he makes the checks of location and proceed to instance (or logout):
...
Code:
Delay=20000;
end_EnterAsmo;
... if you are an elyos regard deleting your toon and make an asmodian, but in any case if you insist on being an elyos, search for this code and do the same as above:
Code:
Delay=20000;
end_EnterElyos;
~~~~~~~~~~~~~~~~~~~~
You could also add a delay in the #DO command after the first trial to enter if you want:
The default timer in the below code was #DO=25000; changed to 35000 so it waits 10 more seconds to see if the entry was successful;
Code:
_IFMemPtrRead=%PlayerBase,%OffsetLevel,BYTE,>9;
#DO=35000;
Delay=50;
_UNTILMemRead=%AddrMap,DWORD,=302330000;
_IFMemRead=%AddrMap,DWORD,=302330000;
#EXECUTE=Instance;
Also a little lower than that there is a whole 60 seconds effort to enter the char in case all the previous failed, you could add another slight delay in the #DO with the arrow:
Code:
MemPtrWrite=%AddrESChwnd,%OffsetESChwnd,142,BYTE;
Delay=1250;
#EXECUTE=Entry;
Delay=12000; <---------------------increase this
_UNTILMemRead=%AddrMap,DWORD,=302330000;
_IFMemRead=%AddrMap,DWORD,=302330000;
#EXECUTE=Instance;
#ENDIF
|
yes solved in version 1.08. but anyway, thank you indeed
Quote:
Originally Posted by Paraly
It's already solved in 1.08
|
Paraly thanks for this last version, now I can go to work and leave the characters doing the instance.
|
|
|
08/20/2018, 00:45
|
#8627
|
elite*gold: 0
Join Date: Jul 2010
Posts: 398
Received Thanks: 77
|
Quote:
Originally Posted by Paraly
...
|
As for luna fix we made, one of the characters had the skill bar right in the mouse=x,y; position so instead of looting he kept doing the skill, so I guess we have to place F12 back in the code, right before the mouse right click we need F12 to hide everything, then right click in the x,y location and then bring everything back with another F12 in order to be able to see the loot window and thus loot.
I am shocked at how NCSoft try to "fix" the game against automatic botting and they really deal with luna as if this is their game problem
|
|
|
08/20/2018, 00:47
|
#8628
|
elite*gold: 27
Join Date: Sep 2009
Posts: 5,596
Received Thanks: 1,596
|
Quote:
Originally Posted by Diavolakos
well one of the characters had the skill bar right in the mouse,x,y; position so instead of looting he kept doing the skill, so I guess we have to place F12 back in the code, right before the mouse right click we need F12 to hide everything, then right click and then bring everything back with another F12 in order to be able to see the loot window and thus loot.
I am shocked at how NCSoft try to "fix" the game against automatic botting and they really deal with luna as if this is their game problem
|
Yes, that was the reason I implemented F12 but the chance it creates problems is higher than someone actually having a quickbar there.
Toggling the visibility of the UI by memory would be the best solution
|
|
|
08/20/2018, 00:52
|
#8629
|
elite*gold: 0
Join Date: Jul 2010
Posts: 398
Received Thanks: 77
|
Quote:
Originally Posted by Paraly
Yes, that was the reason I implemented F12 but the chance it creates problems is higher than someone actually having a quickbar there.
Toggling the visibility of the UI by memory would be the best solution
|
I am running my last character for today, I made the change and i'll check it, if it works properly I'll let you know. It should work.
And also Right and Left was capitalized int he script I sent you which was wrong obviously, I forgot to mention.
~~~~~~
OK this is what needs to be done:
Hit F12
Delay a little
Mouse x,y;
Delay very little
Hit F12 back before the opening of the chest finishes
Hit C a few times to loot
...repeat the whole procedure on top for more security
you need to bring UI back so the little window for looting appears. If you right click on the chest and let it open while UI is absent, then you will see no loot window.
At least this is what I saw. So much fuss for that stupid Q item which is necessary.
|
|
|
08/20/2018, 04:43
|
#8630
|
elite*gold: 0
Join Date: Jul 2009
Posts: 28
Received Thanks: 3
|
kumui script recognize if character is low level or must be in order to do start the character selection in order?
|
|
|
08/20/2018, 09:56
|
#8631
|
elite*gold: 27
Join Date: Sep 2009
Posts: 5,596
Received Thanks: 1,596
|
Quote:
Originally Posted by Diavolakos
I am running my last character for today, I made the change and i'll check it, if it works properly I'll let you know. It should work.
And also Right and Left was capitalized int he script I sent you which was wrong obviously, I forgot to mention.
~~~~~~
OK this is what needs to be done:
Hit F12
Delay a little
Mouse x,y;
Delay very little
Hit F12 back before the opening of the chest finishes
Hit C a few times to loot
...repeat the whole procedure on top for more security
you need to bring UI back so the little window for looting appears. If you right click on the chest and let it open while UI is absent, then you will see no loot window.
At least this is what I saw. So much fuss for that stupid Q item which is necessary.
|
That's exactly what the code already did before I replaced it with yours on request
Quote:
Originally Posted by kk.k
kumui script recognize if character is low level or must be in order to do start the character selection in order?
|
It will detect and skip low level toons
|
|
|
08/20/2018, 23:06
|
#8632
|
elite*gold: 0
Join Date: Jul 2010
Posts: 398
Received Thanks: 77
|
Quote:
Originally Posted by kk.k
kumui script recognize if character is low level or must be in order to do start the character selection in order?
|
The script does look at the lvl of the character but it is the wrong number, it looks if the character is above lvl 9:
Code:
_IFMemRead=%AddrMap,DWORD,=302330000; <-- checks if already inside kumuki
#ELSE
_IFMemPtrRead=%PlayerBase,%OffsetLevel,BYTE,>9;
#EXECUTE=Entry;
#ENDIF
_IFMemPtrRead=%PlayerBase,%OffsetLevel,BYTE,>9;
#DO=25000;
Delay=50;
_UNTILMemRead=%AddrMap,DWORD,=302330000;
_IFMemRead=%AddrMap,DWORD,=302330000;
#EXECUTE=Instance;
#ELSE
_IFMemPtrRead=%PlayerBase,%OffsetLevel,BYTE,>9;
#DO=60000;
SendKey=0x1B;
Delay=50;
SendKey=0x1B;
You gotta change this part, wherever you see the code:
_IFMemPtrRead=%PlayerBase,%OffsetLevel,BYTE,>9;
you need to change it since kumuki is 46lvl and above:
_IFMemPtrRead=%PlayerBase,%OffsetLevel,BYTE,>45;
Of course the way the script is, it wouldn't make a big difference, since the char would try to enter, he wouldn't be able and the script would continue to the next one, it will save a few minutes with the fix with the lvl check.
|
|
|
08/20/2018, 23:10
|
#8633
|
elite*gold: 27
Join Date: Sep 2009
Posts: 5,596
Received Thanks: 1,596
|
Quote:
Originally Posted by Diavolakos
The script does look at the lvl of the character but it is the wrong number, it looks if the character is above lvl 9:
Code:
_IFMemRead=%AddrMap,DWORD,=302330000; <-- checks if already inside kumuki
#ELSE
_IFMemPtrRead=%PlayerBase,%OffsetLevel,BYTE,>9;
#EXECUTE=Entry;
#ENDIF
_IFMemPtrRead=%PlayerBase,%OffsetLevel,BYTE,>9;
#DO=25000;
Delay=50;
_UNTILMemRead=%AddrMap,DWORD,=302330000;
_IFMemRead=%AddrMap,DWORD,=302330000;
#EXECUTE=Instance;
#ELSE
_IFMemPtrRead=%PlayerBase,%OffsetLevel,BYTE,>9;
#DO=60000;
SendKey=0x1B;
Delay=50;
SendKey=0x1B;
You gotta change this part, wherever you see the code:
_IFMemPtrRead=%PlayerBase,%OffsetLevel,BYTE,>9;
you need to change it since kumuki is 46lvl and above:
_IFMemPtrRead=%PlayerBase,%OffsetLevel,BYTE,>45;
Of course the way the script is, it wouldn't make a big difference, since the char would try to enter, he wouldn't be able and the script would continue to the next one, it will save a few minutes with the fix with the lvl check.
|
Hm I was pretty sure it was lvl 10+ back then but maybe just in EU
|
|
|
08/21/2018, 16:32
|
#8634
|
elite*gold: 0
Join Date: Mar 2011
Posts: 75
Received Thanks: 4
|
do you have combat routine in your bot ? if so can i use it when i need and and disable it when i am not?
|
|
|
08/21/2018, 16:33
|
#8635
|
elite*gold: 27
Join Date: Sep 2009
Posts: 5,596
Received Thanks: 1,596
|
Quote:
Originally Posted by guardian_angel
do you have combat routine in your bot ? if so can i use it when i need and and disable it when i am not?
|
I think what you want is the "Combat Assist" script, you find it inside the Short Script Bundle
|
|
|
08/21/2018, 22:12
|
#8636
|
elite*gold: 0
Join Date: Feb 2017
Posts: 11
Received Thanks: 0
|
Hello Paraly
I am keeping get Error 12 when I tried start the game with account manager.
|
|
|
08/21/2018, 22:45
|
#8637
|
elite*gold: 27
Join Date: Sep 2009
Posts: 5,596
Received Thanks: 1,596
|
Quote:
Originally Posted by wbj26
Hello Paraly
I am keeping get Error 12 when I tried start the game with account manager.
|
Send me your details by PM
|
|
|
08/21/2018, 23:12
|
#8638
|
elite*gold: 0
Join Date: Feb 2017
Posts: 11
Received Thanks: 0
|
Quote:
Originally Posted by Paraly
Send me your details by PM
|
yes, i have sent
|
|
|
08/21/2018, 23:24
|
#8639
|
elite*gold: 0
Join Date: Jul 2009
Posts: 28
Received Thanks: 3
|
Quote:
Originally Posted by Paraly
Hm I was pretty sure it was lvl 10+ back then but maybe just in EU
|
Thank you man!
|
|
|
08/24/2018, 02:51
|
#8640
|
elite*gold: 0
Join Date: Mar 2011
Posts: 15
Received Thanks: 0
|
is there any way to remove the bug on Evergale?
|
|
|
All times are GMT +1. The time now is 04:50.
|
|