Est MotD W

From EventScripts Community Encyclopedia
Syntax: est_MotD_W <identifier> <Title> <command> <URL>
Note: Command parameters are described inside the < and > characters. Optional parameters are contained within [ and ] characters.

Contents

Description

Display an external website in the MOTD window

Parameters

  • Title - The Title of the MotD Menu
  • command - Command to run on OK press (0 for no command)
  • URL - The Webside you want to browse

Example


// Browses google.com if someone say !google
 
event player_say
{
		//If the Player write !google,
	if(event_var(text) == "!google") do
	{
			//The MotD-Browser will open the WebPage
		es est_MotD_W event_var(userid) "Google.com" 0 "http://google.com"
	}
}

Notes

  • Can't execute programm Links like "teamspeak://XXX.XXX.XXX:8767"

See Also

blog comments powered by Disqus