Jump to content

Recommended Posts

Posted

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

Posted

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

Posted

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.

Posted

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?

Posted

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.

Posted

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

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




×
×
  • Create New...