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
liviudev Posted June 17, 2011 Posted June 17, 2011 Thank you, great share. :) Has anyone tested it? Working?
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.
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?
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
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
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.
`NeverMore Posted June 23, 2011 Posted June 23, 2011 Thanks Keep Working this way it is a good start ..
FFs Posted June 23, 2011 Author Posted June 23, 2011 Thanks Keep Working this way it is a good start .. Thanx *NeverMore* :)
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?
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.
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
FFs Posted July 1, 2011 Author Posted July 1, 2011 thx FFs Np, if you have problems or questions just post here.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now