Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Aion
You last visited: Today at 19:45

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

Advertisement



Para's Script Library

Discussion on Para's Script Library within the Aion forum part of the MMORPGs category.

View Poll Results: You want the scripts for any client language?
Yes, surely! 263 36.89%
No, english and german are enough for me. 450 63.11%
Voters: 713. You may not vote on this poll

Reply
 
Old 05/03/2018, 20:57   #1921
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
Quote:
Originally Posted by crazymonkey84 View Post
Is anyone else having problems to launch the game in 64bits N/A. i cant use my para´s tool


Everyone is having the problem who installed the recent windows update, at the thread there was also a solution posted, if that solution doesn't solve it you can use bypass instead
Paraly is offline  
Old 05/13/2018, 12:32   #1922
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
If anyone is playing cleric you might want this fastscript, it will use a "Superior Recovery Potion" when you got less than 80% mana (customizable)

It also detects if you got an debuff it will automatically use cleanse on yourself, there's also a filter to avoid using cleanse on unremovable debuffs like soulsickness or stuns

Just download and put this fastscript.pscp file in the same directory as vanillatool.exe is, restart vanillatool and turn "Fastscript" on at the overlay, done (this script is not designed for the Script Editor it will run in background)
Attached Files
File Type: zip fastscript.zip (930 Bytes, 10 views)
Paraly is offline  
Old 05/13/2018, 23:34   #1923
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
Here're some examples for the new commands I've added in 4.85

DisplayHex is just for advanced users, it can be used to check a memory area and see how the area reacts to certain actions you do
Code:
#DO=9999999999; <-- starts infinite loop
_MemPtrReadVar=%PlayerBase,%OffsetData/0x0,BYTE[512],1; <-- read the first 512 bytes and save them in variable 1
_MemPtrReadVar=%PlayerBase,%OffsetData,BYTE[4],2; <-- save address we read from in variable 2 (reversed)
DisplayHex=%Var1,0,0,HexView <-: %Var2; <-- display the information at screen coordinate x:0 y:0
Delay=100;
#UNTIL=1,5; <-- impossible condition, jump back to #DO

SessionPushVar pushes a variable into a global area which can be accessed from all Script Editors, so you can push a variable from Script Editor 1 to Script Editor 2 comes in handy if multiple Clients need to work together

Script 1
Code:
#IF=%FirstTime,;
#SetVar1=Which value should be transfered to the second Script Editor/n/nvalue should be higher than 0;
_SetVar2=0; <-- didn't receive answer yet
#ENDIF

SessionPushVar=1; <-- Shares Variable 1

WaitForResponse=Shared Var1 with the value %Var1 globaly and wait for an answer;

#DO=120000;
Delay=1000;
SessionGetVar=2; <-- Retrieves Variable 2
#UNTIL=%Var2,=1; <-- Checks if Variable 2 is equal 1

_SetVar1=0;
_SetVar2=0;
SessionPushVar=1; <-- Resets Variable 1
SessionPushVar=2; <-- Resets Variable 2
WaitForResponse=Received the answer;

Script 2
Code:
#IF=%FirstTime,;
_SetVar1=0;
#ENDIF

#DO=120000;
Delay=1000;
SessionGetVar=1; <-- Retrieves Variable 1
#UNTIL=%Var1,>0; <-- Checks if %Variable 1 is greater than 0

WaitForResponse=Received %Var1, going to push 1 into Var2 and share it globaly;

_SetVar2=1; <-- Sets Variable 2 to 1
SessionPushVar=2; <-- Shares Variable 2

Note: The Session area can be viewed when you copy this into your file explorer address bar
Code:
%temp%/Session.ini
Paraly is offline  
Thanks
1 User
Old 05/14/2018, 01:22   #1924
 
elite*gold: 0
Join Date: May 2012
Posts: 8
Received Thanks: 1
paraly you have fast script for super jump? autoattack? autochain?

If you can, can you give me the link?
haarrd is offline  
Old 05/14/2018, 01:28   #1925
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
Quote:
Originally Posted by haarrd View Post
paraly you have fast script for super jump? autoattack? autochain?

If you can, can you give me the link?
You also want to use conditional skills like shock remove?
Paraly is offline  
Old 05/14/2018, 01:35   #1926
 
elite*gold: 0
Join Date: May 2012
Posts: 8
Received Thanks: 1
Quote:
Originally Posted by Paraly View Post
You also want to use conditional skills like shock remove?

yes if possible I want to use everything that is possible, because currently I have opened several instances of script to be able to execute all
if it is possible a window to execute all will be much easier for me
haarrd is offline  
Old 05/14/2018, 02:12   #1927
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
Quote:
Originally Posted by haarrd View Post
yes if possible I want to use everything that is possible, because currently I have opened several instances of script to be able to execute all
if it is possible a window to execute all will be much easier for me
Use the vanillatool together with the script only when you need the fastscript, overlay functions or script editor will be paused while the fastscript runs

so when you need overlay functions or the script editor use your normal vanillatool.exe from another folder
Attached Files
File Type: zip AutoChain - AutoAttack - Superjump.zip (3.65 MB, 8 views)
Paraly is offline  
Thanks
1 User
Old 05/14/2018, 02:53   #1928
 
elite*gold: 0
Join Date: May 2012
Posts: 8
Received Thanks: 1
Quote:
Originally Posted by Paraly View Post
Use the vanillatool together with the script only when you need the fastscript, overlay functions or script editor will be paused while the fastscript runs

so when you need overlay functions or the script editor use your normal vanillatool.exe from another folder

I understood thanks a lot, like a boy said you are a legend ^^
I'm your fan, you work keeps me in this game.

NCsoft owes much to you in some way
haarrd is offline  
Thanks
1 User
Old 05/14/2018, 14:24   #1929
 
elite*gold: 0
Join Date: Oct 2016
Posts: 108
Received Thanks: 2
Nothing Happens after press "Delete" in Kromede Event Script
nickjaspion is offline  
Old 05/14/2018, 14:27   #1930
 
elite*gold: 0
Join Date: Nov 2007
Posts: 73
Received Thanks: 20
Quote:
Originally Posted by nickjaspion View Post
Nothing Happens after press "Delete" in Kromede Event Script
Sometimes you gotta press "Delete" twice, then you will see the code running in the script editor, after that it will run automatically to the first boss.
thekiller258 is offline  
Old 05/14/2018, 18:30   #1931
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
Quote:
Originally Posted by nickjaspion View Post
Nothing Happens after press "Delete" in Kromede Event Script
Quote:
Originally Posted by thekiller258 View Post
Sometimes you gotta press "Delete" twice, then you will see the code running in the script editor, after that it will run automatically to the first boss.
Or hold the "Delete" key for 3 seconds
Paraly is offline  
Thanks
1 User
Old 05/14/2018, 19:30   #1932
 
elite*gold: 0
Join Date: Nov 2014
Posts: 51
Received Thanks: 0
is it possible to launch 3 clients on one pc?
Tokaku is offline  
Old 05/14/2018, 19:32   #1933
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
Quote:
Originally Posted by Tokaku View Post
is it possible to launch 3 clients on one pc?
Of course, download sandboxie

With the free version of sandboxie you can run up to 4 Aion Clients, with the paid version you can run unlimited clients

If you play at NA you should read this
Paraly is offline  
Old 05/16/2018, 14:06   #1934
 
elite*gold: 0
Join Date: Aug 2012
Posts: 32
Received Thanks: 5
Quote:
Originally Posted by Paraly View Post
With the free version of sandboxie you can run up to 4 Aion Clients, with the paid version you can run unlimited clients
Could you look into getting the tool to work with Comodo? It's a really nice anti-virus with a build in sandboxie feature! Can download it for free and as far as I know, open as many Aion clients as you want!

I looked at the guide you mentioned and that seems like a bit of work just to get a 3rd client open where as Comodo is just install and go!
EliteChanter is offline  
Old 05/16/2018, 14:10   #1935
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
Quote:
Originally Posted by EliteChanter View Post
Could you look into getting the tool to work with Comodo? It's a really nice anti-virus with a build in sandboxie feature! Can download it for free and as far as I know, open as many Aion clients as you want!

I looked at the guide you mentioned and that seems like a bit of work just to get a 3rd client open where as Comodo is just install and go!
Why don't you just deactivate the real time protection of it and use just it's sandboxie like feature?
Paraly is offline  
Thanks
1 User
Reply

Tags
aion, autocomplete instance, script, vanillatool


Similar Threads Similar Threads
Script para todos os Lastchaos - Autohokey
01/29/2012 - Last Chaos - 1 Replies
I got a script that clicks several times with the click right mouse clicks when monster picks up the tarjeta. so he just throws the skill. I used AutoHotkey program. in AutoHotkey - Free Mouse and Keyboard Macro Program with Hotkeys and AutoText Needs improvement. I accept any help. I'm from Brazil. ------------------------------------------------- --------------------------
[Release]Big Script Library
07/25/2010 - SRO PServer Guides & Releases - 0 Replies
I think its a good idea to open this Topic. I need Your Help. Sent me your own made Scripts and i upload them here. It does not matter if there is already a script by the mob. Only Self made scripts!!! What To Post? Post me not the text file.Post me the script!!! Scorpion 1 by Th3Stalker



All times are GMT +2. The time now is 19:45.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

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