I am more than sure that AS and aethertapping have some problems and that makes the client crash. Does anyone else have the same problem?
~~~~~~~~~~~
There was also an issue in scripting when taking wind serums. It would take a wing serum before it needed it wasting the superior ones. So I changed that. I only have the superior serums on my script as I do not need others, I could change the script for lower chars obviously.
This is my change on it.
Code: Select all
-- Loop through your inventory
for Inventory in ListIterator( InventoryList:GetList()) do
-- Check if this is a wind serum.
if Inventory:GetType():ToString() == "Potion" and string.find( Inventory:GetName(), "Wind Serum" ) ~= nil and Inventory:GetCooldown() == 0 then
if string.find( Inventory:GetName(), "Superior" ) ~= nil and TotalRecharge >= 84000 then
BestInventory = Inventory;
BestRecharge = 84000;
end
end
end