Add sorted campaign mob tracker
This commit is contained in:
parent
7308c7ae2f
commit
25c2a5b094
@ -31,6 +31,7 @@
|
|||||||
* repopwatch on|off - toggles announcing of repops in $repchan
|
* repopwatch on|off - toggles announcing of repops in $repchan
|
||||||
* .note *message here* - adds *message* to notes.log (bottom right window)
|
* .note *message here* - adds *message* to notes.log (bottom right window)
|
||||||
* .newpage - clears the note screen, providing a fresh page
|
* .newpage - clears the note screen, providing a fresh page
|
||||||
|
* cpcheck - print list of campaign targets to note window, sorted by area
|
||||||
|
|
||||||
|
|
||||||
The actions.tin and aliases.tin files are a place for your personal triggers and aliases.
|
The actions.tin and aliases.tin files are a place for your personal triggers and aliases.
|
||||||
|
@ -1,17 +0,0 @@
|
|||||||
#tmux kill-session -t aardwolf
|
|
||||||
#tmux new-session -d -s aardwolf -x 189 -y 47
|
|
||||||
#tmux splitw -v -l 20 'tail -fs .1 /home/br4n/documents/MUD/AardWolf/aardwolf/aardwolf/quest'
|
|
||||||
#tmux selectp -t 0
|
|
||||||
#tmux splitw -v -l 22 'tail -fs .1 /home/br4n/documents/MUD/AardWolf/aardwolf/aardwolf/affects'
|
|
||||||
#tmux selectp -t 2
|
|
||||||
#tmux attach-session -t aardwolf
|
|
||||||
#tmux splitw -h -l 140 'tail -fs .1 /home/br4n/documents/MUD/AardWolf/aardwolf/aardwolf/channel.log'
|
|
||||||
#tmux splitw -v -l 37 'tt++ -G /home/br4n/documents/MUD/AardWolf/aardwolf/aardwolf/setup.tin'
|
|
||||||
#tmux send-keys -t 0 'exit' Enter
|
|
||||||
|
|
||||||
tmux split-window -v -p 80 'tail -fs .1 /home/br4n/documents/MUD/AardWolf/aardwolf-tintin/logs/channel.log'
|
|
||||||
tmux swap-pane -Dd
|
|
||||||
tmux split-window -h -p 20 'tail -fs .1 /home/br4n/documents/MUD/AardWolf/aardwolf-tintin/logs/minimap.log'
|
|
||||||
tmux split-window -v -p 50 'tail -fs .1 /home/br4n/documents/MUD/AardWolf/aardwolf-tintin/logs/notes.log'
|
|
||||||
tmux select-pane -L
|
|
||||||
tmux send-keys 'tt++ -G /home/br4n/documents/MUD/AardWolf/aardwolf-tintin/config.tin' Enter
|
|
31
aliases.tin
31
aliases.tin
@ -25,3 +25,34 @@
|
|||||||
#showme {<0&09>\<0&09\><099> <1&09>\<1&09\><099>};
|
#showme {<0&09>\<0&09\><099> <1&09>\<1&09\><099>};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#ALIAS {cpcheck}
|
||||||
|
{
|
||||||
|
.newpage;
|
||||||
|
#var {cplog} {1};
|
||||||
|
#line {log} {$dir/logs/notes.log} {<199>-==[<169>Campaign Targets<199>]==-<099>\n};
|
||||||
|
campaign check;
|
||||||
|
};
|
||||||
|
|
||||||
|
#ACTION {^You still have to kill %. %* (%*)$}
|
||||||
|
{
|
||||||
|
#if {$cplog}
|
||||||
|
{
|
||||||
|
#list {cpareas} {find} {%3} {exists};
|
||||||
|
#if {$exists == 0} { #list {cpareas} {sort} {%3}; };
|
||||||
|
#list {%3} {sort} {%2};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
#ACTION {left to finish this campaign.$}
|
||||||
|
{
|
||||||
|
#var {cplog} {0};
|
||||||
|
#foreach {$cpareas[%*]} {name}
|
||||||
|
{
|
||||||
|
#line {log} {$dir/logs/notes.log} {<199>$name:<099>};
|
||||||
|
#foreach {${$name}[%*]} {target}
|
||||||
|
{
|
||||||
|
#line {log} {$dir/logs/notes.log} { * <029>$target<099>};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
7
bin/aardwolf-session
Executable file
7
bin/aardwolf-session
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
tmux split-window -h -p 22 'tail -fs .1 /home/br4n/documents/MUD/AardWolf/aardwolf-tintin/logs/minimap.log'
|
||||||
|
tmux split-window -v -p 58 'tail -fs .1 /home/br4n/documents/MUD/AardWolf/aardwolf-tintin/logs/notes.log'
|
||||||
|
tmux select-pane -L
|
||||||
|
tmux split-window -v -p 80 'tail -fs .1 /home/br4n/documents/MUD/AardWolf/aardwolf-tintin/logs/channel.log'
|
||||||
|
tmux swap-pane -Ud
|
||||||
|
tmux send-keys 'tt++ -G /home/br4n/documents/MUD/AardWolf/aardwolf-tintin/config.tin' Enter
|
14
bin/release
Executable file
14
bin/release
Executable file
@ -0,0 +1,14 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Clear Username and Password
|
||||||
|
sed -i '1,2s/{\(.*\)} {\(.*\)}\;$/{\1} {}\;/' config.tin
|
||||||
|
echo "Clearing credentials..."
|
||||||
|
|
||||||
|
# Empty logs and history
|
||||||
|
for f in logs/*.log
|
||||||
|
do
|
||||||
|
rm $f
|
||||||
|
touch $f
|
||||||
|
echo "Clearing $f..."
|
||||||
|
done
|
||||||
|
echo "Done - ready to commit."
|
@ -18,7 +18,7 @@
|
|||||||
#READ {$dir/aliases.tin};
|
#READ {$dir/aliases.tin};
|
||||||
#READ {$dir/actions.tin};
|
#READ {$dir/actions.tin};
|
||||||
|
|
||||||
#ACTION {{^\{chan ch={answer|question|wangrp|gossip|barter|auction|nobletalk|sports|gclan|newbie|curse|market}\}%2$}} {#line gag};
|
#ACTION {{^\{chan ch={answer|question|wangrp|tech|gossip|barter|auction|nobletalk|sports|gclan|newbie|curse|market}\}%2$}} {#line gag};
|
||||||
#ACTION {{\{stats\}}} {#line gag};
|
#ACTION {{\{stats\}}} {#line gag};
|
||||||
|
|
||||||
#SESSION {aard} {aardmud.org} {4000};
|
#SESSION {aard} {aardmud.org} {4000};
|
||||||
|
@ -75,8 +75,6 @@
|
|||||||
#event {SESSION DISCONNECTED}
|
#event {SESSION DISCONNECTED}
|
||||||
{
|
{
|
||||||
#history write {$dir/logs/history.log};
|
#history write {$dir/logs/history.log};
|
||||||
#line log {$dir/logs/minimap.log} {\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n};
|
|
||||||
#line log {$dir/logs/mobs.log} {\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#event {SESSION CONNECTED}
|
#event {SESSION CONNECTED}
|
||||||
|
@ -3,9 +3,10 @@
|
|||||||
|
|
||||||
#ALIAS {do_on_connect}
|
#ALIAS {do_on_connect}
|
||||||
{
|
{
|
||||||
protocol gmcp sendchar;
|
|
||||||
map;
|
map;
|
||||||
|
protocol gmcp sendchar;
|
||||||
quest time;
|
quest time;
|
||||||
|
look;
|
||||||
};
|
};
|
||||||
|
|
||||||
#ACTION {^############# Reconnecting to Game #############$} {do_on_connect}
|
#ACTION {^############# Reconnecting to Game #############$} {do_on_connect}
|
||||||
|
@ -26,14 +26,14 @@
|
|||||||
|
|
||||||
#ACTION {^<MAPSTART>$}
|
#ACTION {^<MAPSTART>$}
|
||||||
{
|
{
|
||||||
#line log {$dir/logs/minimap.log} {\n\r\n\r};
|
#line log {$dir/logs/minimap.log} {\n\n\n\n\n\n};
|
||||||
get_minimap;
|
get_minimap;
|
||||||
#line gag;
|
#line gag;
|
||||||
} {1}
|
} {1}
|
||||||
|
|
||||||
#ACTION {{^\{roomchars\}}}
|
#ACTION {{^\{roomchars\}}}
|
||||||
{
|
{
|
||||||
#line log {$dir/logs/mobs.log} {\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n};
|
#line log {$dir/logs/mobs.log} {\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n};
|
||||||
get_chars;
|
get_chars;
|
||||||
#line gag;
|
#line gag;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user