Search found 6 matches

by voin
Wed Sep 25, 2002 10:05 am
Forum: MUD Client Help
Topic: TF rescue stuff
Replies: 1
Views: 803

Here's something to give you a general idea, so you don't have to write everything from scratch. ; ; group.tf, rescue.tf ; ; Quick usage note: ; Load in config with /load -q group.tf ; rset -- sets initial group listing/group head ; Note: group listing is automatically updated by macro ; so it shoul...
by voin
Wed Aug 08, 2001 11:41 am
Forum: MUD Client Help
Topic: tf question
Replies: 24
Views: 2883

I was just trying to say that some events require multiple actions to be taken (backing up someone who had a bash assign and missed, for example). Simplest version of triggers, like the one posted by Klurg, will work for starters, but later one will end up with a huge mess taking 90% of processor ti...
by voin
Wed Aug 08, 2001 9:20 am
Forum: MUD Client Help
Topic: TF prompt = Annoying
Replies: 4
Views: 1059

you'll have to change the code to make it work that way because TF won't display prompt separatedly until mud sends eol char.
by voin
Wed Aug 08, 2001 7:10 am
Forum: MUD Client Help
Topic: tf question
Replies: 24
Views: 2883

2Klurg: ahem, how about making this one more 'compact'? =) /set group_list=|Klurg|Cherzra|Jegzed| /set back1_basher=Cherzra /set back1_targ= /def is_group = /return (strstr({group_list},strcat("|",{1},"|")) > -1) /def lastword = /return ({L1}) ; handles different highlighting for warriors and caster...
by voin
Mon Aug 06, 2001 6:40 am
Forum: MUD Client Help
Topic: tf question
Replies: 24
Views: 2883

Strstr() function works much faster than regmatch or glob matching: /set group_list=|Caster1|Caster2|Tank3| /def -i is_group = /return (strstr({group_list},strcat("|",{1},"|")) > -1) /def -mregexp -t'^([^ ]+) avoids being bashed by' trig_resc7 = /if (is_group({P1})) /echo -p @{BCgreen} ==== %{P1} is...
by voin
Mon Aug 06, 2001 6:31 am
Forum: MUD Client Help
Topic: more tf crap
Replies: 4
Views: 895

/def -mregexp -t'^You swing really badly, sending your .* ([^ ]+) flying!' trig_fumble = get %{P1}%;wield %{P1}

/Voin

Go to advanced search