Jump to content

sτrίkε-

Legendary Member
  • Posts

    3,020
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by sτrίkε-

  1. ok Pro java Dev.. You Are Experienced! GRATZ! You Want Karma? i said that's enough
  2. p.x. sta arxika moO sto mxc i8eLa na kanw donate... i oikogeneia moO dn exei dinatotita na xrisimopoiisei pistwtiki karta kai i8eLa na vrw enan tropo na kanw donate... o husein m eipe oti borw na paw s ena net kai na dwsw lefta kanontas donate... tecpa kai egw nmZ oti kati pezei.. Anyway ....
  3. i think this the only solution but 1st time i hear this error... Which pack you use?
  4. yes they using scripts but at new revision from all companies l2phx is fixed.. Also To Dont Reply in old topics...
  5. also if you know to make compile.. just follow vago's guide for how to ban player who have weapon more than max http://www.maxcheaters.com/forum/index.php?topic=28110.0
  6. Thnx for your words and thnx for karma :D
  7. auto dn ginete kai mesw twn MegaLwn internet cafes? apo oso exw akoOcei boreis na pas s ena net cafe kai na dwseis lefta kai na peis p kai pws 8es na kaneis donate... aLi8euei oi m lene mLkc?
  8. ena 8a pw mono... auto dn ein bug eleoC min treLa8oOme... ein kia ena paLio koLpaki gia toOc off servers gia na rixneis ta low rate boss... p.x. anti queen.. an kaneis sorcerer 52 lvl kai xwseis dlvl kai pas na tin ri3eis peftei sto -60% t xronoO apo oti 8a tin erixnes!
  9. o infogate apo oso 3erw exei anava8mistei kai ein ct1++ opote l2phx=dead
  10. yes but and i can say one that i'm into l2jfree team and then to l2j matrix... check your mind... that's enough END!
  11. If I Dont know very well java Interpid OWNES At java he helped me and show me the error of source file -Strike and tell me something In Which Team You Are? L2J Matrix Or What It's Called Or L2J Free?
  12. http://www.maxcheaters.com/forum/index.php?topic=38831.0 here is all patched system which you MUST use when you try to decrypt some files...!
  13. Thnx For Your Words Guyc! IF I Have Time I Try to make it to another chronicles...
  14. ensure that you have coding correct You Must make a compile to find the source files of your pack... then edit these files which Mafia says http://www.maxcheaters.com/forum/index.php?topic=38659.0 Officila L2J Archid Topic http://www.maxcheaters.com/forum/index.php?topic=40041.0 How TO Compile it
  15. http://www.maxcheaters.com/forum/index.php?topic=33620.0 FOLLOW THE RULES
  16. Good Job! :D (Simple NPC) Kalo 8a tan na to kaneis me icons :P kai me full oLa ta buffs p iparxoOn
  17. Are You Sure For This? Have You Tested? Or Only You Say Words? L][blood Is L2JFree 1.2.9 And IT"S NOT FIXED! You Must Change The Protects Have a nice day! -Strike
  18. gia na kataLavw dineis lefta aLLa dn ta dineis mesw pistwtikis kartas?
  19. The Pics Owns :P Thnx Ace Downloading...(some of them)
  20. http://www.maxcheaters.com/forum/index.php?topic=45463.0 here we go
  21. HeLLo Folks Today I Show You How To Fix Subclass Exploits... We Add Penalty Time When You Change/Cancel/Add Subclass 1st Of All YOU MUST THE COMPILE! Time To Start Let's Go! This Is Tested To Gracia Part I At New Realases The Code Is Into Files But You Must Make Some Edit! Gracia Part I! go into com.l2jfree.gameserver.util and Open FloodProtector.java // protected actions public static final int PROTECTED_USEITEM = 0; public static final int PROTECTED_ROLLDICE = 1; public static final int PROTECTED_FIREWORK = 2; public static final int PROTECTED_GLOBAL_CHAT = 3; public static final int PROTECTED_TRADE_CHAT = 4; public static final int PROTECTED_ITEMPETSUMMON = 5; public static final int PROTECTED_HEROVOICE = 6; public static final int PROTECTED_SOCIAL = 7; public static final int PROTECTED_MULTISELL = 8; // ========================================================= Find This and add this line under this protects public static final int PROTECTED_SUBCLASS = 9; It Will Be Like This // protected actions public static final int PROTECTED_USEITEM = 0; public static final int PROTECTED_ROLLDICE = 1; public static final int PROTECTED_FIREWORK = 2; public static final int PROTECTED_GLOBAL_CHAT = 3; public static final int PROTECTED_TRADE_CHAT = 4; public static final int PROTECTED_ITEMPETSUMMON = 5; public static final int PROTECTED_HEROVOICE = 6; public static final int PROTECTED_SOCIAL = 7; public static final int PROTECTED_MULTISELL = 8; public static final int PROTECTED_SUBCLASS = 9; // ========================================================= Then Find This Line { 4, 42, 42, Config.GLOBAL_CHAT_TIME, Config.TRADE_CHAT_TIME, 16, 100, Config.SOCIAL_TIME, 2 }; and after "2" add "100" (if you want 10 seconds penalty time) it will be { 4, 42, 42, Config.GLOBAL_CHAT_TIME, Config.TRADE_CHAT_TIME, 16, 100, Config.SOCIAL_TIME, 2, 100 }; Save it... Done! Now Go To com.l2jfree.gameserver.model.actor.instance and open L2VillageMasterInstance.java At Imports add this import com.l2jfree.gameserver.util.FloodProtector; Then Go At Line 413 find this player.setActiveClass(paramOne); content.append("Change Subclass:<br>Your active sub class is now a <font color=\"LEVEL\">" (IF YOU HAVE ANOTHER REALASES FIND AT -10 lines Or +10 Lines You Find It) above This Add /* * DrHouse: Despite this is not 100% retail like, it is here to avoid some exploits during subclass changes, specially * on small servers. TODO: On retail, each village master doesn't offer any subclass that is not given by itself so player * always has to move to other location to change subclass after changing previously. Thanks Aikimaniac for this info. */ if (!FloodProtector.getInstance().tryPerformAction(player.getObjectId(), FloodProtector.PROTECTED_SUBCLASS)) { player.sendMessage("You can change Subclass only every 10 Second(s)"); return; } Change Action Is Done! Now Go TO Cancel Go To Line 488 (case7) And Find This player.setActiveClass(paramOne); above This Add /* * DrHouse: Despite this is not 100% retail like, it is here to avoid some exploits during subclass changes, specially * on small servers. TODO: On retail, each village master doesn't offer any subclass that is not given by itself so player * always has to move to other location to change subclass after changing previously. Thanks Aikimaniac for this info. */ if (!FloodProtector.getInstance().tryPerformAction(player.getObjectId(), FloodProtector.PROTECTED_SUBCLASS)) { player.sendMessage("You can cancel Subclass only every 10 Second(s)"); return; } Cancel It's Done.. Now Go To Add Action Go TO Line 393 (case4) find this player.setActiveClass(player.getTotalSubClasses()); Above this Add /* * DrHouse: Despite this is not 100% retail like, it is here to avoid some exploits during subclass changes, specially * on small servers. TODO: On retail, each village master doesn't offer any subclass that is not given by itself so player * always has to move to other location to change subclass after changing previously. Thanks Aikimaniac for this info. */ if (!FloodProtector.getInstance().tryPerformAction(player.getObjectId(), FloodProtector.PROTECTED_SUBCLASS)) { player.sendMessage("You can Add new Subclass only every 10 Second(s)"); return; } Add Action Is Done! Save it And Compile Your Pack! Credits Forgotex20 For Greek Guide Me For Transalation! The Transalation Will Be For A-Style As Requested! Gracia Part II Version 1.2.9 Go to com.l2jfree.gameserver.util and open FloodProtector.java Find This // reuse delays for protected actions (in game ticks 1 tick = 100ms) private static final int[] REUSEDELAY = new int[] { 4, 42, 42, Config.GLOBAL_CHAT_TIME, Config.TRADE_CHAT_TIME, 16, 100, Config.SOCIAL_TIME, 20, 10 }; and make something like this // reuse delays for protected actions (in game ticks 1 tick = 100ms) private static final int[] REUSEDELAY = new int[] { 4, 42, 42, Config.GLOBAL_CHAT_TIME, Config.TRADE_CHAT_TIME, 16, 100, Config.SOCIAL_TIME, 2, 100 }; Save It... Done! Now You Are Done! you Have Fix It But The Players Can't Understand that server protected... If You Are Newbie To Edit Java Files Just Compile Here But If You Want To Add Text When Someone Go To Make It Follow These Steps! Go To com.l2jfree.gameserver.model.actor.instance and Open L2VillageMasterInstance.java And Find at line 299-302(case 4) this { _log.warn("Player "+player.getName()+" has performed a subclass change too fast"); return; } make it { player.Sendmessage("This Server Protected! You Can Only Add Subclass Into 10 Second(s)"); return; } Done The Add! Now Go To line 424-427 (Case 5) And Find Again The Same { _log.warn("Player "+player.getName()+" has performed a subclass change too fast"); return; } make it { player.Sendmessage("This Server Protected! You Can Only Change Subclass Into 10 Second(s)"); return; } Done And The Change Action Now Go To Line 466-469(case 7) and Find Again THe Same { _log.warn("Player "+player.getName()+" has performed a subclass change too fast"); return; } make it { player.Sendmessage("This Server Protected! You Can Only Cancel Subclass Into 10 Second(s)"); return; } Done And The Cancel Action! Save It And Now Compile! Now you Are Ok With Text! Again Credits For Gracia Part I Forgotex20 me for transalation For Gracia Part II Credits Go To Me! Have Fun!
  22. i just know this because many of bugs discovered which worked at cw now is fixed... i had say to XxRxX which is the bugs and know it's fixed... my opinion it's just the Best Interlude server... but i dont play there because i hate custom items... -Strike
  23. Now I JUST REPORT YOU! Have Fun!
×
×
  • 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