Miniconsole Map

Post Reply
Xarcon
Posts: 1
Joined: Mon Apr 09, 2012 2:53 am

Miniconsole Map

Post by Xarcon »

So I have look all over the internet, and these forums to see exactly what coding I am doing wrong but I am still at a lost. I have been able to capture the map and put it where I want it. But when I try to highlight my position it fails to send it to the miniconsole. When I turn the script to have it copy and Append, the trigger works fine with the map. But when it is ready to copy and append. It doesnt work. Here is what I have.

Trigger
Code: [show] | [select all] lua
--- Area 
with a fire length of 24
Code: [show] | [select all] lua
selectCurrentLine()
copy()
appendBuffer( "mko" )
deleteLine()
Script
Code: [show] | [select all] lua
WindowWidth = 0;
WindowHeight = 0;
WindowWidth, WindowHeight = getMainWindowSize();

createMiniConsole("mko", 973,1,315,300)
setBackgroundColor("mko",0,0,0,0)
setMiniConsoleFontSize("mko", 8)
Here is my place marker that I want highlighted. I have it as a substring trigger
Code: [show] | [select all] lua
+
and then I have tryed filtering it from the map. Using the highligh check box and using fg() bg() without any luck.

Post Reply