FFs Posted June 16, 2011 Posted June 16, 2011 Hi people! Thats my first share. I made commands to register, leave and to know the status of the TvT Event. Manual Setup: Core Patch: In: "java/com/l2jserver/Config.java" Search: public static boolean TVT_ALLOW_VOICED_COMMAND; And put this code below: public static boolean TVT_ALLOW_REGISTER_VOICED_COMMAND; After that search this code: TVT_ALLOW_VOICED_COMMAND = Boolean.parseBoolean(L2JModSettings.getProperty("TvTAllowVoicedInfoCommand", "false")); And put this code below: TVT_ALLOW_REGISTER_VOICED_COMMAND = Boolean.parseBoolean(L2JModSettings.getProperty("TvTAllowRegisterVoicedCommand", "false")); In: "java/config/l2jmods.properties" Find this lines: TvTEventTeam2Coordinates = 149999,46728,-3414 And put this others lines below: +#Allow Voiced .join / .leave / .tvt commands +TvTAllowRegisterVoicedCommand = True DP Patch: In: "data/scripts/handlers/voicedcommandhandlers/TvTVoicedInfo.java" Search this line: private static final String[] _voicedCommands = { "tvt" }; And delete it, and put this lines in the same place: private static final String[] _voicedCommands = { "tvt", "tvtjoin", "tvtleave" }; Search in the same code: activeChar.sendPacket(ActionFailed.STATIC_PACKET); } } And below put this lines: else if(command.equalsIgnoreCase("tvtjoin")) { if(Config.TVT_ALLOW_REGISTER_VOICED_COMMAND) TvTEvent.onBypass("tvt_event_participation", activeChar); else activeChar.sendMessage("Command disabled"); } else if(command.equalsIgnoreCase("tvtleave")) { if(Config.TVT_ALLOW_REGISTER_VOICED_COMMAND) TvTEvent.onBypass("tvt_event_remove_participation", activeChar); else activeChar.sendMessage("Command disabled"); } Patch Download: Core: http://www.mediafire.com/?44ogclf453iuft7 DP: http://www.mediafire.com/?t3d1rgze70u73y9 Chronicle: Freya Pack: L2JServer (Last Rev - 16/06/11) Credits: FFs Quote
liviudev Posted June 17, 2011 Posted June 17, 2011 Thank you, great share. :) Has anyone tested it? Working? Quote
FFs Posted June 17, 2011 Author Posted June 17, 2011 Thank you, great share. :) Has anyone tested it? Working? Tested on: 16/06/11 and working perfectly. Quote
Legend™ Posted June 17, 2011 Posted June 17, 2011 I dont have a tvtvoiced.java but the original file tvtvoiceinfo.java will that do? or do i rename the file? Quote
FFs Posted June 17, 2011 Author Posted June 17, 2011 I dont have a tvtvoiced.java but the original file tvtvoiceinfo.java will that do? or do i rename the file? Sorry, my mistake, i edited the post. The current file is tvtvoiceinfo.java Quote
l2alternative Posted June 21, 2011 Posted June 21, 2011 i have a question when i´m in the config.java how i can edit the line on eclipse? i want make my own custom server thanks good share Quote
FFs Posted June 21, 2011 Author Posted June 21, 2011 i have a question when i´m in the config.java how i can edit the line on eclipse? i want make my own custom server thanks good share Cntrl + F, search the line how i said on the guide, and put the new one. You can do that with all the lines and codes. Quote
`NeverMore Posted June 23, 2011 Posted June 23, 2011 Thanks Keep Working this way it is a good start .. Quote
FFs Posted June 23, 2011 Author Posted June 23, 2011 Thanks Keep Working this way it is a good start .. Thanx *NeverMore* :) Quote
Legend™ Posted June 25, 2011 Posted June 25, 2011 i cant seem to get it to work i get syntax error, either with .tvtjoin or .join in config i put #Allow Voiced .join / .leave / .tvt commands TvTAllowRegisterVoicedCommand = True # Voiced command (.tvt) working during TVT event to get information about event status TvTAllowVoicedInfoCommand = True even if i put false the same any suggestions? Quote
FFs Posted June 25, 2011 Author Posted June 25, 2011 i cant seem to get it to work i get syntax error, either with .tvtjoin or .join in config i put #Allow Voiced .join / .leave / .tvt commands TvTAllowRegisterVoicedCommand = True # Voiced command (.tvt) working during TVT event to get information about event status TvTAllowVoicedInfoCommand = True even if i put false the same any suggestions? Post the error please. Quote
Legend™ Posted June 25, 2011 Posted June 25, 2011 i get no errors when compiling everything compiles perfect,just in game when i write .tvtjoin i get a message :syntax error;normaly a pop up windows pops up but in my case nothing //edit now it works great Quote
FFs Posted July 1, 2011 Author Posted July 1, 2011 thx FFs Np, if you have problems or questions just post here. 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.