Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Aion
You last visited: Today at 02:20

  • 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 09/24/2015, 20:40   #46
 
elite*gold: 0
Join Date: Mar 2015
Posts: 37
Received Thanks: 2
Just tried Eso script again. This time there were no chests. Grouped with a lower level like first time. [Although this is a new account /computer for your scripts. Bought today.] Is there something else I did wrong?
Thanks.
Xman2222 is offline  
Old 09/26/2015, 03:05   #47
 
elite*gold: 0
Join Date: Mar 2015
Posts: 37
Received Thanks: 2
Are my settings supposed to be something specific. Hexway and Esso scripts keep putting me back at the beginning. Do not work. Or I stay at the beginning and then all of sudden I'm somewhere else in the movements.

None of profiles will stay either. Go back to reload everything I've setup and they are not there.
Xman2222 is offline  
Old 09/26/2015, 03:17   #48
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,588
Received Thanks: 1,591
Quote:
Originally Posted by Xman2222 View Post
Are my settings supposed to be something specific. Hexway and Esso scripts keep putting me back at the beginning. Do not work. Or I stay at the beginning and then all of sudden I'm somewhere else in the movements.

None of profiles will stay either. Go back to reload everything I've setup and they are not there.
Are you using the latest version? (2.12)
No the script editor enables all the things he needs by himself, did you watched the video for the specific instances?
Don't do anything while the script is running and also be sure you focus the aion window.
Paraly is offline  
Old 09/30/2015, 10:09   #49
 
elite*gold: 0
Join Date: Feb 2014
Posts: 6
Received Thanks: 0
in handicraft, sanctum is failling clicking on the work order, i mean he's clicking a bit high from the option, can you check it?
this coordinate i mean

Mouse=676,96;start work order dialog
Delay=750;
Mouse=656,71;first work order
Delay=750;
Mouse=733,309;accept work order
pomelorocko1 is offline  
Old 09/30/2015, 11:39   #50
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,588
Received Thanks: 1,591
Quote:
Originally Posted by pomelorocko1 View Post
in handicraft, sanctum is failling clicking on the work order, i mean he's clicking a bit high from the option, can you check it?
this coordinate i mean

Mouse=676,96;start work order dialog
Delay=750;
Mouse=656,71;first work order
Delay=750;
Mouse=733,309;accept work order
Did you moved the x_data.pak file to the right directory?
the crafting NPC should have no dialog

------------------------

I have updated the hexway script again, lvl 55 people shouldn't add the mobs now
Paraly is offline  
Old 10/01/2015, 10:46   #51
 
elite*gold: 0
Join Date: Feb 2014
Posts: 6
Received Thanks: 0
Quote:
Originally Posted by Paraly View Post
Did you moved the x_data.pak file to the right directory?
the crafting NPC should have no dialog

------------------------

I have updated the hexway script again, lvl 55 people shouldn't add the mobs now
yup, i did step by step, everything is ok, but as i said, the script is clicking a bit high from the quest, that's all :/, i mean the coordinates are clicking a bit high, do you understand me?
pomelorocko1 is offline  
Old 10/01/2015, 10:53   #52
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,588
Received Thanks: 1,591
Quote:
Originally Posted by pomelorocko1 View Post
yup, i did step by step, everything is ok, but as i said, the script is clicking a bit high from the quest, that's all :/, i mean the coordinates are clicking a bit high, do you understand me?
Sure I know what you mean I just thought about the x_data.pak cause it cuts every dialog from the crafting NPCs so there just the learn job and the work order button this also means that the coordinates are different compared to a default client.
However why it should work everyone else except you?
Paraly is offline  
Old 10/05/2015, 02:49   #53
 
elite*gold: 0
Join Date: Dec 2014
Posts: 5
Received Thanks: 0
I know how this sounds but would you be making one for watering guestblooms? lol like godstone blooms and Cat weapon blooms?
gladsmasher is offline  
Old 10/05/2015, 15:14   #54
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,588
Received Thanks: 1,591
Quote:
Originally Posted by gladsmasher View Post
I know how this sounds but would you be making one for watering guestblooms? lol like godstone blooms and Cat weapon blooms?
That's really easy, just make your own script, I give you a example

For one Guestbloom
Code:
#UseLoop
Command=/select Dye Petal Guestbloom;
Delay=150;
Command=/attack;
Delay=5500;

Delay=180000;
For 3 Guestblooms
Code:
#UseLoop
Command=/select Dye Petal Guestbloom;
Delay=150;
Command=/attack;
Delay=5500;

Command=/select Recovery Guestbloom;
Delay=150;
Command=/attack;
Delay=5500;

Command=/select Manastone Guestbloom;
Delay=150;
Command=/attack;
Delay=5500;

Delay=180000;
You just have to replace the guestblooms names
Paraly is offline  
Old 10/06/2015, 02:48   #55
 
elite*gold: 0
Join Date: Dec 2014
Posts: 5
Received Thanks: 0
ahh thanks! Will this work if i have lets say 3 of the same named blooms?
gladsmasher is offline  
Old 10/06/2015, 02:49   #56
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,588
Received Thanks: 1,591
Quote:
Originally Posted by gladsmasher View Post
ahh thanks! Will this work if i have lets say 3 of the same named blooms?
Hm no, I'll give you a suggestion for this tomorrow, or in few minutes

Alright I got it, you have to brand every guestbloom before you start the script with 1, 2 and 3

Code:
#UseLoop
Command=/SelectBrand 1;
Delay=150;
Command=/attack;
Delay=5500;

Command=/SelectBrand 2;
Delay=150;
Command=/attack;
Delay=5500;

Command=/SelectBrand 3;
Delay=150;
Command=/attack;
Delay=5500;

Delay=180000;
Paraly is offline  
Old 10/07/2015, 00:13   #57
 
elite*gold: 0
Join Date: Jan 2015
Posts: 1
Received Thanks: 0
I followed the exact instruction, but there is a problem with clicking on crafting list, it does click on slightly higher then craft all button, so the script doesnt work, i was trying weaponsmith btw. i copied x-data so, theres no problem with talking to npc and getting the work order, how can i fix this?

Thank you.
choid3 is offline  
Old 10/07/2015, 00:15   #58
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,588
Received Thanks: 1,591
Quote:
Originally Posted by choid3 View Post
I followed the exact instruction, but there is a problem with clicking on crafting list, it does click on slightly higher then craft all button, so the script doesnt work, i was trying weaponsmith btw. i copied x-data so, theres no problem with talking to npc and getting the work order, how can i fix this?

Thank you.
which client you use EU or NA?
which script file you load?

I'm pretty sure you use the NA client and you load the eng version of the script.
If a US version is available you should everytime prefer them at NA
Paraly is offline  
Old 10/09/2015, 12:21   #59
 
elite*gold: 0
Join Date: Jul 2013
Posts: 55
Received Thanks: 4
para kann man mit deinem script editor auch sachen zerlegen (zb schimmerndes korund direkt in normales korund) ?
newdawn005 is offline  
Old 10/09/2015, 13:28   #60
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,588
Received Thanks: 1,591
Quote:
Originally Posted by newdawn005 View Post
para kann man mit deinem script editor auch sachen zerlegen (zb schimmerndes korund direkt in normales korund) ?
Klar einfach mit
Code:
#UseLoop
Command=/Use Großes Diamanterz;
Delay=3100;
Itemname musst du ersetzen
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 +1. The time now is 02:20.


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.