[EasyUO] Public Chat Viewer
Posted: Sun May 09, 2010 10:13 pm
Was created by someone else for someplace else, I made it work for here.
Will dump all the player text to a separate window so you have a history display of chat logs
Will dump all the player text to a separate window so you have a history display of chat logs
Code: Select all
;=============================================
; Script: Praxiiz's Public Chat Viewer
; Author: Praxiiz Spectreon
; Purpose: Created for Allure of the Unknown
; to allow players to keep track
; of public chat and pharos chat
; when there is a lot of journal
; spam.
; Version: 0.5
; Made to work with Excelsior Shard by Elron/Datguy
;=============================================
; Version; 0.6
;Window Initialization
menu clear
menu Window Title Praxiiz's Public Chat Viewer
menu Window Color blue
menu Window Size 700 170
menu List Create mainBuffer 10 10 680 150
menu Show
menu HideEUO
;set %newLine hello
;gosub addLine
set %index 0
set %newLine #journal
loop:
scanJournal 1
if %newLine <> #journal
{
set %temp #journal
str pos %temp < p
str Left %temp 1
if #STRRES = [ ;this is the first char of the lines you want to see
{
menu List Add mainBuffer #journal
set %newLine #journal
set %index %index + 1
menu List Select mainBuffer %index
;gosub addLine
}
}
goto loop:
halt