Aidas Posted July 26, 2010 Posted July 26, 2010 Does someone knows how to do that (TvT only for nobless) ? Quote
0 EdenEternal Posted July 26, 2010 Posted July 26, 2010 add this in tvt.java public static boolean checknoble() { if (!activeChar.isNoblesseBlessed()) activeChar.sendMessage("you must be noblesse."); return true; } Quote
0 Aidas Posted July 26, 2010 Author Posted July 26, 2010 In witch place ? by the way, thanks, man :) Quote
0 Nosti21 Posted July 26, 2010 Posted July 26, 2010 In witch place ? by the way, thanks, man :) tvt.java..!! Quote
0 Aidas Posted July 26, 2010 Author Posted July 26, 2010 In know that in tvt.java !!! But in with place to put it ? Quote
0 EdenEternal Posted July 26, 2010 Posted July 26, 2010 after public static boolean checkMinLevel(int minlvl) { if (_maxlvl <= minlvl) { return false; } return true; } Quote
0 Aidas Posted July 26, 2010 Author Posted July 26, 2010 Thanks, solved, someone can lock the topic. :) Quote
0 Erol Posted July 26, 2010 Posted July 26, 2010 Thanks, solved, someone can lock the topic. :) Quote
0 Matim Posted July 26, 2010 Posted July 26, 2010 Unlocked. Does someone knows how to do that (TvT only for nobless) ? public static boolean checknoble() { if (!activeChar.isNoblesseBlessed()) activeChar.sendMessage("you must be noblesse."); return true; } hmm?? Logic please. Quote
0 EdenEternal Posted July 26, 2010 Posted July 26, 2010 Unlocked. hmm?? Logic please. sorry it's my fault add this public static boolean checknoble() { if (!activeChar.isNoble()) activeChar.sendMessage("you must be noblesse."); return false; } Quote
0 adenaman Posted July 26, 2010 Posted July 26, 2010 fixed Wouldnt it be better? public static boolean checknoble() { if (!activeChar.isNoble()){ activeChar.sendMessage("you must be noblesse."); return false; } return true; } Quote
0 xAddytzu Posted July 26, 2010 Posted July 26, 2010 lol wont work, also you need to declare this method :\ Quote
Question
Aidas
Does someone knows how to do that (TvT only for nobless) ?
14 answers to this question
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.