mIRC Home    About    Download    Register    News    Help

Print Thread
#41564 13/08/03 03:45 PM
Joined: Aug 2003
Posts: 73
D
Babel fish
OP Offline
Babel fish
D
Joined: Aug 2003
Posts: 73
Can any 1 give me there away script coz i really need 1 and ill jugde whois is the best laugh only kiding but if u want me 2 laugh grin


IRC (Idiots Relay Chat) :tongue:

{]TDN[}Deadly-Sin
#41565 13/08/03 04:36 PM
Joined: Mar 2003
Posts: 1,271
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Mar 2003
Posts: 1,271
http://www.team-clanx.net
http://www.mircscripts.org
http://www.scriptheaven.org

No doubt they have plenty of choice there. far as I'm concerned, away scripts are a waste of my bandwidth.


DALnet #Helpdesk
I hear and I forget. I see and I remember. I do and I understand. -Confucius
#41566 13/08/03 05:33 PM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
As LocutusofBorg rightly said about the urls. Why don't you attempt to make your own. If you don't know how to, the help file wont necessarily tell you how to, but give you examples on a few things to point you into the right direction
Here's one I just whipped up, I am sure you could do better as I just wrote it as an example for you.
Code:
menu menubar,channel,query,nicklist {
  Away
  .Away: {
    if ($away != $false) { halt }
    else {
      set %back.nick $me
      set %away.nick $$?="Choose your away nick"
      set %away.reason $$?="Away reason"
      set %away.time $ctime
      nick %away.nick
      amsg I have now left the chat room reason: %away.reason $+ . I left at $time $+ .
      away %away.reason
    }
  }
  .Back: {
    if ($away != $true) { halt }
    else {
      nick %back.nick
      unset %back.*
      amsg I am now back from: %away.reason $+ . I have been gone for: $duration($calc($ctime - %away.time)) $+ .
      unset %away.*
      away
    }
  }
}

Edit: Now don't be judging that, that was just an example I just made to show you how it is done. Most away system scripts I have seen are used in Custom Windows and are Dialog based, and of course my little example with menu's and items.

/help /Dialog
/help on Dialog
/help Custom Windows

#41567 13/08/03 06:52 PM
Joined: Mar 2003
Posts: 1,271
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Mar 2003
Posts: 1,271
All I can say is thank god you have enough braincells to NOT put in a timer that does a /ame every N minutes smile


DALnet #Helpdesk
I hear and I forget. I see and I remember. I do and I understand. -Confucius
#41568 13/08/03 07:06 PM
Joined: Dec 2002
Posts: 3,547
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,547
Heh, I never do that. smile


Link Copied to Clipboard