RatAttack: fixed docs, IRC setup

This commit is contained in:
alterNERDtive 2020-07-14 21:40:58 +02:00
parent d483eb2cad
commit f068d19f62

View file

@ -88,16 +88,21 @@ this:
```
on *:TEXT:RATSIGNAL - CMDR*(??_SIGNAL):#fuelrats:{
while ( $exists(C:\users\<user>\appdata\roaming\RatAttack\ratsignal.pipe)) {
/sleep 1
}
/mkdir C:\users\<user>\appdata\roaming\RatAttack\
/write C:\users\<user>\appdata\roaming\RatAttack\ratsignal.pipe $1-
if ( %justconnected || $away ) {
/run -h "D:\tools\VoiceAttack\VoiceAttack.exe" -nofocus -command "RatAttack.getInfoFromRatSignal"
/handleratsignal $1-
}
alias handleratsignal {
if ( $exists(C:\users\<user>\appdata\roaming\RatAttack\ratsignal.pipe) ) {
/sleep 1 /handleratsignal $1-
}
else {
/run -h "D:\tools\VoiceAttack\VoiceAttack.exe" -nofocus -command "RatAttack.announceCaseFromRatSignal"
/mkdir C:\users\<user>\appdata\roaming\RatAttack\
/write C:\users\<user>\appdata\roaming\RatAttack\ratsignal.pipe $1-
if ( %justconnected || $away ) {
/run -h "X:\path\to\VoiceAttack\VoiceAttack.exe" -nofocus -command "RatAttack.getInfoFromRatSignal"
}
else {
/run -h "X:\path\to\VoiceAttack\VoiceAttack.exe" -nofocus -command "RatAttack.announceCaseFromRatSignal"
}
}
}
```