User:Sherry: Difference between revisions

From Flexible Survival
Jump to navigationJump to search
Sherry (talk | contribs)
Created page with "<pre> comb_win_name = "fs_comb" local comb_win_failed = false chat_win_name = "fs_chat" local chat_win_failed = false function initchat() chat_win = GetWorld (chat_win_name) ..."
 
Sherry (talk | contribs)
No edit summary
Line 1: Line 1:
==triggers==
Here's a sample trigger:
<pre>
<trigger
  enabled="y"
  group="combat"
  match="^--&lt; (ALLIES &gt;|FOES &gt;--)--------------------------------------------------------------$"
  omit_from_output="y"
  regexp="y"
  script="tocomb"
  sequence="100"
  >
</pre>
This can be built in gui
#Check "Regular Expression" and "Omit from output"
#Filling in a group to tag the trigger and script of tocomb
#Using the trigger pattern
==script portion==
<pre>
<pre>
comb_win_name = "fs_comb"
comb_win_name = "fs_comb"

Revision as of 20:51, 18 May 2011

triggers

Here's a sample trigger:

<trigger
   enabled="y"
   group="combat"
   match="^--< (ALLIES >|FOES >--)--------------------------------------------------------------$"
   omit_from_output="y"
   regexp="y"
   script="tocomb"
   sequence="100"
  >

This can be built in gui

  1. Check "Regular Expression" and "Omit from output"
  2. Filling in a group to tag the trigger and script of tocomb
  3. Using the trigger pattern

script portion

comb_win_name = "fs_comb"
local comb_win_failed = false

chat_win_name = "fs_chat"
local chat_win_failed = false


function initchat()
	chat_win = GetWorld (chat_win_name)
	local filename = GetInfo (67) .. chat_win_name .. ".mcl"
	Open (filename)
	chat_win = GetWorld (chat_win_name)
	if not chat_win then
		ColourNote ("white", "red", "Can't open chat world file: " .. filename)
		chat_win_failed = true  -- Give up trying to open
	end
end

	
function tochat (name, line, wildcards, styles)
	if not chat_win and not chat_win_failed then
		initchat()
	end
	if chat_win then
		for _, v in ipairs (styles) do
 		     chat_win:ColourTell (RGBColourToName (v.textcolour), RGBColourToName (v.backcolour), v.text) 
		end
		chat_win:Note("")
	end
end
 

function initcomb()
	comb_win = GetWorld (comb_win_name)
	local filename = GetInfo (67) .. comb_win_name .. ".mcl"
	Open (filename)
	comb_win = GetWorld (comb_win_name)
	if not comb_win then
		ColourNote ("white", "red", "Can't open combat world file: " .. filename)
		comb_win_failed = true  -- Give up trying to open
	end
end

	
function tocomb (name, line, wildcards, styles)
	if not comb_win and not comb_win_failed then
		initcomb()
	end
	if comb_win then
		for _, v in ipairs (styles) do
 		     comb_win:ColourTell (RGBColourToName (v.textcolour), RGBColourToName (v.backcolour), v.text) 
		end
		comb_win:Note("")
	end
end