elitepvpers

elitepvpers (https://www.elitepvpers.com/forum/)
-   Aion Hacks, Bots, Cheats & Exploits (https://www.elitepvpers.com/forum/aion-hacks-bots-cheats-exploits/)
-   -   Para's VanillaTool [Rework] (https://www.elitepvpers.com/forum/aion-hacks-bots-cheats-exploits/3259175-paras-vanillatool-rework.html)

Paraly 03/22/2018 17:07

Quote:

Originally Posted by Stndartuser123 (Post 36776304)
Combat rountine works for Chanter Brother?

It works for all classes except Aethertech

Stndartuser123 03/22/2018 18:17

Quote:

Originally Posted by Paraly (Post 36776352)
It works for all classes except Aethertech

Thank you

lalpu 03/22/2018 19:28

Para pls activate my ID

Also pls send me all download links, m not soo good at these stuffs.

Paraly 03/22/2018 19:35

Quote:

Originally Posted by lalpu (Post 36776662)
Para pls activate my ID

I'll activate all new payments as soon as I can, my ISP has some issues at the moment, it might take 1-2 hours, sorry

lalpu 03/22/2018 19:53

No problem :)

Paraly 03/22/2018 20:28

Quote:

Originally Posted by lalpu (Post 36776736)
No problem :)

Your ID is activated now :)

lucimon 03/22/2018 23:38

How do I know if the xigncode bypass is working properly or not?
The simple fact of the para tool begin successfully injected into the game means it is working?

I'm asking that because sometimes the bypass appear on my taskbar and sometimes not, ever when I reopen the .exe

Paraly 03/22/2018 23:40

Quote:

Originally Posted by lucimon (Post 36777275)
How do I know if the xigncode bypass is working properly or not?
The simple fact of the para tool begin successfully injected into the game means it is working?

I'm asking that because sometimes the bypass appear on my taskbar and sometimes not, ever when I reopen the .exe

If you can inject it is working properly, you also get a notification when ever you start aion that the hackshield got bypassed after few seconds

If XignCode would be running you would see a small icon of it at your tray menu (bottom right side of your windowbar)

lalpu 03/23/2018 02:07

Where can i get scripts for instances?

thekiller258 03/23/2018 04:16

After reading forums about the apocalypse tia eye event turned out I wondered if there's a way to open the NPCs Reshi (Asmodian) and Aseus (Elyos) event store window.

I mean, I've noticed they keep old event stuff running in the game but invisible or something. If you manage to find a way to force the store and everybody could trade their coins it will be pure madness, sales, sales everywhere, lol.

Paraly 03/23/2018 10:33

Quote:

Originally Posted by lalpu (Post 36777458)
Where can i get scripts for instances?

At the [Only registered and activated users can see links. Click Here To Register...]
Quote:

Originally Posted by thekiller258 (Post 36777518)
After reading forums about the apocalypse tia eye event turned out I wondered if there's a way to open the NPCs Reshi (Asmodian) and Aseus (Elyos) event store window.

I mean, I've noticed they keep old event stuff running in the game but invisible or something. If you manage to find a way to force the store and everybody could trade their coins it will be pure madness, sales, sales everywhere, lol.

we need the NPC to be there to force their NPC function

lucimon 03/23/2018 22:37

Hi, there is any script to farm minion contracts instead of exp in Fissure of Oblivion?

Diavolakos 03/24/2018 01:25

Quote:

Originally Posted by lucimon (Post 36779412)
Hi, there is any script to farm minion contracts instead of exp in Fissure of Oblivion?

That requires your to get points and get some good rank (I am not sure which rank you need to get the 10 useless minnion contracts).

Which is kinda hard to implement because the mobs in there are rather tough even for the transformations.

I am a lvl 75 char with amazing gray wolf accessories tempered, with extra pve dmg and there are times I die there.

~~~~

Now the melee mobs could be done by being in mid air, but if the mobs are ranged you will get dmg and die.

Also fissure script is bannable in NA since many people took notice of that.

Paraly real quick question about the IF ELSE command.

Are these codes correct (just the if sentences)

Code:

#IF (commands here)

    ...do something

    #ELSE

          ...do something

          #IF more commands (engulfed in the above else)

              ...do other things

          #ELSE

              ...more commands

              #IF (commands, engulfed again in the above else)

                    ...commands

#ENDIF

My question is can I use it like this, I intentionally placed the spaces so you understand what I mean, every command under the #ELSE is engulfed in it.

Because there is no #ELSEIF command so I need to use them like this?

And the #ENDIF will end the whole IF engulf? Or do I need to put more #ENDIF to finish every #IF there is?

~~~~

I am asking because I am used to C++ style like this and it is kinda "easy to know" how many brackets you need etc. I just want to know how engulfed the IF sentences work in your coding and how many ENDIF I need after a whole bunch of them.

Code:

if(checks)
{  commands

    if(more checks)
    {    commands;
          commands;
          commands;
    }
}
else
{  commands

    if(checks)
    {    commands;
          commands;
    }
    else
    {  commands;
    }
}

~~~~

And lastly does the command below support an #ELSE inside it? (I think it does, just to be 100% sure)
Code:

_IFInventoryContains=[item ID],1;
    <code>
#ELSE
    <code>
#ENDIF


nickjaspion 03/24/2018 23:34

Hiii

can you put the option to use 100% xp card in the script combat routine?
Ty <3

Exem strike 03/25/2018 00:19

Hello
* Can you tell why after the first round the evergale script does not find the tab option? it is in the first option of the window and does not go in the option that finds the quick entry I have to be doing manually always after the first round.

Paraly 03/25/2018 10:43

Quote:

Originally Posted by Diavolakos (Post 36779675)
That requires your to get points and get some good rank (I am not sure which rank you need to get the 10 useless minnion contracts).

Which is kinda hard to implement because the mobs in there are rather tough even for the transformations.

I am a lvl 75 char with amazing gray wolf accessories tempered, with extra pve dmg and there are times I die there.

~~~~

Now the melee mobs could be done by being in mid air, but if the mobs are ranged you will get dmg and die.

Also fissure script is bannable in NA since many people took notice of that.

Paraly real quick question about the IF ELSE command.

Are these codes correct (just the if sentences)

Code:

#IF (commands here)

    ...do something

    #ELSE

          ...do something

          #IF more commands (engulfed in the above else)

              ...do other things

          #ELSE

              ...more commands

              #IF (commands, engulfed again in the above else)

                    ...commands

#ENDIF

My question is can I use it like this, I intentionally placed the spaces so you understand what I mean, every command under the #ELSE is engulfed in it.

Because there is no #ELSEIF command so I need to use them like this?

And the #ENDIF will end the whole IF engulf? Or do I need to put more #ENDIF to finish every #IF there is?

~~~~

I am asking because I am used to C++ style like this and it is kinda "easy to know" how many brackets you need etc. I just want to know how engulfed the IF sentences work in your coding and how many ENDIF I need after a whole bunch of them.

Code:

if(checks)
{  commands

    if(more checks)
    {    commands;
          commands;
          commands;
    }
}
else
{  commands

    if(checks)
    {    commands;
          commands;
    }
    else
    {  commands;
    }
}

~~~~

And lastly does the command below support an #ELSE inside it? (I think it does, just to be 100% sure)
Code:

_IFInventoryContains=[item ID],1;
    <code>
#ELSE
    <code>
#ENDIF


All your IF questions were correctly the only thing you can't do

Code:

#IF
inside the first IF
        #IF
        inside the second IF
<-- there's no way to return to the first if
#ENDIF

You can always just use 1 #ENDIF which ends every #IF question, and in case a #IF is false it always jumps to the next #ENDIF, if you want to do a case like I wrote above you need to do the second IF in a sub function
Code:

#IF
inside the first IF
#EXECUTE=subif;
<-- this will be executed fine even when the subif is false
#ENDIF


start_subif;

#IF
        inside the second IF
#ENDIF

end_subif;

Quote:

Originally Posted by nickjaspion (Post 36781754)
Hiii

can you put the option to use 100% xp card in the script combat routine?
Ty <3

Open the Combat Routine in some text editor

Scroll to the very end

Post these lines above the "end_Potion;"

Code:

#IF=%Timer=99999,3600000;
_IFInventoryContains=169620117; 100% from starters
SmartSkill=169620117,3600000,1000,False,False;
Delay=150;
UseID=169620117;
CreateTimer=99999;
#ENDIF

#IF=%Timer=99999,3600000;
_IFInventoryContains=169620201; 100%
SmartSkill=169620201,3600000,1000,False,False;
Delay=150;
UseID=169620201;
CreateTimer=99999;
#ENDIF

#IF=%Timer=99999,3600000;
_IFInventoryContains=169620200; 50%
SmartSkill=169620200,3600000,1000,False,False;
Delay=150;
UseID=169620200;
CreateTimer=99999;
#ENDIF

Quote:

Originally Posted by Exem strike (Post 36781824)
Hello
* Can you tell why after the first round the evergale script does not find the tab option? it is in the first option of the window and does not go in the option that finds the quick entry I have to be doing manually always after the first round.

Open the Script in some text editor

Scroll to these lines

Code:

FrameAction=457,State,SHOW; <-- GM window
FrameAction=457,XPos,0;
FrameAction=457,YPos,0;
Delay=2250;
Mouse=233,29; GM correct tab
Delay=750;

Change the Delay=2250; to Delay=9000;

If it does still not work you might need to check the mouse coord below

nickjaspion 03/25/2018 18:51

Sad but dont work, no <Berdin's 100% XP Amulet IV> buffed ;/

Open the Combat Routine in some text editor

Scroll to the very end

Post these lines above the "end_Potion;"

Code:

#IF=%Timer=99999,3600000;
_IFInventoryContains=169620117; 100% from starters
SmartSkill=169620117,3600000,1000,False,False;
Delay=150;
UseID=169620117;
CreateTimer=99999;
#ENDIF

#IF=%Timer=99999,3600000;
_IFInventoryContains=169620201; 100%
SmartSkill=169620201,3600000,1000,False,False;
Delay=150;
UseID=169620201;
CreateTimer=99999;
#ENDIF

#IF=%Timer=99999,3600000;
_IFInventoryContains=169620200; 50%
SmartSkill=169620200,3600000,1000,False,False;
Delay=150;
UseID=169620200;
CreateTimer=99999;
#ENDIF

Paraly 03/25/2018 19:38

1 Attachment(s)
Quote:

Originally Posted by nickjaspion (Post 36783348)
Sad but dont work, no <Berdin's 100% XP Amulet IV> buffed ;/

Open the Combat Routine in some text editor

Scroll to the very end

Post these lines above the "end_Potion;"

Code:

#IF=%Timer=99999,3600000;
_IFInventoryContains=169620117; 100% from starters
SmartSkill=169620117,3600000,1000,False,False;
Delay=150;
UseID=169620117;
CreateTimer=99999;
#ENDIF

#IF=%Timer=99999,3600000;
_IFInventoryContains=169620201; 100%
SmartSkill=169620201,3600000,1000,False,False;
Delay=150;
UseID=169620201;
CreateTimer=99999;
#ENDIF

#IF=%Timer=99999,3600000;
_IFInventoryContains=169620200; 50%
SmartSkill=169620200,3600000,1000,False,False;
Delay=150;
UseID=169620200;
CreateTimer=99999;
#ENDIF

.

HealingSquid 03/26/2018 15:37

Keep up the good work!

lalpu 03/27/2018 06:47

hack not working
 
Para somehow Hack is not working, NA - Inject success, insert - no annimation (ON) yet it's not working.

Pls look into it once.

If it make any difference, I changed my desktop CPU fan yesturday.

other functions seems to work like Target info and others but not the no annimation

Paraly 03/27/2018 10:44

Quote:

Originally Posted by lalpu (Post 36786655)
Para somehow Hack is not working, NA - Inject success, insert - no annimation (ON) yet it's not working.

Pls look into it once.

If it make any difference, I changed my desktop CPU fan yesturday.

other functions seems to work like Target info and others but not the no annimation

Did you try a aion client restart?
Are you sure Siege mode is turned off?

lalpu 03/27/2018 12:02

Yea it worked now, Siege mode was on sorry, m new to this hack.

Diavolakos 03/28/2018 00:35

Code:

#IF
inside the first IF
#EXECUTE=subif;
<-- this will be executed fine even when the subif is false
#ENDIF


start_subif;

#IF
        inside the second IF
#ENDIF

end_subif;


OK I understand that if you put an IF inside another IF then you have to close it with an ENDIF so it will close all IFs before too, so after that engulfed IF you cannot get out of it without getting our of every previous IFs as well.

That makes sense and also the custom function with EXECUTE is also understandable, but of course this would make the script slightly more complicated, still doable though.

Thanks.

assadssss 03/28/2018 14:08

weekly luna dosent kill mobs at the end. eu

Lynne77 03/29/2018 10:57

well I went in coe,load script,but nothing appears,script tab doesn't load ,it's just empty no matter how many times I relog or restart hack.I was able to tun once and it stopped working at next run

Paraly 03/29/2018 10:58

Quote:

Originally Posted by Lynne77 (Post 36791596)
well I went in coe,load script,but nothing appears,script tab doesn't load ,it's just empty no matter how many times I relog or restart hack.I was able to tun once and it stopped working at next run

redownload the script

xxxLavos 03/29/2018 16:56

Quote:

Originally Posted by JohnTheAust (Post 36788131)
Recently found and wanted to share..

XignCode3 PermaBypass the only thing you have to do is to put the files in place while replacing the old ones although every time there is a maintenance on the servers you have to re-put them in place.

my xigncode3 stop working today morning, It does not want to update and made it impossible to login in the game, maybe it is something about my internet...anyway your way to bypass saved me, thanks

Paraly 03/29/2018 22:41

1 Attachment(s)
Quote:

Originally Posted by xxxLavos (Post 36792492)
my xigncode3 stop working today morning, It does not want to update and made it impossible to login in the game, maybe it is something about my internet...anyway your way to bypass saved me, thanks

This one should solve the issue, if you executed the old bypass already restart your PC before running the new one

Exem strike 03/30/2018 20:02

XP Booster collector ASMO - Script ver. 0.86,
the names of the new characters that take the quest iten does not appear automatically in the store, currently the char is not registered in the store, when I try to get it it says please select character but the new character does not appear in the list

or is something going on on my pc or is it rolling some mess of NCnoob or a purposive change,
well that's not very important

meta666 03/31/2018 00:43

Quote:

Originally Posted by Exem strike (Post 36795085)
XP Booster collector ASMO - Script ver. 0.86,
the names of the new characters that take the quest iten does not appear automatically in the store, currently the char is not registered in the store, when I try to get it it says please select character but the new character does not appear in the list

or is something going on on my pc or is it rolling some mess of NCnoob or a purposive change,
well that's not very important

Ncsoft is looking into it. We aren't the only ones.

[Only registered and activated users can see links. Click Here To Register...]

Stndartuser123 03/31/2018 07:35

is it safe to use sandboxie?

Paraly 03/31/2018 10:23

Quote:

Originally Posted by Stndartuser123 (Post 36796091)
is it safe to use sandboxie?

Yes, it's safe

JohnTheAust 04/01/2018 11:34

XignCodeBypass (File replace)
 
Quote:

Originally Posted by Paraly (Post 36793312)
This one should solve the issue, if you executed the old bypass already restart your PC before running the new one

I think he is talking about the way i provided to bypass Signcode3 paraly...

damianmd 04/02/2018 14:57

Work it on not aion?

Paraly 04/02/2018 14:59

Quote:

Originally Posted by damianmd (Post 36801100)
Work it on not aion?

Just the latest offical NA and EU client is supported by my hack.

assadssss 04/03/2018 08:55

since 4.75 [Only registered and activated users can see links. Click Here To Register...]

Paraly 04/03/2018 11:10

Quote:

Originally Posted by assadssss (Post 36803043)
since 4.75 [Only registered and activated users can see links. Click Here To Register...]

Update your EU client

blwzification 04/03/2018 18:35

yo

i had this tool like 2-3 (or more ) ago and it was great!

i would like to buy it again but i want to test it first (because there are lots of new things to test). can i get a 1 day key ? or can i buy it for a month ?

thanks!

Paraly 04/03/2018 18:45

Quote:

Originally Posted by blwzification (Post 36804143)
yo

i had this tool like 2-3 (or more ) ago and it was great!

i would like to buy it again but i want to test it first (because there are lots of new things to test). can i get a 1 day key ? or can i buy it for a month ?

thanks!

Send me a PM with your [Only registered and activated users can see links. Click Here To Register...]

gato7020 04/03/2018 20:37

Teste
 
Quote:

Originally Posted by Paraly (Post 36804172)
Send me a PM with your [Only registered and activated users can see links. Click Here To Register...]

Hello, good afternoon, I'm very interested in buying Vanilla, but I'm new to this and I wanted to take some doubts. Is there any way to talk to you? and the way of paying Because I'm from Brazil.


All times are GMT +2. The time now is 08:49.

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