Jump to content

Nightw0lf

Legendary Member
  • Posts

    2,854
  • Credits

  • Joined

  • Last visited

  • Days Won

    41
  • Feedback

    0%

Everything posted by Nightw0lf

  1. open a new topic in help section and explain your issue
  2. i have one contact me, it has payment functions if you want images i can provide
  3. https://gitlab.com/Tryskell/acis_public/-/blob/master/aCis_gameserver/java/net/sf/l2j/gameserver/model/actor/stat/CreatureStat.java line 209 for casting speed public int getMAtkSpd() { return (int) calcStat(Stats.MAGIC_ATTACK_SPEED, 333.0 * ((_activeChar.isChampion()) ? Config.CHAMPION_SPD_ATK : 1), null, null); } change it to public int getMAtkSpd() { int speed = (int) calcStat(Stats.MAGIC_ATTACK_SPEED, 333.0 * ((_activeChar.isChampion()) ? Config.CHAMPION_SPD_ATK : 1), null, null); if (speed > 2000)// if speed is higher than 2000 speed = 2000;// set speed 2000 return speed; } on line 237 for attack speed public int getPAtkSpd() { return (int) calcStat(Stats.POWER_ATTACK_SPEED, _activeChar.getTemplate().getBasePAtkSpd() * ((_activeChar.isChampion()) ? Config.CHAMPION_SPD_ATK : 1), null, null); } change it to public int getPAtkSpd() { int speed = calcStat(Stats.POWER_ATTACK_SPEED, _activeChar.getTemplate().getBasePAtkSpd() * ((_activeChar.isChampion()) ? Config.CHAMPION_SPD_ATK : 1), null, null); if (speed > 1500)// if speed is higher than 1500 speed = 1500;// set speed 1500 return speed; } if you want to do it for each class you have to add "if/else if/else" the final else i gave you in the examples if you dont want to handle all classes if (getActiveChar().getClassId().equals(ClassId.PHANTOM_RANGER) speed = 1560; // for some class else if (getActiveChar().getClassId().equals(ClassId.SILVER_RANGER) speed = 1600; //for some other class else if (speed > 1500)// final else if for all other classes speed = 1500; this last example is made from the code you shared i am not sure that still fits on acis or not. good luck
  4. they are problematic from the replies i see you should look for https://l2jeternity.com/ or @Kara they have good files, if you need donate panel search for Denart Designs
  5. it was fast take over servers and everything this is published like a warning i dont think this will evolve in the same way. that wont save them but will delay what is coming :'D
  6. i dont think will be that simple here in greece we also have blocked torrent sites (we just edit our DNS and voila they work) but in russia well... i think it will be interesting to watch what happens
  7. why you think he will satisfy your question when you use that tone? if it was me you had chat ban for attitude (just saying)
  8. this is just a fancy html npc with menus from merchant xml and multisells, in case you need real donate system go here https://shop.denart-designs.com/
  9. onEnter() function in this zone is not set for the character correctly if your code not work. debug the setter or you are simply not in a pvp zone plus be sure the zone is loaded
  10. From what i see you are working on design, keep it up and always use midleman or take half money front to be safe good luck and welcome
  11. its C# as he said i've also done this with dynamic template controlled by online panel, not like yours who was just downloading at "google speed" window. because the link was uploaded google file
  12. https://shop.denart-designs.com/
  13. https://prnt.sc/178x5z9
  14. @LordPanic badge as developer and support (he also done shares so if there is a badge for that) @Tryskell the badge of support master @Kara badge of support master based on their activity.
  15. https://www.google.com/search?client=firefox-b-d&q=pastebin+tvt+l2jacis
  16. database installer was success try Navicat cracked or heidiSQL to be sure about your database about the errors https://stackoverflow.com/a/56397188/8603433 follow this solution, something is not done right
  17. first of all you need that google search then take a look here next is google then is google then import project aCis 382 on eclipse setup the jdk environment build successfully the project run the build files to your question on apply patch 1) right click on project 2) hover menu team 3) click on apply patch 4) select the .diff file 5) follow the wizzard if you fail come back here if you success congrats
  18. short answer you cant since you miss all previous revisions
  19. Hidden Content. You need to become Premium Member in order to view this. respect the forum !
  20. another 700euro purchase thanks
  21. for me that is fast bug fixing congrats and good luck
  22. https://prnt.sc/15q1qrx change this links will fix your ssl issues in your ucp section
×
×
  • Create New...