Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Aion
You last visited: Today at 11:44

  • 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 06/15/2020, 01:49   #2476
 
elite*gold: 0
Join Date: Feb 2018
Posts: 17
Received Thanks: 1
Quote:
Originally Posted by Paraly View Post
Code:
#IF=%FirstTime,;
#SmoothBackground
#UseLoop
MemPtrWrite=%AddrFPS,%OffsetFPS1,30,BYTE; FPS Cap change 30 to what ever you want
MemPtrWrite=%AddrFPS,%OffsetFPS2,30,FLOAT; FPS Cap change 30 to what ever you want
#SetVar=SkillName,Enter the Skill name that should be used every 40 seconds;
UseSpeed=1;
#ENDIF

#IF=%Timer=55,40000;
Command=/skill %Var[SkillName];
Delay=1000;
CreateTimer=55;
#ENDIF

#EXECUTE=CheckEXP;
Delay=100;


start_CheckEXP;

_MemReadVar=%AddrMaxEXP,DWORD,MaxExp;
_MemReadVar=%AddrCurrentEXP,DWORD,CurrentExp;
_Calc[ExpPercent]=%Var[CurrentExp]/%Var[MaxExp];
_Calc[ExpPercent]=%Var[ExpPercent]*100;
#IF=%Var[ExpPercent],>50; // IF above 50% exp
#IF=%Var[ExpConsumable],=1;
_IFInventoryContains=188922000; // EXP Extractor
UseID=188922000;
Delay=1250;
SendKey=0x0D;
Delay=1500;
Command=;
#ENDIF

end_CheckEXP;
I tested it, and as i could see, its not using the experience extractor :<
Batterypvp is offline  
Old 06/15/2020, 10:47   #2477
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
Quote:
Originally Posted by Batterypvp View Post
I tested it, and as i could see, its not using the experience extractor :<
Sorry there was one line I copied over that shouldn't be there

Code:
#IF=%FirstTime,;
#SmoothBackground
#UseLoop
MemPtrWrite=%AddrFPS,%OffsetFPS1,30,BYTE; FPS Cap change 30 to what ever you want
MemPtrWrite=%AddrFPS,%OffsetFPS2,30,FLOAT; FPS Cap change 30 to what ever you want
#SetVar=SkillName,Enter the Skill name that should be used every 40 seconds;
UseSpeed=1;
#ENDIF

#IF=%Timer=55,40000;
Command=/skill %Var[SkillName];
Delay=1000;
CreateTimer=55;
#ENDIF

#EXECUTE=CheckEXP;
Delay=100;


start_CheckEXP;

_MemReadVar=%AddrMaxEXP,DWORD,MaxExp;
_MemReadVar=%AddrCurrentEXP,DWORD,CurrentExp;
_Calc[ExpPercent]=%Var[CurrentExp]/%Var[MaxExp];
_Calc[ExpPercent]=%Var[ExpPercent]*100;
#IF=%Var[ExpPercent],>50; // IF above 50% exp
_IFInventoryContains=188922000; // EXP Extractor
UseID=188922000;
Delay=1250;
SendKey=0x0D;
Delay=1500;
Command=;
#ENDIF
Paraly is offline  
Thanks
1 User
Old 06/15/2020, 17:12   #2478
 
elite*gold: 0
Join Date: Aug 2017
Posts: 44
Received Thanks: 3
hi paraly, if I do not set anything manualy on Luna insta script, what it will do by default?

my old script used to craft only the cheapest kinah box (it was one of the 75%) and I was enjoying it.
but it seems not working anymore, maybe because of the new luna buttons position
xxxLavos is offline  
Old 06/15/2020, 17:20   #2479
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
Quote:
Originally Posted by xxxLavos View Post
hi paraly, if I do not set anything manualy on Luna insta script, what it will do by default?

my old script used to craft only the cheapest kinah box (it was one of the 75%) and I was enjoying it.
but it seems not working anymore, maybe because of the new luna buttons position
It will do luna
It will dump inventory for the inventory inspector
It will craft both 75% recipes if available


if you just want the recipe with 1 lunas light, remove any of these lines
Code:
#EXECUTE=CraftKinahRecipeTwo;
Paraly is offline  
Old 06/15/2020, 18:23   #2480
 
elite*gold: 0
Join Date: Jul 2016
Posts: 86
Received Thanks: 5
@ Question, some of my chars keep going to the wharehouse to deposit, even when i have set things like this:

_SetVar=DepositKinah,0; // Deposit Kinah - 1=Yes / 0=No

_SetVar=DepositKinahAmount,75; // The Kinah Amount it should deposit in Percent 1-99%

_SetVar=DepositKinahlist,1; // Allow only certain characters to deposit Kinah - 0 = All can deposit / 1 = Only on list can deposit / 2 = Only if not on list can deposit

_SetVar16=Othername,Anothername; // List the nicknames for deposit kinah


what can b wrong?
crazymonkey84 is offline  
Thanks
1 User
Old 06/15/2020, 18:46   #2481
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
Quote:
Originally Posted by crazymonkey84 View Post
@ Question, some of my chars keep going to the wharehouse to deposit, even when i have set things like this:

_SetVar=DepositKinah,0; // Deposit Kinah - 1=Yes / 0=No

_SetVar=DepositKinahAmount,75; // The Kinah Amount it should deposit in Percent 1-99%

_SetVar=DepositKinahlist,1; // Allow only certain characters to deposit Kinah - 0 = All can deposit / 1 = Only on list can deposit / 2 = Only if not on list can deposit

_SetVar16=Othername,Anothername; // List the nicknames for deposit kinah


what can b wrong?
Are you sure they weren't withdrawing instead?

There was a bug in ~2.51, a small space before the withdraw function which bugged the whole script so make sure to update to 2.52
Paraly is offline  
Old 06/15/2020, 19:21   #2482
 
elite*gold: 0
Join Date: Jul 2016
Posts: 86
Received Thanks: 5
Quote:
Originally Posted by Paraly View Post
Are you sure they weren't withdrawing instead?

There was a bug in ~2.51, a small space before the withdraw function which bugged the whole script so make sure to update to 2.52
yeah, maybe they are withdrawing, thanks ill check!
crazymonkey84 is offline  
Old 06/23/2020, 03:27   #2483
 
elite*gold: 0
Join Date: Nov 2014
Posts: 79
Received Thanks: 2
Anyone tested 1-10 asmo leveling since the patch? Mine keep errors when its level 3, after server switch talks to NPC, and when it passes small tornado, then client freeze. Every time at same spot. Anyone knows how to fix this?
dlrjsajdi is offline  
Old 06/25/2020, 19:33   #2484
 
elite*gold: 0
Join Date: Jun 2009
Posts: 26
Received Thanks: 0
Hi Paraly
How does the hidden mob script works ?!

Hi Paraly
How does the hidden mob script works ?!
xfallen33 is offline  
Old 06/25/2020, 19:38   #2485
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
Quote:
Originally Posted by xfallen33 View Post
Hi Paraly
How does the hidden mob script works ?!

Hi Paraly
How does the hidden mob script works ?!
Run the script, it works in background and when ever a hidden mob is within 100 meters you get a whisper with the exact location
Paraly is offline  
Old 06/30/2020, 17:22   #2486
 
elite*gold: 0
Join Date: Feb 2018
Posts: 17
Received Thanks: 1
hmmm, how does create namelist works on starter char 1-10? xd
Batterypvp is offline  
Old 06/30/2020, 17:23   #2487
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
Quote:
Originally Posted by Batterypvp View Post
hmmm, how does create namelist works on starter char 1-10? xd
You load and play the script with the Script Editor

It will keep asking for character names until you enter nothing

All the names you entered will be used at the Starterclasses script in the future if you did set PreDeclaredNames to 1
Paraly is offline  
Thanks
1 User
Old 07/04/2020, 08:42   #2488
 
elite*gold: 0
Join Date: Mar 2015
Posts: 81
Received Thanks: 0
Hi Paraly,

Is there any script for current EU steel rake event ? please let me know, thanks
ronkan0813 is offline  
Old 07/15/2020, 19:29   #2489
 
elite*gold: 0
Join Date: Nov 2014
Posts: 79
Received Thanks: 2
I am still having problem with NA asmo 1-10 script.
Once it does channel switch, FlySmooth=498.21,2413.091,267.007; <-----
right there, it keeps crushing client. Every time. Tried everything include client repair, and even delete and reinstalled intire Aion, still same problem. other then this, i dont have any problems like playing crushes nothing. Anyone else having problem like me? or any help?



#EXECUTE=ChangeChannel;
MemPtrWrite=%AddrThirdPerson,%OffsetThirdPerson,20 ,FLOAT;THIRDPERSON
#EXECUTE=CombatSort;

FlySmooth=506.199,2422.119,270.18;
FlySmooth=506.199,2422.119,270.18;
FlySmooth=498.21,2413.091,267.007;
FlySmooth=489.35,2401.638,263.208;
FlySmooth=483.758,2388.79,259.868;
FlySmooth=478.801,2374.671,255.968;
FlySmooth=477.146,2360.238,252.92;
FlySmooth=474.822,2345.997,251.75;
FlySmooth=473.11,2333.412,251.908;
dlrjsajdi is offline  
Old 07/15/2020, 19:45   #2490
 
Paraly's Avatar
 
elite*gold: 27
Join Date: Sep 2009
Posts: 5,592
Received Thanks: 1,596
Quote:
Originally Posted by dlrjsajdi View Post
I am still having problem with NA asmo 1-10 script.
Once it does channel switch, FlySmooth=498.21,2413.091,267.007; <-----
right there, it keeps crushing client. Every time. Tried everything include client repair, and even delete and reinstalled intire Aion, still same problem. other then this, i dont have any problems like playing crushes nothing. Anyone else having problem like me? or any help?



#EXECUTE=ChangeChannel;
MemPtrWrite=%AddrThirdPerson,%OffsetThirdPerson,20 ,FLOAT;THIRDPERSON
#EXECUTE=CombatSort;

FlySmooth=506.199,2422.119,270.18;
FlySmooth=506.199,2422.119,270.18;
FlySmooth=498.21,2413.091,267.007;
FlySmooth=489.35,2401.638,263.208;
FlySmooth=483.758,2388.79,259.868;
FlySmooth=478.801,2374.671,255.968;
FlySmooth=477.146,2360.238,252.92;
FlySmooth=474.822,2345.997,251.75;
FlySmooth=473.11,2333.412,251.908;
working fine here

Delete your "bin64" and "data/dump" folder and repair your files afterwards

Also restart the Account Manager
Paraly 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 +2. The time now is 11:44.


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.