MaestroLuke Posted October 6, 2009 Posted October 6, 2009 I just got confused.. Which one is the right code? >.> let leeroy teach you if (!activeChar.isNoble() && activeChar.getLevel() == 80) If Char Is Noble And Char Is 80 Lv THEN Make Him Noble :D w0w never will be noble with this code :D ! means NOT in java Nice share though it would be good idea to put it in EnterWorld Quote
max1flo Posted November 6, 2009 Posted November 6, 2009 Yeah , i thought that i can make a auto sublcass (without quest) but noblesse :O Quote
HardstyleMxc Posted November 6, 2009 Posted November 6, 2009 Very Usefull Code Thanks I test It ;) Quote
xAddytzu Posted November 7, 2009 Posted November 7, 2009 import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance; import net.sf.l2j.gameserver.serverpackets.InventoryUpdate; if (!activeChar.isNoble() && activeChar.getLevel() == 80) { activeChar.setNoble(true); activeChar.rewardSkills(); activeChar.getInventory().addItem("Tiara", ID, 1, activeChar, null); } Quote
Massari Posted December 22, 2009 Posted December 22, 2009 Sorry for the noob question, but where exactly do I edit this, where do I find L2PcInstance ? Quote
urzl Posted December 22, 2009 Posted December 22, 2009 Sorry for the noob question, but where exactly do I edit this, where do I find L2PcInstance ? I think its somewhere inside of workspace folder. (workspace/gameserver/java/net/l2j/sf and something ) I suggest you to use search for those things:P Quote
Massari Posted December 22, 2009 Posted December 22, 2009 there is no gameserver/java...maybe gameserver\data\jscript or something edit: i havent found any guide on how to unpack the source file, edit it and pack it back up again Quote
+cs.tribal Posted December 22, 2009 Posted December 22, 2009 Ontopic: Awesome man! i will try to add it! Tiara: You can add tiara on the shop man! Quote
conheonit Posted December 30, 2010 Posted December 30, 2010 There is an easier way... L2PcInstance.java private boolean _noble = false; set it to true and voila.. :P It is very good for PvP server, i used :) Quote
B00D Posted December 30, 2010 Posted December 30, 2010 just more simple , open navicat -> characters -> design -> noblesse : deafult 1... Quote
conheonit Posted December 30, 2010 Posted December 30, 2010 just more simple , open navicat -> characters -> design -> noblesse : deafult 1... If the server is 1000 players? The following code will help you solve problems UPDATE `characters` SET nobless='1'; [/Code] Quote
B00D Posted December 30, 2010 Posted December 30, 2010 If the server is 1000 players? The following code will help you solve problems UPDATE `characters` SET nobless='1'; [/Code] joking ? close for 1 min, open navicat and edit it thats all Quote
conheonit Posted January 1, 2011 Posted January 1, 2011 joking ? close for 1 min, open navicat and edit it thats all Sorry, my mistake when you mean to open up with functional design, I think the measures you use to manually edit all queries. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.