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
LF PLUGIN ONLY: AEORE AUTO RES
Author Message
mujiduka07 Offline
Amber Basilisk
*

Posts: 31
Joined: Oct 2013
Reputation: 2
Version: 1.4.1.118
Post: #1
LF PLUGIN ONLY: AEORE AUTO RES

Hi!

Please dont get me wrong, I always use SEARCH function. But most search results are scripts, obviously im not a VIP member. Tongue

This post is intended to look only for PLUGIN that auto resurrects dead party members. NOT script.

If there is none, then OK Big Grin
02-14-2014 08:39 AM
Find all posts by this user Quote this message in a reply
mujiduka07 Offline
Amber Basilisk
*

Posts: 31
Joined: Oct 2013
Reputation: 2
Version: 1.4.1.118
Post: #2
RE: LF PLUGIN ONLY: AEORE AUTO RES

(02-14-2014 08:39 AM)mujiduka07 Wrote:  Hi!

Please dont get me wrong, I always use SEARCH function. But most search results are scripts, obviously im not a VIP member. Tongue

This post is intended to look only for PLUGIN that auto resurrects dead party members. NOT script.

If there is none, then OK Big Grin

So... None? Tongue
02-17-2014 10:56 AM
Find all posts by this user Quote this message in a reply
Koyfo Offline
Goblin Grave Robber
*

Posts: 19
Joined: Jan 2014
Reputation: 18
Version: 1.4.1.118
Post: #3
RE: LF PLUGIN ONLY: AEORE AUTO RES

Why not write one?

- Check every 1second for dead party members
- Check their distance to bishop
- Use res skill if it is ready


Post here what you found, to convert it to plugin.
(This post was last modified: 02-17-2014 21:05 PM by Koyfo.)
02-17-2014 21:05 PM
Find all posts by this user Quote this message in a reply
mujiduka07 Offline
Amber Basilisk
*

Posts: 31
Joined: Oct 2013
Reputation: 2
Version: 1.4.1.118
Post: #4
RE: LF PLUGIN ONLY: AEORE AUTO RES

IM not really familliar with LUA programming. Im more on Java. But ill try to see some codes. Smile

(02-17-2014 21:05 PM)Koyfo Wrote:  Why not write one?

- Check every 1second for dead party members
- Check their distance to bishop
- Use res skill if it is ready


Post here what you found, to convert it to plugin.

Hi man, I see from other post you can do LUA programming. Any chance you can make a plugin for this auto resu?

Thanks!
(This post was last modified: 02-21-2014 10:36 AM by mujiduka07.)
02-21-2014 10:27 AM
Find all posts by this user Quote this message in a reply
TheQQmaster Offline
Trolling the Trolls
*****

Posts: 1,532
Joined: Jun 2012
Reputation: 640
Version: 1.4.2.133
Post: #5
RE: LF PLUGIN ONLY: AEORE AUTO RES

(02-21-2014 10:27 AM)mujiduka07 Wrote:  IM not really familliar with LUA programming. Im more on Java. But ill try to see some codes. Smile

(02-17-2014 21:05 PM)Koyfo Wrote:  Why not write one?

- Check every 1second for dead party members
- Check their distance to bishop
- Use res skill if it is ready


Post here what you found, to convert it to plugin.

Hi man, I see from other post you can do LUA programming. Any chance you can make a plugin for this auto resu?

Thanks!

    LUA Programming
---- CONFIG ----
ResSkillId = 11784;				-- Aoero Blessed Resurrection, skill who will ress
ResSkill = GetSkills():FindById(ResSkillId);	-- Getting skill of ress
RessInRange =  1300;				-- Range for search dead pt members
 
---- MAIN ----
repeat
	if (GetMe():IsAlikeDeath() == true)then --if i am dead
			Sleep(10*1000) -- i do 10 sec sleep
		repeat -- i repeat sleep
			Sleep(1000);
		until (GetMe():IsAlikeDeath() == false); -- until i am not dead and i can ress
	end;
PlayerList = GetPartyList(); -- getting party members list
for user in PlayerList.list do -- i do it for all pt members
 
	if (user:IsAlikeDeath()) and (ResSkill ~= nil) and (ResSkill:CanBeUsed()) and (GetMe():GetRangeTo(user) < RessInRange) then -- if pt member is dead, i have ress skill, i am not in stun etc, and dead user is from me in range
		repeat -- i repeat 
			ClearTargets(); -- clearing targets
			Target(user); -- targetting user
			Sleep(500);
			UseSkillRaw(ResSkillId, false, false); -- using skill 
			Sleep(500);
		until user:IsAlikeDeath() == false; -- until member is alive
		ClearTargets();
		Sleep(1000);
	end;
end;
 
Sleep(5000)
until false;


PUSH [Image: knUu53] IF HELPED
02-21-2014 13:17 PM
Visit this user's website Find all posts by this user Quote this message in a reply
Koyfo Offline
Goblin Grave Robber
*

Posts: 19
Joined: Jan 2014
Reputation: 18
Version: 1.4.1.118
Post: #6
RE: LF PLUGIN ONLY: AEORE AUTO RES

Yeah exactly.

Then decide when you want to tun the above script, so you can convert it to a plugin.
From example is you want every 1s, import the code into OnLTick1s() function.
02-21-2014 23:06 PM
Find all posts by this user Quote this message in a reply
iglaras22 Offline
Expired VIP Member
**

Posts: 91
Joined: Apr 2012
Reputation: 5
Version: 1.4.3.143
Post: #7
RE: LF PLUGIN ONLY: AEORE AUTO RES

(02-21-2014 13:17 PM)TheQQmaster Wrote:  
(02-21-2014 10:27 AM)mujiduka07 Wrote:  IM not really familliar with LUA programming. Im more on Java. But ill try to see some codes. Smile

(02-17-2014 21:05 PM)Koyfo Wrote:  Why not write one?

- Check every 1second for dead party members
- Check their distance to bishop
- Use res skill if it is ready


Post here what you found, to convert it to plugin.

Hi man, I see from other post you can do LUA programming. Any chance you can make a plugin for this auto resu?

Thanks!

    LUA Programming
---- CONFIG ----
ResSkillId = 11784; -- Aoero Blessed Resurrection, skill who will ress
ResSkill = GetSkills():FindById(ResSkillId);	-- Getting skill of ress
RessInRange = 1300; -- Range for search dead pt members
 
---- MAIN ----
repeat
	if (GetMe():IsAlikeDeath() == true)then --if i am dead
 Sleep(10*1000) -- i do 10 sec sleep
 repeat -- i repeat sleep
 Sleep(1000);
 until (GetMe():IsAlikeDeath() == false); -- until i am not dead and i can ress
	end;
PlayerList = GetPartyList(); -- getting party members list
for user in PlayerList.list do -- i do it for all pt members
 
	if (user:IsAlikeDeath()) and (ResSkill ~= nil) and (ResSkill:CanBeUsed()) and (GetMe():GetRangeTo(user) < RessInRange) then -- if pt member is dead, i have ress skill, i am not in stun etc, and dead user is from me in range
 repeat -- i repeat 
 ClearTargets(); -- clearing targets
 Target(user); -- targetting user
 Sleep(500);
 UseSkillRaw(ResSkillId, false, false); -- using skill 
 Sleep(500);
 until user:IsAlikeDeath() == false; -- until member is alive
 ClearTargets();
 Sleep(1000);
	end;
end;
 
Sleep(5000)
until false;



this is plugin??
02-23-2014 15:00 PM
Find all posts by this user Quote this message in a reply
benbt91 Offline
VIP Member
***

Posts: 694
Joined: Mar 2012
Reputation: 47
Version: 1.4.3.143
Post: #8
RE: LF PLUGIN ONLY: AEORE AUTO RES

plugins can't use sleep if u don't have function sleepinplugin Smile
02-23-2014 15:31 PM
Find all posts by this user Quote this message in a reply
mujiduka07 Offline
Amber Basilisk
*

Posts: 31
Joined: Oct 2013
Reputation: 2
Version: 1.4.1.118
Post: #9
RE: LF PLUGIN ONLY: AEORE AUTO RES

(02-21-2014 13:17 PM)TheQQmaster Wrote:  
(02-21-2014 10:27 AM)mujiduka07 Wrote:  IM not really familliar with LUA programming. Im more on Java. But ill try to see some codes. Smile

(02-17-2014 21:05 PM)Koyfo Wrote:  Why not write one?

- Check every 1second for dead party members
- Check their distance to bishop
- Use res skill if it is ready


Post here what you found, to convert it to plugin.

Hi man, I see from other post you can do LUA programming. Any chance you can make a plugin for this auto resu?

Thanks!

    LUA Programming
---- CONFIG ----
ResSkillId = 11784; -- Aoero Blessed Resurrection, skill who will ress
ResSkill = GetSkills():FindById(ResSkillId);	-- Getting skill of ress
RessInRange = 1300; -- Range for search dead pt members
 
---- MAIN ----
repeat
	if (GetMe():IsAlikeDeath() == true)then --if i am dead
 Sleep(10*1000) -- i do 10 sec sleep
 repeat -- i repeat sleep
 Sleep(1000);
 until (GetMe():IsAlikeDeath() == false); -- until i am not dead and i can ress
	end;
PlayerList = GetPartyList(); -- getting party members list
for user in PlayerList.list do -- i do it for all pt members
 
	if (user:IsAlikeDeath()) and (ResSkill ~= nil) and (ResSkill:CanBeUsed()) and (GetMe():GetRangeTo(user) < RessInRange) then -- if pt member is dead, i have ress skill, i am not in stun etc, and dead user is from me in range
 repeat -- i repeat 
 ClearTargets(); -- clearing targets
 Target(user); -- targetting user
 Sleep(500);
 UseSkillRaw(ResSkillId, false, false); -- using skill 
 Sleep(500);
 until user:IsAlikeDeath() == false; -- until member is alive
 ClearTargets();
 Sleep(1000);
	end;
end;
 
Sleep(5000)
until false;




How do i use this as plugin exactly? Please help :|
02-24-2014 07:56 AM
Find all posts by this user Quote this message in a reply
mujiduka07 Offline
Amber Basilisk
*

Posts: 31
Joined: Oct 2013
Reputation: 2
Version: 1.4.1.118
Post: #10
RE: LF PLUGIN ONLY: AEORE AUTO RES

(02-24-2014 07:56 AM)mujiduka07 Wrote:  
(02-21-2014 13:17 PM)TheQQmaster Wrote:  
(02-21-2014 10:27 AM)mujiduka07 Wrote:  IM not really familliar with LUA programming. Im more on Java. But ill try to see some codes. Smile

(02-17-2014 21:05 PM)Koyfo Wrote:  Why not write one?

- Check every 1second for dead party members
- Check their distance to bishop
- Use res skill if it is ready


Post here what you found, to convert it to plugin.

Hi man, I see from other post you can do LUA programming. Any chance you can make a plugin for this auto resu?

Thanks!

    LUA Programming
---- CONFIG ----
ResSkillId = 11784; -- Aoero Blessed Resurrection, skill who will ress
ResSkill = GetSkills():FindById(ResSkillId);	-- Getting skill of ress
RessInRange = 1300; -- Range for search dead pt members
 
---- MAIN ----
repeat
	if (GetMe():IsAlikeDeath() == true)then --if i am dead
 Sleep(10*1000) -- i do 10 sec sleep
 repeat -- i repeat sleep
 Sleep(1000);
 until (GetMe():IsAlikeDeath() == false); -- until i am not dead and i can ress
	end;
PlayerList = GetPartyList(); -- getting party members list
for user in PlayerList.list do -- i do it for all pt members
 
	if (user:IsAlikeDeath()) and (ResSkill ~= nil) and (ResSkill:CanBeUsed()) and (GetMe():GetRangeTo(user) < RessInRange) then -- if pt member is dead, i have ress skill, i am not in stun etc, and dead user is from me in range
 repeat -- i repeat 
 ClearTargets(); -- clearing targets
 Target(user); -- targetting user
 Sleep(500);
 UseSkillRaw(ResSkillId, false, false); -- using skill 
 Sleep(500);
 until user:IsAlikeDeath() == false; -- until member is alive
 ClearTargets();
 Sleep(1000);
	end;
end;
 
Sleep(5000)
until false;




How do i use this as plugin exactly? Please help :|

UP

(02-24-2014 07:56 AM)mujiduka07 Wrote:  
(02-21-2014 13:17 PM)TheQQmaster Wrote:  
(02-21-2014 10:27 AM)mujiduka07 Wrote:  IM not really familliar with LUA programming. Im more on Java. But ill try to see some codes. Smile

(02-17-2014 21:05 PM)Koyfo Wrote:  Why not write one?

- Check every 1second for dead party members
- Check their distance to bishop
- Use res skill if it is ready


Post here what you found, to convert it to plugin.

Hi man, I see from other post you can do LUA programming. Any chance you can make a plugin for this auto resu?

Thanks!

    LUA Programming
---- CONFIG ----
ResSkillId = 11784; -- Aoero Blessed Resurrection, skill who will ress
ResSkill = GetSkills():FindById(ResSkillId);	-- Getting skill of ress
RessInRange = 1300; -- Range for search dead pt members
 
---- MAIN ----
repeat
	if (GetMe():IsAlikeDeath() == true)then --if i am dead
 Sleep(10*1000) -- i do 10 sec sleep
 repeat -- i repeat sleep
 Sleep(1000);
 until (GetMe():IsAlikeDeath() == false); -- until i am not dead and i can ress
	end;
PlayerList = GetPartyList(); -- getting party members list
for user in PlayerList.list do -- i do it for all pt members
 
	if (user:IsAlikeDeath()) and (ResSkill ~= nil) and (ResSkill:CanBeUsed()) and (GetMe():GetRangeTo(user) < RessInRange) then -- if pt member is dead, i have ress skill, i am not in stun etc, and dead user is from me in range
 repeat -- i repeat 
 ClearTargets(); -- clearing targets
 Target(user); -- targetting user
 Sleep(500);
 UseSkillRaw(ResSkillId, false, false); -- using skill 
 Sleep(500);
 until user:IsAlikeDeath() == false; -- until member is alive
 ClearTargets();
 Sleep(1000);
	end;
end;
 
Sleep(5000)
until false;




How do i use this as plugin exactly? Please help :|

UP
(This post was last modified: 02-26-2014 10:55 AM by mujiduka07.)
02-26-2014 10:55 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Auto Augment - Services / AIO NPC. 2pho3nix 11 17,549 07-27-2020 09:37 AM
Last Post: z3renity
  Interlude Augment script/plugin - l2mid anheoo 4 9,212 04-05-2020 10:59 AM
Last Post: icarox3
  script auto farm help twisterfire 5 5,242 07-10-2018 22:43 PM
Last Post: TMBlack
  Healer Fix plugin problem aa300598 1 2,944 02-20-2016 13:21 PM
Last Post: Vinter
  Craft plugin? aa300598 4 3,703 02-13-2016 11:32 AM
Last Post: TheQQmaster
  Help, with "Auto" De-level script JavaFan 3 3,099 11-12-2015 17:18 PM
Last Post: JavaFan
WTB WTB SCRIPT OR PLUGIN ON CC khialove 0 1,628 08-26-2015 16:01 PM
Last Post: khialove
  [HELP] Auto Saved DC ! nikevers 0 1,983 07-28-2015 00:32 AM
Last Post: nikevers
  AUTO RES ACCEPT sonsfully 17 11,298 07-15-2015 19:59 PM
Last Post: Maveco
  Auto Accept Res Not working aywka 32 16,348 07-10-2015 08:16 AM
Last Post: TheQQmaster



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