Jump to content

Nightw0lf

Legendary Member
  • Posts

    2,835
  • Credits

  • Joined

  • Last visited

  • Days Won

    38
  • Feedback

    0%

Everything posted by Nightw0lf

  1. https://github.com/nightw0lv/DonatePanel here are the classes to use it individually and the sql CREATE TABLE `donate_holder` ( `no` int(11) NOT NULL AUTO_INCREMENT, `id` int(11) NOT NULL, `count` int(11) NOT NULL, `playername` varchar(255) CHARACTER SET utf8 NOT NULL, `order_status` int(11) NOT NULL DEFAULT '1', PRIMARY KEY (`no`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1; and to anwer to your question the final part requires sources (for lucera there is a special donate.ext.jar library you can ask me for it) and you implement one of those classes that there are published on this git depending your project inside your sources and you build your project. thats it. for example aCis https://github.com/nightw0lv/DonatePanel/blob/master/Legacy/JAVA/Interlude/aCis/DonateGiverTaskManager.java you copy this file into aCis sources you go in gameserver.java and you call it somewhere like DonateGiverTaskManager.getInstance(); you import it with ctrl+shift+o combination build project & voila
  2. here is why you try to lure people into it. https://www.google.com/search?q=china+officially+backs+a+cryptocurrency here is why is so simple to be scammed. https://www.google.com/search?q=crypto+company+vanishes
  3. nice one i like it and almost well commended you repeat code alot you could do it in a short way using a function or two and avoid all this big code example is a list of items/count to reward in a loop to avoid Item instances copy paste and using another item id
  4. όχι εντάξει σίγουρα τρολλάρει
  5. its already shared there is no point to sell it, and if somebody wanted to buy he can go in advext and get real stuff 'fixed'.
  6. open a new topic in help section and explain your issue
  7. i have one contact me, it has payment functions if you want images i can provide
  8. 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
  9. 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
  10. 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
  11. 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
  12. 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)
  13. 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/
  14. 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
  15. 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
  16. 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
  17. @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.
  18. https://www.google.com/search?client=firefox-b-d&q=pastebin+tvt+l2jacis
  19. 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
×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock