Para's Script Library

07/24/2017 22:48 Superkinah#1396
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 ..
07/24/2017 22:54 Paraly#1397
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 [Only registered and activated users can see links. Click Here To Register...], it explains how to use SmartSkill.

Scroll down at the Combat routine to "start_CombatSongweaver;" and add your SmartSkill lines like I did there
07/24/2017 23:39 Superkinah#1398
Quote:
Originally Posted by Paraly View Post
Take a look [Only registered and activated users can see links. Click Here To Register...], 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?
07/24/2017 23:46 kreithner#1399
Paraly one Video Tuto de AoE pls
07/24/2017 23:51 Paraly#1400
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
07/25/2017 00:28 kreithner#1401
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
07/25/2017 00:31 Paraly#1402
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.
07/25/2017 00:45 kreithner#1403
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
07/25/2017 23:19 banhahu#1404
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.
07/25/2017 23:20 Paraly#1405
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.
07/26/2017 22:53 Superkinah#1406
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 ^^
07/27/2017 00:43 Paraly#1407
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?
07/27/2017 02:38 Kakabuter#1408
what that ? ''aioncefprocess'' in gerenciador task manager windows ? this now in update 07/19/2017 lol
07/27/2017 02:40 Paraly#1409
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
07/27/2017 03:04 Kakabuter#1410
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