targets = skillInfo.getTargetList(player) how to change it to set target only yourself not whole party clan and alliance? trying to do it 4 hours i'm pissed off :| i'm gonna destroy my computer now. someone help me please
This applies the skill effects to all valid targets. If you only want #
# it to apply the effects to the player then you should change "targets" #
# in the line below to "[player]". THIS DOESN'T WORK!!!
L2Elixir – Patch 4 Is Live!
We’re working non-stop, day and night, to deliver the best possible quality and bring back what made L2Elixir special. This project is built with passion, not shortcuts — for the old-school players who remember, and the new ones who want to experience it properly. Thank you for being part of the journey. Together, we’re making L2Elixir great again ❤️ The legends never fade.
⚙️ General
Enabled Class Change service (same class type only)
ALT + B → Services → Character Development
Enabled Shift + Click on Treasure Chests Players can now identify real chests (Adena, scroll drops) and use Key / Unlock
Event deaths now cancel only debuffs, All self buffs are preserved, fixes issues with Root and similar effects
Bladedancer class can now log in even when Max Clients (2) is reached. Since an active Bladedancer is not available for every damage dealer and some players tried to abuse this via VPN or a second PC, this feature was added to keep things fair. protections applies, requires testing!
🎒 Items
Crystallizing enchanted items now gives the correct increased crystal amount (retail-like behavior)
Removed Agathion Seal Bracelet: Rudolph from Santa rewards (Gracia Final item)
Added Dualsword Craft Stamp into Milestone Exchange list
🧙 Skills
Fixed Banish Undead lethal chance
Hot Springs Malaria and similar effects now level up faster while being attacked
Warning: This guy is a big scammer, trying to sell everything, advertising for servers etc.
That's his mail address evgesha.nrnr@gmail.com , stay away!
@Atom @Celestine
Warning: This guy is a big scammer, trying to sell everything, advertising for servers etc.
That's his mail address evgesha.nrnr@gmail.com , stay away!
@Celestine
@Atom
Question
djpain
so i have downloaded buffer. which buffs whole party. cant edit code. need some help.
def skillCast(player,skill,level,useAnimation): #
# This line is necessary and gets the skill information. #
skillInfo = SkillTable.getInstance().getInfo(skill,level) #
if not skillInfo: #
return False #
############################################################################
# This line causes the client to display the animation for the #
# skill. If you do not want the client to display the animation #
# for a specific skill simply set useAnimation to false for that #
# skill call. If you want to disable it for all skills simply #
# comment out the below two lines. #
############################################################################
# We need to make sure the player has him/herself targetted, but #
# we also want to make sure we don't permanently change the target #
# so we will save off the current target before changing it to the #
# player. #
currentTarget = player.getTarget() #
player.setTarget(player) #
############################################################################
# This gets all the targets for the skill (self, party, clan, ally, etc...)#
targets = skillInfo.getTargetList(player) #
############################################################################
# Now we reset the target we had before we switched to the player. #
player.setTarget(currentTarget) #
############################################################################
# This applies the skill effects to all valid targets. If you only want #
# it to apply the effects to the player then you should change "targets" #
# in the line below to "[player]". #
player.callSkill(skillInfo,targets) #
return True #
############################################################################
targets = skillInfo.getTargetList(player) how to change it to set target only yourself not whole party clan and alliance? trying to do it 4 hours i'm pissed off :| i'm gonna destroy my computer now. someone help me please
This applies the skill effects to all valid targets. If you only want #
# it to apply the effects to the player then you should change "targets" #
# in the line below to "[player]". THIS DOESN'T WORK!!!
6 answers to this question
Recommended Posts