Para's VanillaTool [Rework]

01/28/2019 16:37 Paraly#9406
Quote:
Originally Posted by Diavolakos View Post
Is this code conflict if there are many clients running? Because although it worked for my main when he was the only client and I did the test, when I run it on multiple clients it kinda brough back super weird kinah returns.

Part of the code goes like this:

Code:
_MemPtrReadVar=%AddrKinah,0xB10/0x0/0x28/0x818,DWORD,CurrentKinah;

#IF=%Var[CurrentKinah],>3000000;
WaitForResponse= %Var20 has %Var[CurrentKinah] Kinah;
#ENDIF
some times chars had less than 3m and I got the message and other times they had more than 3m and the message didn't come.
Yes the offset changes

Do this checkup at the beginning
Code:
_IFMemPtrRead=%AddrKinah,0xB10/0x0/0x28/0x20,WCHAR[5],=Kinah;
_SetVar14=0x18;
#ENDIF
_IFMemPtrRead=%AddrKinah,0xB10/0x0/0x28/0x820,WCHAR[5],=Kinah;
_SetVar14=0x818;
#ENDIF
and then later on check it like this
Code:
_MemPtrReadVar=%AddrKinah,0xB10/0x0/0x28/%Var14,DWORD,CurrentKinah;
WaitForResponse=Current Kinah: %Var[CurrentKinah];
01/28/2019 17:44 Paraly#9407
Quote:
Originally Posted by badagliacca View Post
@[Only registered and activated users can see links. Click Here To Register...] I've downloaded the newest versions of b.b and vanilla, but how this online log works? I've got my key, what i have to do for check ?
Latest broker bot is 1.33
Start the broker bot like usually, the last question that will pop up is about your private key for online logs, just enter your 6 digit private key you got from this [Only registered and activated users can see links. Click Here To Register...], that's all

You can check your current log status as well on this site, there's a link to your status page
01/29/2019 12:52 Diavolakos#9408
Is there a command to see if something is lootable? I mean have a dead target selected and check whether it can be looted or not, instead of trying to loot for xx:xx amount of time while nothing happens?
01/29/2019 13:09 Paraly#9409
Quote:
Originally Posted by useda View Post
hello i'm new , i just download program and paid for account when i going to get key , second thing i open aion and tried to open account manger but is close after one sec , what is the problem ?
Your ID is activted now, sorry for delay
Quote:
Originally Posted by Diavolakos View Post
Is there a command to see if something is lootable? I mean have a dead target selected and check whether it can be looted or not, instead of trying to loot for xx:xx amount of time while nothing happens?
Code:
_IFMemPtrRead=%TargetBase,%OffsetHP,DWORD,=0; Dead
_IFMemPtrRead=%TargetBase,%OffsetData/0x1574,DWORD,=1; Lootable
_IFMemPtrRead=%TargetBase,%OffsetData/0x1588,DWORD,=0; Not Looted yet
01/29/2019 13:39 Diavolakos#9410
Looks like this doesn't work

Code:
_IFMemPtrRead=%TargetBase,%OffsetData/0x1574,DWORD,=1; Lootable
01/30/2019 03:13 Paraly#9411
I made a script that runs trough Primeths Forge and whispers your main when a shugo has been found with the exact location
it also sends the exact location to my server
when I get all possible spawn points I might add the kill and loot part
01/31/2019 15:17 Bonito07#9412
hey guys ur vanila 6,09 its ok ? im not working =(
02/01/2019 10:01 Diavolakos#9413
Quote:
Originally Posted by Paraly View Post
Yes the offset changes

Do this checkup at the beginning
Code:
_IFMemPtrRead=%AddrKinah,0xB10/0x0/0x28/0x20,WCHAR[5],=Kinah;
_SetVar14=0x18;
#ENDIF
_IFMemPtrRead=%AddrKinah,0xB10/0x0/0x28/0x820,WCHAR[5],=Kinah;
_SetVar14=0x818;
#ENDIF
and then later on check it like this
Code:
_MemPtrReadVar=%AddrKinah,0xB10/0x0/0x28/%Var14,DWORD,CurrentKinah;
WaitForResponse=Current Kinah: %Var[CurrentKinah];
Well it looks like the offset keeps changing all the time, this code gave me the right kinah in the first char, the others kept bringing back weird numbers, another char also got it right but most didn't.

But anyway, I'll find another way to do the checks I want, I'll improvise.
02/01/2019 10:06 Paraly#9414
Quote:
Originally Posted by Diavolakos View Post
Well it looks like the offset keeps changing all the time, this code gave me the right kinah in the first char, the others kept bringing back weird numbers, another char also got it right but most didn't.

But anyway, I'll find another way to do the checks I want, I'll improvise.
Of course they change when you switch characters just do the checkup all the time



Code:
#EXECUTE=GetKinah;
WaitForResponse=Current Kinah: %Var[CurrentKinah];



start_GetKinah;

_IFMemPtrRead=%AddrKinah,0xB10/0x0/0x28/0x20,WCHAR[5],=Kinah;
_MemPtrReadVar=%AddrKinah,0xB10/0x0/0x28/0x18,DWORD,CurrentKinah;
#ENDIF
_IFMemPtrRead=%AddrKinah,0xB10/0x0/0x28/0x820,WCHAR[5],=Kinah;
_MemPtrReadVar=%AddrKinah,0xB10/0x0/0x28/0x818,DWORD,CurrentKinah;
#ENDIF

end_GetKinah;
02/01/2019 15:02 vegetto11#9415
Hello, iīm new and i have an issue to run the program. I already turned off my Windows Firewall on Windows 10, cause it says there is a virus, but if I unzip it and try to start e.g. the no fly file, I donīt get neither a response, nor any reaction. Hope you can help me, thx.
02/01/2019 15:20 Paraly#9416
Quote:
Originally Posted by vegetto11 View Post
Hello, iīm new and i have an issue to run the program. I already turned off my Windows Firewall on Windows 10, cause it says there is a virus, but if I unzip it and try to start e.g. the no fly file, I donīt get neither a response, nor any reaction. Hope you can help me, thx.
The hack only starts if you've paid.

Make sure Windows Defender and your Antivir are turned off
02/02/2019 16:19 Diavolakos#9417
Quote:
Originally Posted by Paraly View Post
Of course they change when you switch characters just do the checkup all the time



Code:
#EXECUTE=GetKinah;
WaitForResponse=Current Kinah: %Var[CurrentKinah];



start_GetKinah;

_IFMemPtrRead=%AddrKinah,0xB10/0x0/0x28/0x20,WCHAR[5],=Kinah;
_MemPtrReadVar=%AddrKinah,0xB10/0x0/0x28/0x18,DWORD,CurrentKinah;
#ENDIF
_IFMemPtrRead=%AddrKinah,0xB10/0x0/0x28/0x820,WCHAR[5],=Kinah;
_MemPtrReadVar=%AddrKinah,0xB10/0x0/0x28/0x818,DWORD,CurrentKinah;
#ENDIF

end_GetKinah;

This is how my function was and it was from the code you gave me and it still brought back weird numbers:

Code:
start_CheckMaxKinah; 


_IFMemPtrRead=%AddrKinah,0xB10/0x0/0x28/0x20,WCHAR[5],=Kinah;
_SetVar14=0x18;
#ENDIF
_IFMemPtrRead=%AddrKinah,0xB10/0x0/0x28/0x820,WCHAR[5],=Kinah;
_SetVar14=0x818;
#ENDIF


_MemPtrReadVar=%AddrKinah,0xB10/0x0/0x28/%Var14,DWORD,CurrentKinah;

#IF=%Var[CurrentKinah],>4000000;
WaitForResponse= %Var20 has %Var[CurrentKinah] kinah;
#ENDIF

Delay=300;

end_CheckMaxKinah;
But I resolved this, instead of opening the kinah boxes and then in the end of the week look at the kinah of each char to trade to my main, I keep the kinah boxes closed, so my snippet looks for kinah boxes instead of max kinah and thus I open them and then trade the money.


~~~~~~~~~~~~

Is there a way to see the current XP in the bar, either by percentage or by absolute? I did a small snippet for a friend for coin opening, but it is super basic, it doesn't check the XP bar it simply spams the coin open.
02/02/2019 16:36 Paraly#9418
Quote:
Originally Posted by Diavolakos View Post
This is how my function was and it was from the code you gave me and it still brought back weird numbers:

Code:
start_CheckMaxKinah; 


_IFMemPtrRead=%AddrKinah,0xB10/0x0/0x28/0x20,WCHAR[5],=Kinah;
_SetVar14=0x18;
#ENDIF
_IFMemPtrRead=%AddrKinah,0xB10/0x0/0x28/0x820,WCHAR[5],=Kinah;
_SetVar14=0x818;
#ENDIF


_MemPtrReadVar=%AddrKinah,0xB10/0x0/0x28/%Var14,DWORD,CurrentKinah;

#IF=%Var[CurrentKinah],>4000000;
WaitForResponse= %Var20 has %Var[CurrentKinah] kinah;
#ENDIF

Delay=300;

end_CheckMaxKinah;
But I resolved this, instead of opening the kinah boxes and then in the end of the week look at the kinah of each char to trade to my main, I keep the kinah boxes closed, so my snippet looks for kinah boxes instead of max kinah and thus I open them and then trade the money.


~~~~~~~~~~~~

Is there a way to see the current XP in the bar, either by percentage or by absolute? I did a small snippet for a friend for coin opening, but it is super basic, it doesn't check the XP bar it simply spams the coin open.
Code:
_MemReadVar=%AddrMaxEXP,DWORD,MaxExp;
_MemReadVar=%AddrCurrentEXP,DWORD,CurrentExp;
_Calc[ExpPercent]=%Var[MaxExp]/%Var[CurrentExp];
_Calc[ExpPercent]=%Var[ExpPercent]*100;

WaitForResponse=Current EXP: %Var[CurrentExp]/nMax EXP: %Var[MaxExp]/nEXP Percent: %Var[ExpPercent]%;
02/02/2019 21:21 lumcold#9419
is hack offline ?
02/02/2019 21:23 Paraly#9420
Quote:
Originally Posted by lumcold View Post
is hack offline ?
Yes, I'm currently writing with my host about it

Edit: My server is back online, sorry for the inconvenience caused