Jump to content
  • 0

Channel system broadcast in all maps


skymia

Question


  • Group:  Members
  • Topic Count:  63
  • Topics Per Day:  0.02
  • Content Count:  298
  • Reputation:   4
  • Joined:  02/19/17
  • Last Seen:  

How to make it broadcast in all maps?

you don't need to create and join the channels.

Example:

if you use #main, #support, #trade it will automatically broadcast your message in all maps

// Channel System Configuration File

chsys: (
{
	/* Default channels (available to all players) */
	default_channels: {
		/* channel_name : channel_messages_color */
	 	main: "Yellow"
		support: "Blue"
		trade: "Red"
		chat: "Default"
		/* Add as many channels as you'd like. */
	}

	/* Colors available */
	colors: {
		Default: "0xffffff" /* Custom channels will use the first in the list unless a color is selected through @channel. */
		Red: "0xff0000"
		Blue: "0x83cfe9"
		Orange: "0xe57c00"
		Cyan: "0x00b89d"
		Yellow: "0xffff90"
		Green: "0x28bf00"
		Normal: "0x00ff00"
		/* Add as many colors as you'd like. */
	}

	/* Allow users to create their own (private) channels through @channel command? */
	/* (must also allow players to use @channel in groups.conf) */
	allow_user_channel_creation: true

	/* "map_local_channel" is an instanced channel unique to each map. */
	map_local_channel: false
	map_local_channel_name: "map"
	map_local_channel_color: "Yellow"
	map_local_channel_autojoin: true /* Disable autojoin in specific maps through mapflag 'nomapchannelautojoin'. */

	/* "ally_channel" is a channel shared by all your guild allies. */
	ally_channel_enabled: true
	ally_channel_name: "ally"
	ally_channel_color: "Green"
	ally_channel_autojoin: true
}
)

 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Forum Manager
  • Topic Count:  282
  • Topics Per Day:  0.06
  • Content Count:  3144
  • Reputation:   1632
  • Joined:  03/26/12
  • Last Seen:  

Global channels already broadcast to players on any map..

Can you be more specific about what you're needing?

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  9
  • Topics Per Day:  0.00
  • Content Count:  1138
  • Reputation:   290
  • Joined:  04/29/13
  • Last Seen:  

8 hours ago, skymia said:

How to make it broadcast in all maps?

you don't need to create and join the channels.

Example:

if you use #main, #support, #trade it will automatically broadcast your message in all maps


// Channel System Configuration File

chsys: (
{
	/* Default channels (available to all players) */
	default_channels: {
		/* channel_name : channel_messages_color */
	 	main: "Yellow"
		support: "Blue"
		trade: "Red"
		chat: "Default"
		/* Add as many channels as you'd like. */
	}

	/* Colors available */
	colors: {
		Default: "0xffffff" /* Custom channels will use the first in the list unless a color is selected through @channel. */
		Red: "0xff0000"
		Blue: "0x83cfe9"
		Orange: "0xe57c00"
		Cyan: "0x00b89d"
		Yellow: "0xffff90"
		Green: "0x28bf00"
		Normal: "0x00ff00"
		/* Add as many colors as you'd like. */
	}

	/* Allow users to create their own (private) channels through @channel command? */
	/* (must also allow players to use @channel in groups.conf) */
	allow_user_channel_creation: true

	/* "map_local_channel" is an instanced channel unique to each map. */
	map_local_channel: false
	map_local_channel_name: "map"
	map_local_channel_color: "Yellow"
	map_local_channel_autojoin: true /* Disable autojoin in specific maps through mapflag 'nomapchannelautojoin'. */

	/* "ally_channel" is a channel shared by all your guild allies. */
	ally_channel_enabled: true
	ally_channel_name: "ally"
	ally_channel_color: "Green"
	ally_channel_autojoin: true
}
)

 

 

-	script	autojoin	-,{

OnPCLoginEvent:
	atcommand "@join #main";
	atcommand "@join #support";
	atcommand "@join #trade";
end;
}

 

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  63
  • Topics Per Day:  0.02
  • Content Count:  298
  • Reputation:   4
  • Joined:  02/19/17
  • Last Seen:  

21 hours ago, Akkarin said:

Global channels already broadcast to players on any map..

Can you be more specific about what you're needing?

if i use #main other players cannot read my message sir

 

20 hours ago, Cyro said:

 


-	script	autojoin	-,{

OnPCLoginEvent:
	atcommand "@join #main";
	atcommand "@join #support";
	atcommand "@join #trade";
end;
}

 

ok sir i will try this one

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   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...