Jump to content
  • 0

custom Script for BlowSound


etherian

Question

if someone is interested

i was thinking to test this 

but im not sure if it can be outside FatalBlow.Java

 

i created BlowSound.Java
data\scripts\custom

but i know im missing something

it stills gives errors

 

everyone is welcome to workaround with this

i used the example of pirama  to begin

package custom;

import com.l2jserver.gameserver.model.actor.L2Character;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.network.serverpackets.PlaySound;


public final class BlowSound
{
            if (activeChar.isPlayer())
        {
            L2PcInstance activePlayer = activeChar.getActingPlayer();
            activePlayer.sendDamageMessage(target, (int) damage, false, crit, false);
      activeChar.sendPacket(new PlaySound("skillsound.critical_hit_02"));
        }

    }
}


laters
 

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

so is different of what im trying to do

 

my ideas was  to add in the skill  mortal blow

 

<for>
            <effect name="FatalBlow" />
            <effect name="BlowSound" />        
</for>

and then call the sound in BlowSound.java as custom script

 

later i was wondering if it can be done like

 

if critical  hit

PlaySound("skillsound.critical_hit_02"));

 

i dont get why they did it as MagicSkillUse 
well perhaps im trying to do this in High Five

 

JLisvus  implemented it but is for C4  and it works

will keep looking how to solve it

 

thnx for the info Tryskell
 

Link to comment
Share on other sites

  • 0

for example  JFrozen have done the fix inside the core

 

Formulas.calcLethalHit(activeChar, target, skill);
          PlaySound PlaySound = new PlaySound("skillsound.critical_hit_02");
          activeChar.sendPacket(PlaySound);

 

 

now im dizzy
it is a bad way to redone this by custom script isnt it ?  will be calling a lag each time the script is executed?

 

i tryed to make something like this in the high five pack of l2devs  but still

 

import com.l2jserver.gameserver.network.serverpackets.PlaySound;

 

if (activeChar.isPlayer())
		{
			L2PcInstance activePlayer = activeChar.getActingPlayer();
			activePlayer.sendDamageMessage(target, (int) damage, false, crit, false);

                        PlaySound playSound = new PlaySound("skillsound.critical_hit_02");
                        activeChar.sendPacket(playSound);
      
		}


 

 

 


 ERROR in C:\L2JDevs\game\data\scripts\handlers\effecthandlers\instant\FatalBlow.java (at line 113)
        PlaySound playSound = new PlaySound("skillsound.critical_hit_02");
                              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
The constructor PlaySound(String) is not visible

no matter how much i change the ways there is always a error regarding playsound

i also compiled from Jserver git repo a fresh build but it happens the same 

 

 

Link to comment
Share on other sites

  • 0

Using PlaySound is bad, with a script (or adding a new effect for it) is simply overkill. It got nothing to do with lag/performance (even if you save ressources simply tagging a boolean to true instead of creating new effects), it's simply ugly.

 

One packet (which is already sent, btw) is supposed to do the job - that's how NCSoft decided to do it, no really need to argue about it, that's what the client understands - simply put the boolean to true to get a sound.

 

The constructor you try to use is now private, check PlaySound packet uses to see the correct writting style (not sure why they used static approach, since a new PlaySound is anyway generated).

 

Since the amount of skills is really low, you can simply hardcode it. Past in the time, I figured out than some skills launched status as 0, 1, 2 - so it can't be resolved by a simply boolean, and L2JFrozen fix isn't even complete (so it is both clunky AND incomplete).

Edited by Tryskell
Link to comment
Share on other sites

  • 0
public final class MagicSkillUse extends L2GameServerPacket
{
    private final int _skillId;
    private final int _skillLevel;
    private final int _hitTime;
    private final int _reuseDelay;
    private final L2Character _activeChar;
    private final L2Character _target;
    // private final List<Integer> _unknown = Collections.emptyList();
    private boolean _success = false;
    private final List<Location> _groundLocations;

    public MagicSkillUse(L2Character cha, L2Character target, int skillId, int skillLevel, int hitTime, int reuseDelay, boolean crit)
    {
        this(cha, target, skillId, skillLevel, hitTime, reuseDelay);
        _success = crit;
    }

    public MagicSkillUse(L2Character cha, L2Character target, int skillId, int skillLevel, int hitTime, int reuseDelay)
    {
        _activeChar = cha;
        _target = target;
        _skillId = skillId;
        _skillLevel = skillLevel;
        _hitTime = hitTime;
        _reuseDelay = reuseDelay;
        _groundLocations = cha.isPlayer() && (cha.getActingPlayer().getCurrentSkillWorldPosition() != null) ? Arrays.asList(cha.getActingPlayer().getCurrentSkillWorldPosition()) : Collections.<Location> emptyList();
    }

    public MagicSkillUse(L2Character cha, int skillId, int skillLevel, int hitTime, int reuseDelay)
    {
        this(cha, cha, skillId, skillLevel, hitTime, reuseDelay);
    }

    @Override
    protected final void writeImpl()
    {
        writeC(0x48);
        writeD(_activeChar.getObjectId());
        writeD(_target.getObjectId());
        writeD(_skillId);
        writeD(_skillLevel);
        writeD(_hitTime);
        writeD(_reuseDelay);
        writeLoc(_activeChar);
        // writeH(_unknown.size()); // TODO: Implement me!
        // for (int unknown : _unknown)
        // {
        // writeH(unknown);
        // }
        if (_success)
        {
            writeD(0x01);
            writeH(0x00);
        }
        else
        {
            writeD(0x00);
        }
        writeH(_groundLocations.size());
        for (IPositionable target : _groundLocations)
        {
            writeLoc(target);
        }
        writeLoc(_target);
    }
}

ShinichiYao  posted this code in l2jserver bitbucket

 

so i guess must start looking to make with this then

perhaps in the same post

 

Sdw-

Edited by etherian
Link to comment
Share on other sites

  • 0

can close topic

resolved in a dirty way modification

 

		if (crit)
		{
			damage *= 2;
		}

		effector.doAttack(damage, effected, skill, false, false, true, false);
        effector.sendPacket(new PlaySound("skillsound.critical_hit_02"));
          }
         }

 

original file

https://bitbucket.org/MobiusDev/l2j_mobius/src/master/L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/handlers/effecthandlers/FatalBlow.java

 

laters ppl

Edited by etherian
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


  • Posts

    • +256783219521 N1 WITCHCRAFT SPELLS CASTER IN TEXAS USA/UK EU.   ARE YOU DESPERATE FOR ATTRACTION OR YOU WANT YOUR EX LOVER BACK INTO YOUR LIFE AND YOU ARE , DESPERATE  BECAUSE YOU HAVE NO ONE TO TALK TO,  THEN WORRY AND CRY NO MORE BECAUSE THE SOLUTION IS AT HAND AND YOUR PROBLEMS WILL BE NO MORE. HERE COMES PSYCHIC MAGGU A SPECIALIST WITH VAST EXPERIENCE SPANNING 25 YEARS AS A LOVE SPELLS CASTER, MARRIAGE SPELLS CASTER, BINDING SPELLS CASTER, LOST LOVE SPELLS CASTER, ATTRACTION SPELLS CASTER, PSYCHIC,WEALTH SPELLS, TRADITIONAL HEALER, DIVINER,MEDIUM, FINANCIAL SPELLS, VOODOO,WORK RELATED SPELLS, BLACK MAGIC, WHITE MAGIC.  WITH SUCH EXPERTISE, I HAVE BEEN ABLE TO WORK ON CLIENTS FROM DIFFERENT PARTS OF THE WORLD INCLUDING BUT NOT LIMITED TO USA, CANADA, EUROPE, UAE, INDIA, SOUTH AFRICA, ASIA, INDONESIA, BOTSWANA. IF AT ALL YOUR PROBLEMS PERSISTED FOR A LONG TIME  AND YOU HAVE FAILED TO GET A LASTING AND PERMANENT REMEDY SO THAT YOU LIVE A HAPPY AND BLISSFUL LIFE, PLEASE DON'T HESITATE TO CALL/ WHATSAPP +256 783219521  . 
    • #REAL BLACK MAGIC SPELLS CASTER IN USA UK +256783219521 POWERFUL BLACK MAGIC SPELLS CASTER|Witchcraft Spells Caster In USA UK AUSTRALIA CANADA NEW ZEALAND EUROPE SOUTH AFRICA SOUTH AMERICA ASIA IRELAND (USA) New York,California,Florida,Georgia,South Carolina,North Carolina,Virginia,West Virginia,Alabama,Louisiana,Mississippi,Tennessee,Kentucky,Delaware,New Jersey,Maryland,Ohio,Indiana,Michigan,Pennsylvania,Connecticut,Rhode Island,Massachusetts,New Hampshire,Vermont,Maine,Texas,Oklahoma,Arkansas,Wisconsin,Illinois,Minnesota,Iowa,Missouri,Kansas,New Mexico,Arizona,Nevada,Utah,Colorado,Nebraska,South Dakota,North Dakota,Montana,Wyoming,Oregon,Idaho,Washington,Fertility,Attraction,Binding Spell Caster In South America,24 Hours Online Love Psychic Reader,Native Herbalist,Sangoma,Traditional Healer in South Africa,Canada Best Lost Love Spell Caster,Strong Medium For Gays/Lesbians Relationships,Trusted Interracial Love Marriage Healer,POWERFUL Native Incantation Love Spell Caster in UK,Europe,Australia,Faithful Islamic-Arabic Divine Love Spells In Middle East,Top Online Love Traditional Doctor In USA,The Bahamas,Trusted Traditionalist in ALL Counties,A Love Spell Caster in Poland UK,Binding Love Spell In Dubai,Bring Back Lost Love Spells In Australia,Online Magic Love Charms In Australia,Bahama Best Online Love SPELL Caster,A Powerful Voodoo Love Spell Caster In German,France,Norway,A Powerful Native Binding Spell Caster In United Kingdom,Powerful Love Doctor In Ireland,Sweden,Italy,Black Magic Spell Caster In Philippines,NEW LAND,Denmark,Sangoma In Gauteng South Africa,Spain Love Medium Psychic,Islami Arabic Divine Lost Love Medium,EX Back Spell Caster In Mauritius,A Best Bring Back Lost Love Spell Caster In The Bahamas,Saudi Arabia,Kuwait,A Love Spell Caster In South America,A powerful Traditional Healer In Caribbean."IF YOU CAN'T SEE IT,DOESN'T MEAN IT'S NOT THERE"WELCOME TO AN EXPERIENCED[19 YEARS OF SERVICE] BLACK MAGIC NATIVE TRADITIONAL HEALER, LOST LOVE SPELLS CASTER, LOVE SPELL CASTER, HEALER, HERBALIST, BINDING SPELL CASTER,MEDIUM OF LOVE,BEST ONLINE PSYCHIC READER,SANGOMA,WITCH DOCTOR [PSYCHIC- MAGGU +256783219521.
    • FAMOUS  BLACK MAGIC SPELL CASTER IN ALL USA +256783219521. +256783219521 POWERFUL BLACK MAGIC SPELLS CASTER|Witchcraft Spells Caster In USA UK AUSTRALIA CANADA NEW ZEALAND EUROPE SOUTH AFRICA SOUTH AMERICA ASIA IRELAND (USA) New York,California,Florida,Georgia,South Carolina,North Carolina,Virginia,West Virginia,Alabama,Louisiana,Mississippi,Tennessee,Kentucky,Delaware,New Jersey,Maryland,Ohio,Indiana,Michigan,Pennsylvania,Connecticut,Rhode Island,Massachusetts,New Hampshire,Vermont,Maine,Texas,Oklahoma,Arkansas,Wisconsin,Illinois,Minnesota,Iowa,Missouri,Kansas,New Mexico,Arizona,Nevada,Utah,Colorado,Nebraska,South Dakota,North Dakota,Montana,Wyoming,Oregon,Idaho,Washington,Fertility,Attraction,Binding Spell Caster In South America,24 Hours Online Love Psychic Reader,Native Herbalist,Sangoma,Traditional Healer in South Africa,Canada Best Lost Love Spell Caster,Strong Medium For Gays/Lesbians Relationships,Trusted Interracial Love Marriage Healer,POWERFUL Native Incantation Love Spell Caster in UK,Europe,Australia,Faithful Islamic-Arabic Divine Love Spells In Middle East,Top Online Love Traditional Doctor In USA,The Bahamas,Trusted Traditionalist in ALL Counties,A Love Spell Caster in Poland UK,Binding Love Spell In Dubai,Bring Back Lost Love Spells In Australia,Online Magic Love Charms In Australia,Bahama Best Online Love SPELL Caster,A Powerful Voodoo Love Spell Caster In German,France,Norway,A Powerful Native Binding Spell Caster In United Kingdom,Powerful Love Doctor In Ireland,Sweden,Italy,Black Magic Spell Caster In Philippines,NEW LAND,Denmark,Sangoma In Gauteng South Africa,Spain Love Medium Psychic,Islami Arabic Divine Lost Love Medium,EX Back Spell Caster In Mauritius,A Best Bring Back Lost Love Spell Caster In The Bahamas,Saudi Arabia,Kuwait,A Love Spell Caster In South America,A powerful Traditional Healer In Caribbean."IF YOU CAN'T SEE IT,DOESN'T MEAN IT'S NOT THERE"WELCOME TO AN EXPERIENCED[19 YEARS OF SERVICE] BLACK MAGIC NATIVE TRADITIONAL HEALER, LOST LOVE SPELLS CASTER, LOVE SPELL CASTER, HEALER, HERBALIST, BINDING SPELL CASTER,MEDIUM OF LOVE,BEST ONLINE PSYCHIC READER,SANGOMA,WITCH DOCTOR [PSYCHIC- MAGGU +256783219521.
    • Hello Welcome To THE WORLD'S N1 BEST LOVE SPELL CASTER TRADITIONAL HEALER #WITCHCRAFT CASTER (+256783219521) I am an experienced love spell caster and traditional healer for over 20 years. The process of casting love spells is done to enhance and help save relationships on the verge of breaking up and bring back the lost lover you lost even if they left you a long time ago.. I believe it is a healer’s duty to foster life in all its forms and alleviate bad luck, confusion and life’s mysterious problems. With my healing method i have helped thousands of individuals worldwide to find balance and happiness in their lives, I am able to check and disclose to you the origin of your recurring problems as well as provide an everlasting answer to i.e. have helped numerous figures and celebrities to create more success and happiness in all areas of their lives. I travel throughout the world helping people at their request and in my life I cast different Spells, from Love Spells to Money Spells, Luck Spells, Divorce Spells, Marriage Spells. ◆ Attractions Spells • Financial Freedom Spells ◆ Destroy Bad luck ◆ Win / Destroy Court Cases Spells ◆ No More Family Misunderstandings(Family Spells) ◆Customer Attractions For Businesses Spells ◆ Boost Performance in School , Work , Sports Spells ◆Get Married Quickly, Permanent Relationship Spells ◆ Love Binding Spells For Tight Relationships To Keep Your Partner Thinking And Dreaming About You Only. As time moves so first i dedicated my entire life to help those with serious challenges in life throughout the entire world. Through the help of the greatest ancestral spirits I am able to communicate with the outside world which gives me power to work beyond Boarder, a Love spell caster in Abu Dhabi spells, African love spells, African spells, Alaska spell caster, American spell caster, Amir, Angola, Arabic marriage spells, Atlanta love spells, Australia love spells, Bahrain love spells, Belgium love spells, best palm reader in America, best spell caster, black magic in England, black magic in UK, Botswana love spells, Brazilian spells, break up spells, Britain spells, Canada spells, cape town, commitment, create a marriage, Doha love spells, Dubai love spells, Egypt, England spell caster, England spells, faithfulness spells, forgive and forget, France love spells, free spells, free strong spells, gay marriage spells, Germany love spells, Ghana love spells, Gibraltar spells, how to cast a free spell, how to cast a lust for love spell, Igbo spells, Indian, Indian spell caster, Iraq love spells, Ireland love spells, Islamic hadal spell caster, Islamic love spells, Islamic spellcaster, Islamic spells, Italian love spells, Johannesburg, Jordan love spells, Kenya, Kuwait spells, Lesotho love spells, Libya spells, Liverpool, London, London love spells, loss angel's spell caster, love spells in Johannesburg, lust spell, Manchester, Manzini love spells, MARRY ME SPELL, Maseru love spells, Mbabane love spells, Mexican spells, Minnesota spell caster, miracle babies, money spells, Muslim marriage spells, new York spell caster, new York spells, new Zealand, new Zealand love spells, Nigeria, Nigerian love spell, Oman spells, one day prayer for spells, one day spells, Pakistan, Philippines spells, Qatar spells, quick spells, Rawalpindi, sandton love spells, Saudi Arabia love spells, SAVE MY MARRIAGE SPELL, Scotland love spells, sellout spell caster, Seychelles, Seychelles spells that work, soulmate, special spells, spell caster in Africa, spell caster in London, spell caster in FIJI, Spellcaster in Lagos, spellcaster in UK, Spell caster in Johannesburg, spells in Abuja, spells in USA, spells that work quick, spiritual healer in Africa, springs spell caster, stop divorce, Swaziland love spells, Sweden, Switzerland spells, Sydney love spells, top healer, true love, trusted Islamic spellcaster, united kingdom, united states of America spells, USA, wales love spells.
  • Topics

×
×
  • Create New...