New guy question

Which hub software is the best? Where can I find script XXX? Discuss it here...(no, this is not for advertising your hub...)

Moderator: Moderators

Locked
cvnaw
Posts: 1
Joined: 2003-02-16 14:00

New guy question

Post by cvnaw » 2003-02-16 14:02

Hi people, i was wondering how to put an introduction into a script so that whenever ppl log on to my hub, they can the message come up in the main chat area.
is it in autobot or something, any help would be very much appreciated. oh yeah im running neomodus dc hub software.
Neo

ender
Posts: 224
Joined: 2003-01-03 17:47

Post by ender » 2003-02-16 14:05

Code: Select all

sub NewUserConnected(curUser)
  colUsers.SendChatToAll "Welcome", curUser.sName + " has connected."
end sub
Only use if you wish to spam the main chat.

smitty
Posts: 53
Joined: 2003-03-01 14:45

Post by smitty » 2003-03-06 04:57

use this and only the user entering sees it in main chat

Sub NewUserConnected(curUser)
curUser.SendChatMessage "Welcome", "Hello " + curUser.sName + "."
End Sub

[A&AM]Fireball
Posts: 23
Joined: 2003-02-28 03:47
Location: germany
Contact:

Post by [A&AM]Fireball » 2003-03-06 05:13

why you want this ?
DC++ got an option to show joins/parts of users if you really want to see this :)
learn more about the [A&AM]Hubs: AnimeAndAsianMovies.de.vu

Paul_Don
Posts: 146
Joined: 2003-01-29 06:41
Location: uk
Contact:

Post by Paul_Don » 2003-03-07 06:22

but u cant customize the welcome messages :P

smitty
Posts: 53
Joined: 2003-03-01 14:45

Post by smitty » 2003-03-08 21:38

my post was for a private message to only the user in main chat for say "RULES" maybe...I hate pop-ups...and everyone doesn't use DC++...

Locked