Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Aion
You last visited: Today at 23:43

  • 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! 264 36.97%
No, english and german are enough for me. 450 63.03%
Voters: 714. You may not vote on this poll

Reply
 
Old 12/30/2018, 21:52   #2146
 
elite*gold: 0
Join Date: Dec 2018
Posts: 19
Received Thanks: 1
Ahh, Cool, Sorry. not used to your scripts yet

I was mistaken and I think I found the problem. Was not the skills at all or cool-downs. it was the 'MANTRAS' it tries to run them again on every single kill and says 'you are not ready to use that skill'. If I remove the mantras from ACBuffs I do not see that error any more and kills instantly.

_ACSkills=1600,1767,1626,1789,1647,4730,1874,1837, 1903;


Also seems to have the same problem with the oath skill as that one has 10 sec cd.
fzg is offline  
Old 12/30/2018, 21:54   #2147
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,596
Received Thanks: 1,596
Quote:
Originally Posted by fzg View Post
Ahh, Cool, Sorry. not used to your scripts yet

I was mistaken and I think I found the problem. Was not the skills at all or cool-downs. it was the 'MANTRAS' it tries to run them again on every single kill and says 'you are not ready to use that skill'. If I remove the mantras from ACBuffs I do not see that error any more and kills instantly.

_ACSkills=1600,1767,1626,1789,1647,4730,1874,1837, 1903;


Also seems to have the same problem with the oath skill as that one has 10 sec cd.
You need to use _ACRelyOnBuff, this command binds a certain skill to a buff ID, so only if the buff ID isn't active anymore he'll reuse the buff

You find a whole commandlist regarding the AutoCombat system at the topic



Note: rule commands like _ACRelyOnBuff need to be declared before _ACBuffs, _ACSkills, _ACHeals
Paraly is offline  
Old 12/30/2018, 22:39   #2148
 
elite*gold: 0
Join Date: Dec 2018
Posts: 19
Received Thanks: 1
YEAH. Sorry, coppied the wrong line it is _ACBUFFS (it is the original one)

_ACBuffs=4642,1809,1666,1689,4731,4732,4868,1813,1 810,1758,1638,1656;

It is trying to re-use them cos when I delete the line it's all ok.

I tried just having the 3 mantras and I have the problem.

_ACBuffs=4642,1809,1666;


then I tried to use just the hp buff

_ACBuffs=1689;

and I don't get the problem.
fzg is offline  
Old 12/30/2018, 22:47   #2149
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,596
Received Thanks: 1,596
Quote:
Originally Posted by fzg View Post
YEAH. Sorry, coppied the wrong line it is _ACBUFFS (it is the original one)

_ACBuffs=4642,1809,1666,1689,4731,4732,4868,1813,1 810,1758,1638,1656;

It is trying to re-use them cos when I delete the line it's all ok.

I tried just having the 3 mantras and I have the problem.

_ACBuffs=4642,1809,1666;


then I tried to use just the hp buff

_ACBuffs=1689;

and I don't get the problem.
Oh sorry I meaned you need
_ACRelyOnBuff
this command is the one that binds a skill to a buff

so for example
Code:
_ACRelyOnBuff=4681,4681;
_ACRelyOnBuff=1809,1809;

_ACBuffs=4681,1809,7162;
Paraly is offline  
Old 12/31/2018, 00:04   #2150
 
elite*gold: 0
Join Date: Dec 2018
Posts: 19
Received Thanks: 1
ahh ok. now I get it. Thanks a lot

They are there, but I know what to play with now will post an updated script if I manage to fix it
fzg is offline  
Old 12/31/2018, 11:54   #2151
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,596
Received Thanks: 1,596
This script can detect certain NPC IDs within ~110 meters, you can use this to detect the shugos, elyos, asmos, kisks, or any other NPC if you got the NPC ID
Attached Files
File Type: zip NPC Detector - Script ver. 1.02.zip (6.1 KB, 16 views)
Paraly is offline  
Old 01/01/2019, 15:38   #2152
 
elite*gold: 0
Join Date: Dec 2018
Posts: 5
Received Thanks: 0
yo man
can you check your broker bot script?
it is not work and at least doesn't check the first step about opening window of broker etc
i tried to modificate but it seems that offsets changed and position in memory changed too

HAPPY NEW YEAR!!!
dermitay is offline  
Old 01/01/2019, 15:46   #2153
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,596
Received Thanks: 1,596
Quote:
Originally Posted by dermitay View Post
yo man
can you check your broker bot script?
it is not work and at least doesn't check the first step about opening window of broker etc
i tried to modificate but it seems that offsets changed and position in memory changed too

HAPPY NEW YEAR!!!
Try this version
Attached Files
File Type: zip Broker_Bot_simplified.zip (2.4 KB, 24 views)
Paraly is offline  
Thanks
2 Users
Old 01/01/2019, 18:04   #2154
 
elite*gold: 0
Join Date: Dec 2018
Posts: 5
Received Thanks: 0
Quote:
Originally Posted by Paraly View Post
Try this version
it's worked cool, but checking the price of item is not correct xD
example - i want to buy something with price below 1k. i have in inventory 50kkk
when i run script it buy anyway item even it costs 10kk.

and you rewrite the memory of kinah of character.
it's mean that when you buy something kinahs in inventory doesn't changed

all testing was on EU

just need to find the price in frame 190 and 510

PS: so yes i understood logic. you rewrite cap of kinah to inventory. but this method doesn't work correctly
it's possible to read memory when frames 190 or 510 popup?
i checked frame 190 in Cheatengine and this position looks like a static. i read much your guides but still i don't understand how to find this position in memory in your script editor...

so i need find the way to check prices of 510 and 190 frames and that's all.
dermitay is offline  
Old 01/02/2019, 00:39   #2155
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,596
Received Thanks: 1,596
No, it's just a delay thing.
Attached Files
File Type: zip Broker Bot simplified 1.25.zip (2.4 KB, 8 views)
Paraly is offline  
Thanks
1 User
Old 01/02/2019, 01:47   #2156
 
elite*gold: 0
Join Date: Dec 2018
Posts: 5
Received Thanks: 0
Quote:
Originally Posted by Paraly View Post
No, it's just a delay thing.
hum... i don't understnad, it's possible to read price of item which are in stack or not?
idea to make cap of buy with rewriting memory client is interesting, but this works perfect only with 1 item, i talk about stack of much items

and just for fun. after some times the button "refresh" becomes disabled. i think this is little shield from GF.

but i use something like this that script works normally. ofc it's looks little stupid, to use timer more cool xD
dermitay is offline  
Old 01/02/2019, 02:31   #2157
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,596
Received Thanks: 1,596
Quote:
Originally Posted by dermitay View Post
hum... i don't understnad, it's possible to read price of item which are in stack or not?
idea to make cap of buy with rewriting memory client is interesting, but this works perfect only with 1 item, i talk about stack of much items

and just for fun. after some times the button "refresh" becomes disabled. i think this is little shield from GF.

but i use something like this that script works normally. ofc it's looks little stupid, to use timer more cool xD
It also works with stacks of items as long as they're sold as split sale, if it's stack sale the stack price needs to be lower than your price cap

I didn't knew the Refresh button would get locked after some time, will add your prevention
Attached Files
File Type: zip Broker Bot simplified 1.26.zip (2.5 KB, 12 views)
File Type: zip Broker_Bot_simplified_1.28.zip (2.5 KB, 6 views)
Paraly is offline  
Thanks
1 User
Old 01/02/2019, 02:49   #2158
 
elite*gold: 0
Join Date: Dec 2018
Posts: 5
Received Thanks: 0
Quote:
Originally Posted by Paraly View Post
It also works with stacks of items as long as they're sold as split sale, if it's stack sale the stack price needs to be lower than your price cap
oke-oke. i try to describe.

for example i have 100500kkk++ kinahs and i want use them all.
but i want to buy only items which costs less than 1k, which can be in stack x1000 and all stack x1000 will costs 1kk. but normal price of this one item for example 1kk

what i can do?
if i will enter cap 1k - i will not buy this stack x1000 with price less than 1k.
if i will enter cap 1kk - i will buy 1 item by price 1kk.
that's why i asked about offset of 190 Frame

anyway thanks a lot =)
dermitay is offline  
Old 01/02/2019, 03:00   #2159
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,596
Received Thanks: 1,596
Quote:
Originally Posted by dermitay View Post
oke-oke. i try to describe.

for example i have 100500kkk++ kinahs and i want use them all.
but i want to buy only items which costs less than 1k, which can be in stack x1000 and all stack x1000 will costs 1kk. but normal price of this one item for example 1kk

what i can do?
if i will enter cap 1k - i will not buy this stack x1000 with price less than 1k.
if i will enter cap 1kk - i will buy 1 item by price 1kk.
that's why i asked about offset of 190 Frame

anyway thanks a lot =)
Like I said it works for Split Sale, just enter the unit price and stop thinking about it, it will buy the stacks.
Paraly is offline  
Old 01/05/2019, 15:08   #2160
 
elite*gold: 0
Join Date: Dec 2018
Posts: 19
Received Thanks: 1
Quote:
Originally Posted by Paraly View Post
Oh sorry I meaned you need
_ACRelyOnBuff
this command is the one that binds a skill to a buff

so for example
Code:
_ACRelyOnBuff=4681,4681;
_ACRelyOnBuff=1809,1809;

_ACBuffs=4681,1809,7162;


Hiya,

So, I've been traveling so not had a chance to look at this. I've done some playing round today and managed to get it to work and not see the skill not ready error any more (launches skills much much quicker now)

It had indeed to do with the mantras and looking at the rest of the skill I found another command so used that one for the mantras and works perfectly.

old one:
;;_ACRelyOnBuff=4642,4642;
;;_ACRelyOnBuff=1666,1666;
;;_ACRelyOnBuff=1809,1809;

New one: (ACIsActive), Found this on the aethertec script

_ACIsActive=4642,True;
_ACIsActive=1666,True;
_ACIsActive=1809,True;


With this command the bot will not try to put the mantras on on every single fight. Might or might not be the way it's supposed to work, but it works for me.
fzg 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 23:43.


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.