Jump to content

sotid

Members
  • Posts

    345
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

1 Follower

About sotid

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

2,613 profile views

sotid's Achievements

  1. It seems like a client bug , have you triend logging in with a clean client with just using your ip?
  2. 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.
  3. 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.
  4. As is now custom made it wont work as intended. Its custom made to work as it is.
  5. @CelestineAbout transparency , guess Im blind :D . About stats on players I figured that was the case. Thanks for your answer. The bars still need fixing :)
  6. 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.
  7. 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.
  8. 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.
  9. changing the subject as always I see kara. I got nothing.
  10. 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.
  11. 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.
×
×
  • Create New...