Advertisement
MythIncDragon

Untitled

Dec 25th, 2022 (edited)
2,293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
mIRC 0.85 KB | Source Code | 0 0
  1. ; Here is what I have in the Variables file.
  2. %winaka  @aka_ $+ $network
  3. %winwho @whois_ $+ $network
  4.  
  5. /* typing the command //echo %winaka from a window with an active connection returns the value:
  6.    @aka_ $+ $network and not the value I am looking for:  @aka_liberachat for example.  To see if I
  7.    was on the right track, I added %test $network to my variables file, and using //echo %test returned:
  8.    $network and not the name of the network.  
  9.  
  10.    Here is what I am trying to do. */
  11.  
  12. ; CURRENT on connect block
  13. on *:connect: {
  14.   CheckUpTimer  ;verify CheckUpTimmer is running, if not restart.
  15.   window @whois_ $+ $network -i -j
  16.   window @aka_ $+ $network -i -j
  17. }
  18.  
  19. ; What I want to do, if possible.
  20. on *:connect: {
  21.   CheckUpTimer  ;verify CheckUpTimmer is running, if not restart.
  22.   window %winaka -i -j
  23.   window %winwho -i -j
  24. }
  25.  
  26. /*   */
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement