L2Tower Discord Let's keep the community alive with discord. Discussions about plugins and scripts L2Tower Discord

Post Reply 
 
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ertheia attak
Author Message
zaxaris2000 Offline
Elpy
*

Posts: 2
Joined: Aug 2014
Reputation: 0
Version: 1.4.2.131
Post: #1
ertheia attak

hi

today i go 85 lvl 1 char ertheia wen i xp at 0-85 char work good with nuke attak now after 85 nuke attak stop working ..


any help...?


char is sayhas seer..
08-07-2014 15:35 PM
Find all posts by this user Quote this message in a reply
Dragonlame2 Offline
Expired VIP Member
**

Posts: 8
Joined: May 2014
Reputation: 0
Version: 1.4.2.132
Post: #2
RE: ertheia attak

Can be the same "old" problem as Feoh? ...try searching for feoh scripts and arrange them with your charecter's skills
08-08-2014 11:00 AM
Find all posts by this user Quote this message in a reply
claudineiconde Offline
Gremlin
*

Posts: 9
Joined: Oct 2012
Reputation: 5
Version: 1.4.1.121
Post: #3
RE: ertheia attak

(08-05-2014 22:17 PM)claudineiconde Wrote:  New Ertheria Mage Skill Add Pick up items

    LUA Programming
AirRushID = 30012;
HydroAttackID = 30001;
HydroFlareID = 30003;
StormSignID = 30002; -- Storm Sign
HydroDrainID = 30007;
SayhasWordID = 30019;
ThreateningWindID = 30011;
 
----------Config-------------
RangePickup = 300; --Range to pick items defalt 300 set -1 to not pick items
-----------------------------
 
-----------------------------
 
 
function AirRush()
	local mySkills = GetSkills();
	local shadow = mySkills:FindById(AirRushID);
	if (shadow ~= nil) and (shadow:IsSkillAvailable()) and (shadow:CanBeUsed()) then
 local myTarget = GetTarget();
 if (CheckTargetCanBeUsedSkill(myTarget)) then
 if ((myTarget:IsAlikeDeath() == false) and (myTarget:GetRangeTo(me) > 200)) then
 UseSkill(AirRushID);
 end;
 end;
	end;
end;
 
 
function HydroFlare()
	local mySkills = GetSkills();
	local Hydro = mySkills:FindById(HydroFlareID);
	local Drain = mySkills:FindById(HydroDrainID);
	local me = GetMe();
	local myTarget = GetTarget();
	if (CheckTargetCanBeUsedSkill(myTarget)) and (myTarget:GotBuff(StormSignID)) then
	if (Hydro ~= nil) and(Hydro:IsSkillAvailable())and (Hydro:CanBeUsed()) or (Drain ~= nil) and(Hydro:IsSkillAvailable()) and (Drain:CanBeUsed()) then
	if (me:GetHpPercent()<= 80) or (me:GetMpPercent()<= 50)then
 UseSkill(HydroDrainID);
	else
 UseSkill(HydroFlareID);
 end;
 end;
 end;
end;
 
 
 
function UseSkill(skillID)	
	local myTarget = GetTarget();
	local mySkills = GetSkills();
	if (CheckTargetCanBeUsedSkill(myTarget)) then
 local Skill = mySkills:FindById(skillID);
 if (Skill ~= nil) and (Skill:IsSkillAvailable()) and (Skill:CanBeUsed()) then 
 UseSkillRaw(skillID, false, false);
 Sleep(500);
 end;
	end;
end;
 
 
function CheckTargetCanBeUsedSkill(target)
	if (target~=nil) and not (target:IsMe()) and (target:IsMonster()) and not (target:IsAlikeDeath()) and not (target:IsPlayer()) then
 return true;
	else
 return false;
	end;
end;
 
function UseBuff()
	if (me ~= nil) and not (me:IsAlikeDeath()) then
 if not me:GotBuff(30017) then
 UseSkillRaw(30017,false,false);
 Sleep(1000);
 end;
	end;
end;
 
 
ShowToClient("SYS","Etheria skills Start.");
 
 
function Pickup(range)
 local ItemsCount = GetItemManager():GetCount();
 if ItemsCount>0 then
 for i=1, ItemsCount do
 item = GetItemManager():GetByIdx(i);
 PickItem = item;
 if item~=nil and item:GetRangeTo(GetMe()) <= range then
 return true;
 end
 end
	end
 
 return false;
end;
-----------------------------------------
function MoveToItem(Item)
	loc = Item:GetLocation();
	lX = loc.X;
	lY = loc.Y;
	MoveToNoWait(lX, lY, loc.Z);
end;
------------------------------------------
 
------------------------------------------
function Main()
target = GetTarget();
	me = GetMe(); 
	MySkills = GetSkills(); 
	if (target ~= nil) and (target:IsAttacking()) or not Pickup (RangePickup) then
	if (me ~= nil) and not (me:IsAlikeDeath()) then
 
 UseBuff();
 AirRush();
 HydroFlare();
-- UseSkill (ThreateningWindID);
 UseSkill (SayhasWordID);
 UseSkill (HydroAttackID);
 end;
 else
 MoveToItem(PickItem);
 Command('/pickup');
	end;
end;
 
 
repeat
	if not IsPaused() then
 
 Main();
 Sleep(1000);
end;
until false;


08-08-2014 11:03 AM
Find all posts by this user Quote this message in a reply
alku Offline
Amber Basilisk
*

Posts: 35
Joined: Oct 2013
Reputation: 0
Version: 1.4.2.142
Post: #4
RE: ertheia attak

how turn off pick up ???
08-25-2014 18:04 PM
Find all posts by this user Quote this message in a reply
capucine Offline
Expired VIP Member
**

Posts: 1,083
Joined: Jan 2013
Reputation: 208
Version: 1.4.2.142
Post: #5
RE: ertheia attak

(08-25-2014 18:04 PM)alku Wrote:  how turn off pick up ???

Try by yourself!

Open the script, go at the end, find the command that does the pickup and delete the lines or put -- in front of the line... SAVE and test!

Dont expect ppl to do everything u !
08-25-2014 18:29 PM
Find all posts by this user Quote this message in a reply
alku Offline
Amber Basilisk
*

Posts: 35
Joined: Oct 2013
Reputation: 0
Version: 1.4.2.142
Post: #6
RE: ertheia attak

ty , i was try by myself and scrip stop work . is why i ask for help
08-25-2014 21:32 PM
Find all posts by this user Quote this message in a reply
alku Offline
Amber Basilisk
*

Posts: 35
Joined: Oct 2013
Reputation: 0
Version: 1.4.2.142
Post: #7
RE: ertheia attak

cant doin ( , stop work the scrip
08-26-2014 11:35 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  v125 Ertheia NaoJogoMais 96 58,486 12-29-2017 11:58 AM
Last Post: pena123
  Ertheia funcional autoattack ? (mage) Sm4sher 0 2,070 11-11-2015 08:57 AM
Last Post: Sm4sher
  Script Ertheia Mage no AOE Madness12 1 2,243 09-28-2015 16:02 PM
Last Post: Botter100
  ID ERTHEIA michal9077 1 3,236 05-29-2015 01:10 AM
Last Post: cardeal
  Good party with Ertheia ( Eviscerator) cuongbeo88 12 10,755 05-24-2015 23:42 PM
Last Post: rhadamants
  Ertheia ripper quest bug lvl 76 drake182 3 3,599 05-24-2015 05:25 AM
Last Post: AlexQNY38
  [BUG] Ertheia Skills veinha 3 3,622 04-11-2015 12:12 PM
Last Post: plixplox
  Quest 76 ertheia benbt91 3 2,990 03-08-2015 19:21 PM
Last Post: capucine
  Need ItemName-e ertheia jeisondras 0 1,884 09-02-2014 00:10 AM
Last Post: jeisondras
  ISS REBUFF AT ERTHEIA UPDATE aut0matic 8 5,610 08-13-2014 14:09 PM
Last Post: rORUMI



User(s) browsing this thread: 1 Guest(s)