Here is my btestgood pic
Here is my btestbad pic
This is where the scripts go
Darkwood Pull Alias
Here is a script to pull a mob to to the old man or high
priest in darkwood. Create a new alias and name the alias whatever you
want. Replace the 8927 with whatever room number you want. I use pppp for
the alias so the usage would be 'pppp mound' etc
#var pullway %pathexpand( %walk( 8927))
#forall @pullway {pull %1 %i}
#teleport 8927
cast 'holy mantra' %1
cast 'holy mantra' %1
Identify Capture Alias
Here is a script that will capture the contents of an
identify scroll usage and save it to foxeq.txt file. Create an alias
and call it whatever you want maybe idd. Usage would be 'idd assasins'.
#LO Foxeq.txt
recite identify %1
#wa 1000
#LO
Kill Log Script
Here is a script that will capture some info each time you
kill a mob including the time, the mob, xps, room name, room number, and
gold and record it to the kill log file.
First set up:
Trigger-
(&mob) has been slain!
then set up
Trigger-
You receive (&logxp) experience points
#file 1 killlog.txt
#wri 1 %time( mm/dd/yy),%time( hh:nn:ss),mob-@mob,xps-@logxp,In-%roomname,Num-%roomvnum,gold-@loggold
last 20 kills script but need to adapt to fox
#CLASS {kill_history}
#ALIAS lk {#CLASS "kill_history|support" 1;#VARIABLE killhistory.count
0;#VARIABLE killhistory.xp 0;lastkill}
#VAR killhistory {count20xp126}
#CLASS 0
#CLASS {kill_history|support} {disable}
#TRIGGER {^(%*)%s(%d)%s(%d)%s(%*)$} {#ADD killhistory.count 1;#ADD
killhistory.xp %3;#IF (@killhistory.count = 20) {gtell Last 20 kills
averaged %eval( @killhistory.xp/@killhistory.count) experience.;#CLASS "kill_history|support"
0}}
#CLASS 0
Tick Trigger
FoxFiles\ZmudTextFiles\ticker.txt
Heres a tidbit of script to show what colors are available as posted by
"Tech" on the zuggsoft board
#CLASS {ColourWheel}
#ALIAS ColourTest {#FORALL @Colours {:1:#SAYPROMPT ~<color %i~>%i~</color~>%char(
32)};%cr}
#VAR Colours {aliceblue|antiquewhite|aqua|aquamarine|azure|beige|bisque|black|blanchedalmond|blue|blueviolet|brown|burlywood|cadetblue|chartreuse|chocolate|coral|cornflowerblue|cornsilk|crimson|cyan|darkblue|darkcyan|darkgoldenrod|darkgray|darkgreen|darkkhaki|darkmagenta|darkolivegreen|darkorange|darkorchid|darkred|darksalmon|darkseagreen|darkslateblue|darkslategray|darkturquoise|darkviolet|deeppink|deepskyblue|dimgray|dodgerblue|firebrick|floralwhite|forestgreen|fuchsia|gainsboro|ghostwhite|gold|goldenrod|gray|green|greenyellow|honeydew|hotpink|indianred|indigo|ivory|khaki|lavender|lavenderblush|lawngreen|lemonchiffon|lightblue|lightcoral|lightcyan|lightgoldenrodyellow|lightgreen|lightgrey|lightpink|lightsalmon|lightseagreen|lightskyblue|lightslategray|lightsteelblue|lightyellow|lime|limegreen|linen|magenta|maroon|mediumaquamarine|mediumblue|mediumorchid|mediumpurple|mediumseagreen|mediumslateblue|mediumspringgreen|mediumturquoise|mediumvioletred|midnightblue|mintcream|mistyrose|moccasin|navajowhite|navy|oldlace|olive|olivedrab|orange|orangered|orchid|palegoldenrod|palegreen|paleturquoise|palevioletred|papayawhip|peachpuff|peru|pink|plum|powderblue|purple|red|rosybrown|royalblue|saddlebrown|salmon|sandybrown|seagreen|seashell|sienna|silver|skyblue|slateblue|slategray|snow|springgreen|steelblue|tan|teal|thistle|tomato|turquoise|violet|wheat|white|whitesmoke|yellow|yellowgreen}
#CLASS 0