|
Tolkienfan Wanderer
Joined: 07 Apr 2001 Posts: 51 Location: Denmark
|
Posted: Tue Feb 05, 2002 7:16 pm
Title Trigger |
Ok heres a challenge for all of u Gurus out there:) ( i think )
Im trying to make a trigger that will change my title every like 30 mins...
Im thinking that i will have like a number of variables containing different titles...and once every 30 mins it will choose randomly between one of those titles and set my title to that with the command
title *what ever title i want*
Dunno if this can be done...
Tolkienfan |
|
|
|
TonDiening GURU
Joined: 26 Jul 2001 Posts: 1958 Location: Canada
|
Posted: Tue Feb 05, 2002 7:42 pm |
So change every 30 minutes, lets just
tie into your connect time and use an
Alarm trigger. Use a CASE with %random
for the number of possibilities in that case.
#ALARM -30:00 {#CASE %random {title title1here} {title title2here} {title andsoon}}
TonDiening
Uses 6.16 |
|
|
|
Charbal GURU
Joined: 15 Jun 2001 Posts: 654 Location: USA
|
Posted: Thu Feb 07, 2002 6:42 pm |
Or something like this:
#VAR Titles {the Great|the Industrious|the Wonderful}
#ALARM -30:00 {title %item(@Titles,%random(1,%numitems(@Titles))}
- Charbal |
|
|
|
Tolkienfan Wanderer
Joined: 07 Apr 2001 Posts: 51 Location: Denmark
|
Posted: Thu Feb 07, 2002 9:07 pm |
It seems to be working...Thanks
Tolkienfan |
|
|
|
|
|