Jump to content

3xpl0it3R

Members
  • Posts

    811
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by 3xpl0it3R

  1. I got 1 question.The server changes to L][MasTers ?
  2. Thx very mush.I really need this.
  3. Gia ti Client einai afto ?
  4. WOW ! Extreme share ! Thx very much.
  5. I put it on my interlude system but i dont know how to use l2 phx. xD
  6. Nice share.I need really need this.Thx m8.
  7. LOL.U must compile to do this.Search into the forum and u will found some guides.
  8. Wuy the server site is down ? .And the server too.
  9. LOL.This is L2 Phytes ? .I get ip ban yersteday.All cuz the [ADM]Exte make a server(As he says)and he think is the GOD !!! I had make a server Name : L2 Imposible and was a good server.(Exept the skills, and some bugs).But is close.. now.Anyway this server is good but. as you say, But those Admins are very bad guys. I aggre with u.
  10. The Forum got problems.And the forum have a backdoor to have access to the db.Is better to fix it.
  11. Thx a lot 4 that share.Is very usefull.
  12. Den einai kai oti kalitero na kaneis afto to pragma.Gt poli apla osoi exoun stisei server 8a kseroun oti, oti ginete sto game to lei sto Game Server console(Oxi se ola ta packs).Egw ston server mou xrisimopiw idiko programa gia na parakolou8w tous gm kai olous tous char.
  13. Aaaaaaa ok Euxaristo poli paidia gia to help sas Problem Solved.Kapios na lock to topic.
  14. Gia sas kai pali.Eixa mia mikri aporia.As poume oti egw exw L2JFree kai katebazw ena arxeio me ena weapon pou einia gia L2J Oneo.Kai pernaw kanonika ta xml arxeia kai ta alla.Kai mou menei mono to SQL File.Ama paw na kanw execute batch file 8a mou bgalei error.Sosta ?? .Ok.Ama to balw monos mou, diladi paw sto table wheapons kai to ftiaksw monos mou(Opws einai sto SQL arxeio), 8a to parei ?? or 8a mou bgalei problima ??? .Ama to parei kanonika kai paw sto l2 kai to kanw spwn sto invertory mou 8a to bgalei kanonika or den 8a mou to bgalei ??? PS: Eixa brei ena SHARE tou Stefouli nomizw pou mesa eixe ta Tears On Fallen Angel.Ekana Execute batch file to SQL arxeio kai mou ebgaze problima.
  15. Kalos Ir8es sto forum.Edw bazoume Shares kai Guide .Afto simenei oti eisai se la8os katigoria.Kapios na to balei stin sosti katigoria.
  16. Esbisa afto pou eixa balei edw(Gia na min kanw pali neo topic).Exw mia aporia.Ekana compile kanonika.Peira to SVN apo to L2Dot kai exw kanonika ta arxeia.Twra egw brika afto to topic : http://www.maxcheaters.com/forum/index.php?topic=50288.0 Peiga ekei pou eprepe.Diladi Index: java/net/sf/l2j/gameserver/model/actor/instance/L2ClassMasterInstance.java Egw twra prepei na anoiksw to arxeio me to Eclipse.Sosta ??? .Afou to anoiksw prepei na balw sto telos tou arxeiou afto ? --- java/net/sf/l2j/gameserver/model/actor/instance/L2ClassMasterInstance.java (revision 2705) +++ java/net/sf/l2j/gameserver/model/actor/instance/L2ClassMasterInstance.java (working copy) @@ -18,9 +18,11 @@ import net.sf.l2j.Config; import net.sf.l2j.gameserver.ai.CtrlIntention; import net.sf.l2j.gameserver.datatables.CharTemplateTable; +import net.sf.l2j.gameserver.datatables.NpcTable; import net.sf.l2j.gameserver.model.base.ClassId; import net.sf.l2j.gameserver.model.base.ClassLevel; import net.sf.l2j.gameserver.model.base.PlayerClass; +import net.sf.l2j.gameserver.model.L2World; import net.sf.l2j.gameserver.model.quest.Quest; import net.sf.l2j.gameserver.network.SystemMessageId; import net.sf.l2j.gameserver.network.serverpackets.ActionFailed; @@ -40,7 +42,11 @@ //private static Logger _log = Logger.getLogger(L2ClassMasterInstance.class.getName()); private static final int[] SECONDN_CLASS_IDS = {2,3,5,6,9,8,12,13,14,16,17,20,21,23,24,27, 28,30,33,34,36,37,40,41,43,46,48,51,52,55,57}; - + public static L2ClassMasterInstance ClassMaster = new L2ClassMasterInstance(31228, NpcTable.getInstance().getTemplate(31228)); + static + { + L2World.getInstance().storeObject(ClassMaster); + } /** * @param template */ @@ -52,8 +58,8 @@ @Override public void onAction(L2PcInstance player) { - if (!canTarget(player)) return; - + //if (!canTarget(player)) return; +/* // Check if the L2PcInstance already target the L2NpcInstance if (getObjectId() != player.getTargetId()) { @@ -73,7 +79,7 @@ player.getAI().setIntention(CtrlIntention.AI_INTENTION_INTERACT, this); return; } - +*/ if (Config.DEBUG) _log.fine("ClassMaster activated"); @@ -94,19 +100,16 @@ jobLevel = 3; } - if (!Config.ALLOW_CLASS_MASTERS) - jobLevel = 3; - if(player.isGM()) { showChatWindowChooseClass(player); } - else if (((level >= 20 && jobLevel == 1 ) || - (level >= 40 && jobLevel == 2 )) && Config.ALLOW_CLASS_MASTERS) + else if ((level >= 20 && jobLevel == 1 ) || + (level >= 40 && jobLevel == 2 )) { showChatWindow(player, classId.getId()); } - else if (level >= 76 && Config.ALLOW_CLASS_MASTERS && classId.getId() < 88) + else if (level >= 76 && classId.getId() < 88) { for (int i = 0; i < SECONDN_CLASS_IDS.length; i++) { @@ -126,7 +129,7 @@ } } } - else if (level >= 76 && Config.ALLOW_CLASS_MASTERS && ((classId.getId() >= 123 && classId.getId() < 131 ) || classId.getId() == 135)) // this is for Kamael Race 3rd Transfer + else if (level >= 76 && ((classId.getId() >= 123 && classId.getId() < 131 ) || classId.getId() == 135)) // this is for Kamael Race 3rd Transfer { showChatWindow(player, classId.getId()); } @@ -155,7 +158,7 @@ html.setHtml(sb.toString()); player.sendPacket(html); } - } + //} player.sendPacket(ActionFailed.STATIC_PACKET); } Sas parakalw peite mou.Ti prepei na prosexw.Sorry alla den exw dei kanena topic gia afto to 8ema. PS:Otan ma8w kala gia afta sas iposxome pws 8a kanw ena GUIDE gia afto to 8ela.Eclipse-kai afta ta add.
  17. Deite edw : http://www.maxcheaters.com/forum/index.php?topic=55263.new#new Doulebei 100% .To topic einai diko mou.Kai to exw dokimasei.
  18. Ok. Problem Solved.Kapios na lock to topic.
  19. Tipota.Loipon : Problem Solved .Kapios na lock to topic.
  20. Euxaristw poli.Xreiazomoun kati tetio alla 8a itan kalitero na baleis gia chronicle einai afto(Fisika einai Gracia- alla ti Part ?).Kai einai gia L2 Emu .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