Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Aion
You last visited: Today at 15: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 07/24/2017, 22:48   #1396
 
elite*gold: 0
Join Date: Dec 2016
Posts: 36
Received Thanks: 0
Hello para how to personalisser my bot the bard does not want to use his dysarmony I try to optimize it does not use it ED either when it is available which is a pity ..
Superkinah is offline  
Old 07/24/2017, 22:54   #1397
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,588
Received Thanks: 1,591
Quote:
Originally Posted by Superkinah View Post
Hello para how to personalisser my bot the bard does not want to use his dysarmony I try to optimize it does not use it ED either when it is available which is a pity ..
Take a look , it explains how to use SmartSkill.

Scroll down at the Combat routine to "start_CombatSongweaver;" and add your SmartSkill lines like I did there
Paraly is offline  
Old 07/24/2017, 23:39   #1398
 
elite*gold: 0
Join Date: Dec 2016
Posts: 36
Received Thanks: 0
Quote:
Originally Posted by Paraly View Post
Take a look , it explains how to use SmartSkill.

Scroll down at the Combat routine to "start_CombatSongweaver;" and add your SmartSkill lines like I did there

I have 2 question or find Smart Skill I do not find it ..

And how to find the number of each skill?
Superkinah is offline  
Old 07/24/2017, 23:46   #1399
 
elite*gold: 0
Join Date: Mar 2015
Posts: 33
Received Thanks: 1
Paraly one Video Tuto de AoE pls
kreithner is offline  
Old 07/24/2017, 23:51   #1400
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,588
Received Thanks: 1,591
Quote:
Originally Posted by Superkinah View Post
I have 2 question or find Smart Skill I do not find it ..

And how to find the number of each skill?
You can find the Skill IDs by checking "Show IDs" at the Script Editor and hover above the skill ingame.

Open up the "combat routine.pscp" in your favorite text editor like notepad++
press CTRL+F and search for "start_CombatSongweaver;"
Scroll a bit down to this lines
Code:
#DO=180000;

_IFMemPtrRead=%TargetBase,%OffsetPercentHP,BYTE,=100;
SmartSkill=4296,16000,750,1250,False; <- Syncopated Echo
#ENDIF
Now as an example we add Disharmony like the SmartSkill guide describes

first we just want to use the skill if the target has above 50% health since it's some nuke we don't wanna waste, this rule can be done like this

Code:
_IFMemPtrRead=%TargetBase,%OffsetPercentHP,BYTE,>50;
<-- smartskill here
#ENDIF
So Disharmony has the skill ID 4489, cooldown of 60 seconds which means 60000 milliseconds, it has some animation time of like 650ms, it has no chain and also it's no charging skill
So the final result should look like this

Code:
_IFMemPtrRead=%TargetBase,%OffsetPercentHP,BYTE,>50;
SmartSkill=4489,60000,650,False,False; <- Disharmony
#ENDIF
Now we paste this snippet right below this

Code:
#DO=180000;

_IFMemPtrRead=%TargetBase,%OffsetPercentHP,BYTE,=100;
SmartSkill=4296,16000,750,1250,False; <- Syncopated Echo
#ENDIF
Quote:
Originally Posted by kreithner View Post
Paraly one Video Tuto de AoE pls
It's very simple script without any preparations also it has no great loot, I don't see why I should do a video about it.
Just start the script right from where you spawn when you enter the instance and be sure you use the english lang pack and 100% UI size
Paraly is offline  
Old 07/25/2017, 00:28   #1401
 
elite*gold: 0
Join Date: Mar 2015
Posts: 33
Received Thanks: 1
It's very simple script without any preparations also it has no great loot, I don't see why I should do a video about it.
Just start the script right from where you spawn when you enter the instance and be sure you use the english lang pack and 100% UI size[/QUOTE]


My question was more because I previously read that there were boxes that dropped item like omega supplements, but it's lucky that you get the boxes so I made a rush and there was nothing on the whole walk
kreithner is offline  
Old 07/25/2017, 00:31   #1402
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,588
Received Thanks: 1,591
Quote:
Originally Posted by kreithner View Post
My question was more because I previously read that there were boxes that dropped item like omega supplements, but it's lucky that you get the boxes so I made a rush and there was nothing on the whole walk
There are 2 rooms with chests, one room has 7 chests but just one of them is correct the script will automatically find the right one, the other chest room just contains one chest.
I haven't tried it since 5.6 but the patchnotes mentioned they changed the loot in archives of eternity maybe they have removed the chests already.

And no the omegas you read about were about cradle of eternity / garden of knowledge which is a different instance.
Paraly is offline  
Old 07/25/2017, 00:45   #1403
 
elite*gold: 0
Join Date: Mar 2015
Posts: 33
Received Thanks: 1
Quote:
Originally Posted by Paraly View Post
You can find the Skill IDs by checking "Show IDs" at the Script Editor and hover above the skill ingame.

Open up the "combat routine.pscp" in your favorite text editor like notepad++
press CTRL+F and search for "start_CombatSongweaver;"
Scroll a bit down to this lines
Code:
#DO=180000;

_IFMemPtrRead=%TargetBase,%OffsetPercentHP,BYTE,=100;
SmartSkill=4296,16000,750,1250,False; <- Syncopated Echo
#ENDIF
Now as an example we add Disharmony like the SmartSkill guide describes

first we just want to use the skill if the target has above 50% health since it's some nuke we don't wanna waste, this rule can be done like this

Code:
_IFMemPtrRead=%TargetBase,%OffsetPercentHP,BYTE,>50;
<-- smartskill here
#ENDIF
So Disharmony has the skill ID 4489, cooldown of 60 seconds which means 60000 milliseconds, it has some animation time of like 650ms, it has no chain and also it's no charging skill
So the final result should look like this

Code:
_IFMemPtrRead=%TargetBase,%OffsetPercentHP,BYTE,>50;
SmartSkill=4489,60000,650,False,False; <- Disharmony
#ENDIF
Now we paste this snippet right below this

Code:
#DO=180000;

_IFMemPtrRead=%TargetBase,%OffsetPercentHP,BYTE,=100;
SmartSkill=4296,16000,750,1250,False; <- Syncopated Echo
#ENDIF


It's very simple script without any preparations also it has no great loot, I don't see why I should do a video about it.
Just start the script right from where you spawn when you enter the instance and be sure you use the english lang pack and 100% UI size
Quote:
Originally Posted by Paraly View Post
There are 2 rooms with chests, one room has 7 chests but just one of them is correct the script will automatically find the right one, the other chest room just contains one chest.
I haven't tried it since 5.6 but the patchnotes mentioned they changed the loot in archives of eternity maybe they have removed the chests already.

And no the omegas you read about were about cradle of eternity / garden of knowledge which is a different instance.


I tested it in AoE, and it does not find anything ... in the end an errorcode 16 comes out, and I do not find anything to have it if you try and find the new ones and for the other instances you mentioned there are also scrip or kill and collect
kreithner is offline  
Old 07/25/2017, 23:19   #1404
 
elite*gold: 0
Join Date: Jul 2016
Posts: 10
Received Thanks: 1
He would have to edit the file of fallen poet for the aethertech to do with pistols, he possesses 4 skill of pistol that gives to kill the surkanas.
banhahu is offline  
Old 07/25/2017, 23:20   #1405
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,588
Received Thanks: 1,591
Quote:
Originally Posted by banhahu View Post
He would have to edit the file of fallen poet for the aethertech to do with pistols, he possesses 4 skill of pistol that gives to kill the surkanas.
I'm pretty sure I already added aethertech support to the fallen poeta script.
Paraly is offline  
Old 07/26/2017, 22:53   #1406
 
elite*gold: 0
Join Date: Dec 2016
Posts: 36
Received Thanks: 0
Hi para a script to make Adma the end boss 66 + he loot things simpas and a quests is give for xp ?

Hi para a script to make Adma the end boss 66 + he loot things simpas and a quests is give for xp ^^
Superkinah is offline  
Old 07/27/2017, 00:43   #1407
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,588
Received Thanks: 1,591
Quote:
Originally Posted by Superkinah View Post
Hi para a script to make Adma the end boss 66 + he loot things simpas and a quests is give for xp ?

Hi para a script to make Adma the end boss 66 + he loot things simpas and a quests is give for xp ^^
Why don't you try the auto kill boss script?
Paraly is offline  
Old 07/27/2017, 02:38   #1408
 
elite*gold: 0
Join Date: Nov 2015
Posts: 19
Received Thanks: 0
what that ? ''aioncefprocess'' in gerenciador task manager windows ? this now in update 07/19/2017 lol
Kakabuter is offline  
Old 07/27/2017, 02:40   #1409
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,588
Received Thanks: 1,591
Quote:
Originally Posted by Kakabuter View Post
what that ? ''aioncefprocess'' in gerenciador task manager windows ? this now in update 07/19/2017 lol
Looks like it's used for the new ingame recording function
Paraly is offline  
Old 07/27/2017, 03:04   #1410
 
elite*gold: 0
Join Date: Nov 2015
Posts: 19
Received Thanks: 0
Quote:
Originally Posted by Kakabuter View Post
what that ? ''aioncefprocess'' in gerenciador task manager windows ? this now in update 07/19/2017 lol
oh thx I thought it would be gameguard ! =s
Kakabuter is offline  
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 15: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.