Register for your free account! | Forgot your password?

You last visited: Today at 16:57

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



AionScript

Discussion on AionScript within the Aion Hacks, Bots, Cheats & Exploits forum part of the Aion category.

Reply
 
Old 08/18/2016, 21:54   #241
 
elite*gold: 0
Join Date: Aug 2016
Posts: 9
Received Thanks: 0
Quote:
Originally Posted by Locatelli1 View Post
I tried some days ago the grinder (last weekend) and it was working perfectly. Are you sure you set it up correctly?
could you or someone just please upload and share bin32 folder?

i think it's something with the game version i have, now tried to update it by launcher, but now it just keeps telling me to run game before i run the aionscript =p
sofa555 is offline  
Old 08/18/2016, 22:19   #242
 
elite*gold: 0
Join Date: Mar 2009
Posts: 382
Received Thanks: 21
Quote:
Originally Posted by sofa555 View Post
could you or someone just please upload and share bin32 folder?

i think it's something with the game version i have, now tried to update it by launcher, but now it just keeps telling me to run game before i run the aionscript =p
had same problem try run aionscript as admin
7life is offline  
Thanks
1 User
Old 08/18/2016, 23:51   #243
 
elite*gold: 0
Join Date: Aug 2016
Posts: 9
Received Thanks: 0
Quote:
Originally Posted by 7life View Post
had same problem try run aionscript as admin
i did, didn't help for me
sofa555 is offline  
Old 08/19/2016, 00:10   #244
 
AionScript's Avatar
 
elite*gold: 0
Join Date: Jul 2016
Posts: 37
Received Thanks: 13
Quote:
Originally Posted by sofa555 View Post
i did, didn't help for me
you play at NA or EU?
if NA, launch this file , then launch game from Aion Online launcher.
AionScript is offline  
Old 08/19/2016, 03:13   #245
 
elite*gold: 0
Join Date: Oct 2009
Posts: 72
Received Thanks: 0
Quote:
Originally Posted by crazymonkey84 View Post
Or in english (select grinderframwork then right click in the white bar below it, and select "create", press "record", then run through the route you want your character follow and return to your original position. Then click save, and then "enable")
i have done that as always to make the profiles, but now it is not working :S keep staying in same position
adritill is offline  
Old 08/19/2016, 04:24   #246


 
nussxxx's Avatar
 
elite*gold: 54
Join Date: Apr 2015
Posts: 281
Received Thanks: 29
open chat usw arrow up and look witch skill/target the char is useing.

u useing chanter? maybe he try to use skill u dont have or sthing
-------------------------------------------------------------------------

btw guys. disabel PANIC MODE. GMS will bann the account if u get instantly logout.

just press "SHIFT + ;" on the Entities Interface
----------------------------------------------------------------------------

Quote:
Originally Posted by dada79 View Post
Hi all , when I execute aionscript.exe , I get this error -->



I am playing from EU server , with last windows 10 version and run game in english with a 32 bit batch file .
u need to download Microsoft .NET Framework
-----------------------------------------------------------------------------

@
after the update gladiator dont like gk.

if Helper:CheckAvailable( "Daevic Fury" ) and Player:GetDP() >=2000 then
Helper:CheckExecute( "Daevic Fury");
return false;
end

aionscript ends with
- [string "GrinderFramework.lua"]:597: attempt to index a nil value

same counts for shadow rage
if Entity:GetHealth() >= 50 and Helper:CheckAvailable( "Shadow Rage" ) then
Helper:CheckExecute( "Shadow Rage" );
return false;
end

needed to change to
if Helper:CheckAvailable( "Shadow Rage" ) then
Helper:CheckExecute( "Shadow Rage" );
return false;
end

idk looks like GetHealth not working

on second wind i needed to remove ", Player" cuz its end up
- [string "GrinderFramework.lua"]:597: attempt to index a nil value

if Helper:CheckAvailable( "Second Wind" ) and Player:GetHealthCurrent() < Player:GetHealthMaximum() - 10500 then
Helper:CheckExecute( "Second Wind",Player );
return false;
end
nussxxx is offline  
Old 08/19/2016, 15:10   #247
 
elite*gold: 0
Join Date: Jul 2016
Posts: 86
Received Thanks: 5
Quote:
Originally Posted by adritill View Post
i have done that as always to make the profiles, but now it is not working :S keep staying in same position
it happens to me sometimes, sometimes my char just wants to stay sit, and dont want to move even when is hp is full, all i need to do is to force my toon a little bit, i click on nex target to force him to attack and if this doesnt work, i click enable and disable several times till it starts to do his work
crazymonkey84 is offline  
Old 08/19/2016, 15:10   #248
 
gorguss's Avatar
 
elite*gold: 0
Join Date: Aug 2016
Posts: 35
Received Thanks: 5
nevermind my question was answered by good sir, andyDE. thank you again!
gorguss is offline  
Old 08/19/2016, 15:22   #249
 
elite*gold: 0
Join Date: Feb 2012
Posts: 31
Received Thanks: 8
Code:
-- Buff: Stone Skin
	if Helper:CheckAvailable( "Stone Skin" ) and EntityState:GetState( Helper:CheckName( "Stone Skin" )) ~= nil then
		Helper:CheckExecute( "Stone Skin" );
		return false;
	end
	
-- Buff: Robe of Flame
	if Helper:CheckAvailable( "Flame Robes" ) and EntityState:GetState( Helper:CheckName( "Flame Robes" )) ~= nil then
		Helper:CheckExecute( "Flame Robes" );
		return false;
	end
How to check if Buff are already actived ?
dada79 is offline  
Old 08/19/2016, 15:48   #250


 
nussxxx's Avatar
 
elite*gold: 54
Join Date: Apr 2015
Posts: 281
Received Thanks: 29
u need endit the helpfunction so the bot use herb tretment and the new fortified pots


Quote:
Originally Posted by dada79 View Post
Code:
-- Buff: Stone Skin
	if Helper:CheckAvailable( "Stone Skin" ) and EntityState:GetState( Helper:CheckName( "Stone Skin" )) ~= nil then
		Helper:CheckExecute( "Stone Skin" );
		return false;
	end
	
-- Buff: Robe of Flame
	if Helper:CheckAvailable( "Flame Robes" ) and EntityState:GetState( Helper:CheckName( "Flame Robes" )) ~= nil then
		Helper:CheckExecute( "Flame Robes" );
		return false;
	end
How to check if Buff are already actived ?
some skill have wrong stage id need some one who know to get skill id and can edit the skillist
nussxxx is offline  
Old 08/19/2016, 16:37   #251
 
gorguss's Avatar
 
elite*gold: 0
Join Date: Aug 2016
Posts: 35
Received Thanks: 5
andyDE referred me back here to ask nussxxx this error message:

- Unable to find a class or player controller!
- invalid arguments to method call
- Object reference not set to an instance of an object.

I created .bat file properly but NCsoft will not allow me to log in without going through offixal patcher first?

I see you can use the aionpatcher.exe I also noticed I don't think I have the .NET framework installed lol I am truly sorry for bothering y'all!
gorguss is offline  
Old 08/19/2016, 20:42   #252


 
nussxxx's Avatar
 
elite*gold: 54
Join Date: Apr 2015
Posts: 281
Received Thanks: 29
you play at NA or EU?
if NA, launch this file , then launch game from Aion Online launcher.


or maybe u have try the bot on low lvl char <10lv.
Bard not working till lv 10.

post screen shot to see more easly
nussxxx is offline  
Old 08/19/2016, 21:40   #253
 
elite*gold: 0
Join Date: Aug 2011
Posts: 21
Received Thanks: 0
How do I launch Aion NA in 32b?
Kmrdrow is offline  
Old 08/19/2016, 22:15   #254
 
gorguss's Avatar
 
elite*gold: 0
Join Date: Aug 2016
Posts: 35
Received Thanks: 5
Honestly I don't think I had .NET framework installed. I'm installing now, big download.

NA servers. Yes in have the Aionpatcher and its in *32 bit. Once Frameworks been installed i'll try again and let you know if I succeeded
gorguss is offline  
Old 08/20/2016, 00:05   #255
 
elite*gold: 0
Join Date: Jul 2016
Posts: 86
Received Thanks: 5
Quote:
Originally Posted by Kmrdrow View Post
How do I launch Aion NA in 32b?
just rename the aion.bin (to any name u want) in folder bin64, so game can not find the proper file for 64 bits and then it will run the 32 bits by default.
crazymonkey84 is offline  
Reply


Similar Threads Similar Threads
What happened to aionscript ?
08/30/2013 - Aion - 2 Replies
Took a summerbreak from aion and coming back the website is down? Is aionscript no more ?
Aionscript
08/29/2013 - Aion - 4 Replies
Why is Aionscript not working anymore and do they have a ETA on this fix?
AionScript
02/26/2013 - Aion - 2 Replies
- Does it still works? - What can a sorc do with it at the moment? - Do ppl. get banned for using it or banned because of own stupidy (: showing the hack when ppl. are near and so on). Thanks - Aion EU!
Aionscript and other Bots
01/18/2013 - Aion - 0 Replies
Hey Blastradius isnt supporting AS longer i think because he doesnt answer us... . Do u know another bots which can do solo bosses with no gravity and teleport hack ?
Fragen zu AionScript
04/24/2012 - Aion - 0 Replies
Ich würde gerne einen Kleriker hinter meinem Ranger herlaufen lassen und diesen als Healbot zu benutzen. Allerdings funzt es nicht so wie es soll, besser gesagt der Kleri macht gar nichts. Ich gehe folgendermassen vor: Ich starte 2 mal das Spiel und logge mich ein Ich starte Aion Script und wähle den Prozess mit meinem Kleri aus. Dann wähle ich das OffizialGrinderFramework aus und klicke auf "on" soweit so gut, aber wenn ich dann in gruppe bin und mein jäger schaden bekommt macht der...



All times are GMT +2. The time now is 16:57.


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.