Jump to content

sotid

Members
  • Posts

    345
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by sotid

  1. l2jacis.

    This is an example of how to combine two or more buffs into one using only xml.

    So lets say we want to combine shield and magic barrier , two defensive skills into one.

     

    Shield xml:



        

    <skill id="1040" levels="3" name="Shield" enchantLevels1="30" enchantLevels2="30" >
            <table name="#enchantMagicLvl"> 76 76 76 77 77 77 78 78 78 79 79 79 80 80 80 81 81 81 82 82 82 82 83 83 83 84 84 85 85 85 </table>
            <table name="#ench2MpConsume"> 30 29 29 28 28 27 27 26 26 25 25 24 24 23 23 22 22 21 21 20 20 19 19 18 18 17 17 16 16 15 </table>
            <table name="#ench2mpInitialConsume"> 7 7 7 7 7 7 7 6 6 6 6 6 6 6 6 5 5 5 5 5 5 5 4 4 4 4 4 4 4 4 </table>
            <table name="#ench1time"> 1240 1280 1320 1360 1400 1440 1480 1520 1560 1600 1640 1680 1720 1760 1800 1840 1880 1920 1960 2000 2040 2080 2120 2160 2200 2240 2280 2320 2360 2400 </table>
            <table name="#mpInitialConsume"> 2 5 8 </table>
            <table name="#mpConsume"> 8 18 31 </table>
            <table name="#rate"> 1.08 1.12 1.15 </table>
            <table name="#stackOrder"> 1 2 3 </table>
            <table name="#aggro"> 121 243 418 </table>
            <set name="mpInitialConsume" val="#mpInitialConsume"/>
            <set name="mpConsume" val="#mpConsume"/>
            <set name="target" val="ONE"/>
            <set name="reuseDelay" val="6000"/>
            <set name="hitTime" val="4000"/>
            <set name="skillType" val="BUFF"/>
            <set name="isMagic" val="true"/>
            <set name="operateType" val="ACTIVE"/>
            <set name="castRange" val="400"/>
            <set name="effectRange" val="900"/>
            <set name="aggroPoints" val="#aggro"/>
            <enchant1 name="magicLvl" val="#enchantMagicLvl"/>
            <enchant2 name="magicLvl" val="#enchantMagicLvl"/>        
            <enchant2 name="mpConsume" val="#ench2MpConsume"/>
            <enchant2 name="mpInitialConsume" val="#ench2mpInitialConsume"/>
            <for>
                <effect name="Buff" time="1200" val="0" stackOrder="#stackOrder" stackType="pd_up">
                    <mul stat="pDef" val="#rate"/>
                </effect>
            </for>
            <enchant1for>
                <effect name="Buff" time="#ench1time" val="0" stackOrder="3" stackType="pd_up">
                    <mul stat="pDef" val="1.15"/>
                </effect>
            </enchant1for>
        </skill>
    
    
    
    
    
    Magic Barrier xml:
    
    
        <skill id="1036" levels="2" name="Magic Barrier" enchantLevels1="30" enchantLevels2="30" >
            <table name="#enchantMagicLvl"> 76 76 76 77 77 77 78 78 78 79 79 79 80 80 80 81 81 81 82 82 82 82 83 83 83 84 84 85 85 85 </table>
            <table name="#ench2MpConsume"> 37 36 36 35 34 34 33 32 32 31 31 30 29 29 28 27 27 26 25 25 24 24 23 22 22 21 20 20 19 19 </table>
            <table name="#ench2mpInitialConsume"> 9 9 9 9 9 9 8 8 8 8 8 8 7 7 7 7 7 7 6 6 6 6 6 6 5 5 5 5 5 5 </table>
            <table name="#ench1time"> 1240 1280 1320 1360 1400 1440 1480 1520 1560 1600 1640 1680 1720 1760 1800 1840 1880 1920 1960 2000 2040 2080 2120 2160 2200 2240 2280 2320 2360 2400 </table>
            <table name="#mpInitialConsume"> 8 10 </table>
            <table name="#mpConsume"> 31 38 </table>
            <table name="#mDef"> 1.23 1.3 </table>
            <table name="#stackOrder"> 2 3 </table>
            <table name="#aggro"> 418 495 </table>
            <set name="mpInitialConsume" val="#mpInitialConsume"/>
            <set name="mpConsume" val="#mpConsume"/>
            <set name="target" val="ONE"/>
            <set name="reuseDelay" val="6000"/>
            <set name="hitTime" val="4000"/>
            <set name="skillType" val="BUFF"/>
            <set name="isMagic" val="true"/>
            <set name="operateType" val="ACTIVE"/>
            <set name="castRange" val="400"/>
            <set name="effectRange" val="900"/>
            <set name="aggroPoints" val="#aggro"/>
            <enchant1 name="magicLvl" val="#enchantMagicLvl"/>
            <enchant2 name="magicLvl" val="#enchantMagicLvl"/>        
            <enchant2 name="mpConsume" val="#ench2MpConsume"/>
            <enchant2 name="mpInitialConsume" val="#ench2mpInitialConsume"/>
            <for>
                <effect name="Buff" time="1200" val="0" stackOrder="#stackOrder" stackType="md_up">
                    <mul stat="mDef" val="#mDef"/>
                </effect>
            </for>
            <enchant1for>
                <effect name="Buff" time="#ench1time" val="0" stackOrder="3" stackType="md_up">
                    <mul stat="mDef" val="1.3"/>
                </effect>
            </enchant1for>
        </skill>
    
    
    
    New combined skill xml:
    
        We remove the extra tables if our new buff has only 1 level .Either way you should add tables like a normal buff.
        We take the orange lines from each xml and combine as shown and add the  noicon="1" to every other buff we combine.
    
    
    
    <skill id="CombinedID" levels="1" name="CombinedName" >
            <set name="mpInitialConsume" val="15"/>
            <set name="mpConsume" val="45"/>
            <set name="target" val="ONE"/>
            <set name="reuseDelay" val="6000"/>
            <set name="hitTime" val="4000"/>
            <set name="skillType" val="BUFF"/>
            <set name="isMagic" val="true"/>
            <set name="operateType" val="ACTIVE"/>
            <set name="castRange" val="400"/>
            <set name="effectRange" val="900"/>
            <set name="aggroPoints" val="495"/>
            <for>
                <effect name="Buff" time="1200" val="0" stackOrder="10" stackType="pd_up">
                    <mul stat="pDef" val="1.2"/>
                </effect>
                <effect name="Buff" time="1200" noicon="1" val="0" stackOrder="10" stackType="md_up">
                    <mul stat="mDef" val="1.35"/>
                </effect>
            </for>
        </skill>

     

    Notice:

    1)noicon="1" is to remove the icon of the effect so you wont be getting multiple icons of the same buff.

    2)stackOrder must always be higher than the original skill , number doesn't matter just need to be higher.

    3)stackType must always be the same as the original buffs to replace it.

     

    Hopefully I didn't forget anything and works, good luck.

     

    Disclaimer, haven't tested,  I don't have any pack to test it at the moment but as I recall it works but I'm making this topic for someone that wants to combine buffs and can't find a correct answer on the forum.Last time I checked my old topic on how to do noone gave a correct answer even my so called developer at the time.

    If anything doesn't work I will try and fix it.

     

     

    • Upvote 1
  2. Looking for someone that is not lazy and grumpy still passionate and not greedy with a big ego for a long partnership.

    Making a fun project , expect some already common systems, will have some weird systems to my liking.

    Haven't decided the chronicle yet , would like to discuss the possibilities , limitation of the clients and pricing also before starting something.

     

    I pay in front via paypal a respectable amount and when the work or system is completed I pay the rest.

    Bug fixes I pay after I make sure they are fixed.

     

     

     

    Unrelated : I don't see an option for a prefix.

    • Like 1
  3. Thank you for your share ! Some things I would like to say that they dont seem to faction correctly.

    First is the main thing with the bars thats broken since the beggining of these custom interface that the bars dont faction with f1, f2,f3 when you manually switch from one to another like khanbbq said.

     

    Second is that these sometimes appear transparent:
    https://prnt.sc/vkrxhq

    Also making other menus transparent like  admin panel.

     

    The cp or mp doesnt show on the under the name

     

    https://prnt.sc/vkry9o

     

    Also these bars under the name dont change if the target loses hp  they change once you espace and target him again. Works on mobs though.

  4. 19 minutes ago, Kara` said:

    Take care of me why? I did my work just fine. You paid 350e 1 year ago. Since the codes i made you didn't go up to that amount why you paid me again 2 months ago via bank account? Cause as i remember i finished your codes (list) and then in the end you told me "what i own to you" am i right? Why since u were "sad" with me u kept working with me? And now u revert back to 2018 almost for an amount of code i didn't make you? How is that even possible? Stop the nonsense. You paid me for codes that worth more than money you paid. You no appreciate anything at all neither the detail i worked with neither the fact that each time u ask for small change or update i didn't keep money.  From that point of view you're the "bad" person not me. All the extra work i did in the codes when you were like "uhh fuck it" worth more than the money u paid me over that time.

    Reason is simple. I had a small hope that you will keep your promise that you made on june and you will make up on the rest of the money that you couldnt do the cb into codes.

     

    And as you recall we said 1 of the systems would be the donator system and something else.

     

    And good job canceling yourself right now that you said that I paid for the list too that you said earlier which you said you did  my list codes to fill the payment.

     

    You are such a liar.

    • Sad 1
  5. Brut its okay mate, the mods of the site will take care of him and ask me for more information . I have all I need

    the payments the conversation everything. If they need anything else I can show them no need to waste your time talking to a wall because that how it feels talking to him.

  6. 37 minutes ago, Kara` said:

    "You run your server because of me & you report your own DEV. Nice."

     


    Let me laugh , haha.

     

    Good developing skills everyone , server live:
    Errors from subclass manager

    errors from his then 150 euro event manager

    Unfinished formulas

    Broken PvP Protectors(That before he touched it was okay).

    Broken PvP Color System(That before he touched it was okay).

    And more.

     

    And now wait till he says that I broke them and not his codes . Lol.


    I was begging you the last two weeks to fix your bugged codes and when did you try to help me? 

    1 hour after the server opened.

    Thanks to Brut that was present at that time that we fixed some of the errors.

     

  7. So Ive been working with kara since March 2019 all started almost fine . At April I was talking to him to make a complete Community Board with how I imagined it .

    He knew what project and client I am working with, because he already has installed his vote manager on my server.

    My total payment to Kara is about 750 euros . But he did the rest , of course not at the right time , always late and full of bugs that he had to fix , but he did the work done.
    He never finished this CB that I will talk about .

    After  I showed him how I picture my cb to look like he told me okay its possible and the cost will be around 350 euro.

    These are some samples that I made to make him understand :

    http://prntscr.com/qnohzo

     

    http://prntscr.com/qnoiaq

     

     

    Him understanding what I need.

    http://prntscr.com/qnoin5

    I have gained his trust by then cause of his previous

    work and prepaid him 350 euro and I told him we will finish some leftovers from the previous codes and then we will start the CB.

    http://prntscr.com/qno2f8
     

    After 1-3 days a dispute to his account and a report on the forums started.

    http://prntscr.com/qno3ft

     

    I was worried that I will get scammed too , and  I played my character , didn't push him to finish anything so he wont scam me or he wont vanish.

     

    Anyways to finish with that all he didnt make my cb cause of he limited knowledge of html coding,client coding.

    And after that we make a decision to just make an achievement system only and he told me that it will cost 100 euros and the rest will make them codes.

     

    http://prntscr.com/qnong4

     

    http://prntscr.com/qnonmg

     

    http://prntscr.com/qnonuo

     

    http://prntscr.com/qnoo0z

     

    http://prntscr.com/qnoog2

     

    http://prntscr.com/qnoolx

     

    He was asking me some htmls to go buy from stinkymadness even though he told me he will get them from him as said he did it in the past.
    Anyways after that he fixed some previous bugs that left and made the achievement that he finally finished like 1-2 months ago .


    After that I made another list with new tasks that I needed and did some of them and paid them few days later when he finished them .After that I reminded him that he

    stills hasnt finished his previous work . After that I opened my server ,got a lot of errors from his codes and fixes. And we are at present saying him that I want part of my money back for the work that he didnt do and he is saying he doesnt give me anything back.

     

    http://prntscr.com/qnovq0

     

    http://prntscr.com/qnovvb

     

    http://prntscr.com/qnow1z

     

    http://prntscr.com/qnow6o

     

    http://prntscr.com/qnowcu


    I wouldnt report him , I would still try to get my money back but after I showed the conversation to 3 other people including other devs they all told me to report him so I did.

    Hopefully he gets banned forever this time and his alt accounts.I dont even understand the reason he is getting always unbanned.

     

    Unfortunately I cant post the whole conversation cause it goes back to march and we were talking almost every other day.

     

    Plus he ditched me the day I was opening the server and the previous one and didnt fix some last errors and had to pay another developer to fix his errors.

     

     

  8. L2 DGA

    Interlude Stacksub highrate server x5000

    Server Social:
    Website : http://l2dga.com
    Discord: https://discordapp.com/invite/HdRCArk
    Facebook : https://www.facebook.com/L2DragonAge-251461392472783/



    54434992_251461895806066_669013465991898


     

    --Server Rates--

    » Xp 5000x.
    » Sp 5000x.
    » Adena 250x.
    » Drop 1x.
    » PartyXp 2x.
    » PartySp 2x.
    » Starting character level - 80.

    » Max character level - 99!
    » Max subs per character - 20!

    =Scroll Rates=
    » Safe enchant +5.
    » Blessed scrolls max enchant (+12).
    » Crystal scrolls max enchant (+21) for weapon.
    » Crystal scrolls max enchant (+16) for armor/jewels.
    » Simple enchant scrolls chance - 0%.(after +5).
    » Blessed enchant scrolls chance - 100%.

    » Crystal enchant scrolls chance - 35%
    » All Scrolls Maintain enchant if fail.

    Augmentation Rates
    » Mid life stone skill chance - 15%.
    » High life stone skill chance - 30%.
    » Top life stone skill chance - 50%.

    » Augment skills are 1 active and 1 passive!
    » Augmented items can be traded but you cannot see the augment or stats of the weapon on the trade section cause client limitations.

     

     

    --Custom Features--

    » Stucksub Main +20.
    » Custom Max level 99.

    » Starting armor Freya.
    » Starting weapon Icarus.
    » Custom Farming zones.
    » Custom Boss zone.
    » Custom level zones.
    » Unique pvp areas.
    » Unique event areas.
    » Valakas Lindvior Antharas Armors And Weapons!
    » All types of armor and weapons have the same stats.
    » Custom Rebirth system.
    » Unique Rebirth skills.



    --Server Features--
    » Main town - Giran.
    » Working all castle sieges.
    » Stackable scrolls, lifestones.
    » More than 10 raid bosses.
    » Gold bar system.
    » Wedding system.
    » Full npc buffer with auto buff.
    » Max count of buffs - 99.
    » Max count of debuffs - 5.
    » Max subclasses - 20.
    » Free and no quest class change.
    » Free and no quest sub class.
    » No weight limit.
    » No grade limit.
    » No death penalty.
    » No fall damage.
    » No grade penalty.
    » Pvp/pk show on title.
    » Online password change.
    » Top pvp/pk npc in game.
    » Augmentation system.
    » Clan Manager.
    » Boss Manager.
    » Noblesse Manager.
    » Offline shop system.
    » Great class balance when maxed out!



    --Olympiad Games--

    » Competition period [1] week.
    » Olympiad start time [22:00] end [00:00].
    » Server Time: UTC +2



    --Event System--
    » Online Scheduler where you can see when the events start.
    » Observer, you can observe an event when you haven't joined.
    » Hide name option!
    » Anti afk bot system . Stay inactive for 20 seconds and you get kicked from the event.


    Events:

    » TvT: Players divide in to two teams. The team with most kill in the end wins.
    » Deathmatch: Free for all event. Player with the most kills wins.
    » King Of The Hill: Kill all enemies in a small range around the zone in order to receive points. Team with most points wins.
    » Lucky: Open random chests as fast you can. If you lucky enough you will receive points else you will die and respawn.
    » Simon says: Simon will write a random word. The fastest player who will say it earn a point. The slowest one loses.

    » CTF: Players divide in to two teams. Each team has a flag. You must steal the enemy's flag and bring it in your pole. The team with most stolen flags wins.
    » Raid: Players divide in to two teams. Each team try to do the more damage on the raid boss or kill in order to win.


    --Vote Reward System--
    » Server provides Individual Vote reward for Hopzone/Topzone/Network.
    » There is also a mass auto reward upon completing the voting goal every 20 minutes.


    --Other Info--
    » AFK Systems: Players that are inactive for 30 minutes are being teleported to an afk zone.
    » .online This command shows online , afk , heroes , castle owners , offline shops and GM players.

    » Server Time: UTC +2

     

    • Downvote 1
×
×
  • Create New...