Have a question? Ask in
#HelpDesk, notice how I just used this cool linking tool? Enjoy!
New:
Random nickname join feature.
Notes:
Help! Your links don't load! Did you edit the link manually? If so often you used a "#" and you need %23! This script converts that for you but if you are uber leet and do it manually you will need to be mindful of that.
I'd like to have nicknames other then "AnonMouse-xxx" for my users, how can I do that?
PHP Snippet:
"Nickname=<?php echo urlencode($Nickname); ?>&Channel="
Remember if you put a username that isn't dynamic in some fassion users will always have the same name! They will get in user errors naturally!
I have several channels, how do i join multiple with one link? Put a comma between them!
Can I use your links in e-mails, news posting, or similar? Yes! This was designed to be insanly easy, functional, and portable!
How can I allow users to set a nickname then autojoin my channel?
<form action="http://Chat.VJTD3.com/sjc.php" style="margin: 0px;">
<input type="hidden" name="Channel" value="#HelpDesk">
<input type="text" name="Nickname">
<input type="submit" value="Connect">
</form>
How can I allow users to set a nickname with the random nickname ending you do, then autojoin my channel?
<form action="http://Chat.VJTD3.com/sjc.php" style="margin: 0px;">
<input type="hidden" name="random" value="1">
<input type="hidden" name="Channel" value="#HelpDesk">
<input type="text" name="Nickname">
<input type="submit" value="Connect">
</form>
Prefix + Their Nickname:
<form action="http://Chat.VJTD3.com/sjc.php" style="margin: 0px;" onsubmit="document.getElementById('Nickname').value='AnonMouse-'+document.getElementById('Nickname').value;">
<input type="hidden" name="Channel" value="#HelpDesk">
<input type="text" name="Nickname" id="Nickname">
<input type="submit" value="Connect">
</form>
Prefix + Their Nickname + Random:
<form action="http://Chat.VJTD3.com/sjc.php" style="margin: 0px;" onsubmit="document.getElementById('Nickname').value='AnonMouse-'+document.getElementById('Nickname').value;">
<input type="hidden" name="random" value="1">
<input type="hidden" name="Channel" value="#HelpDesk">
<input type="text" name="Nickname" id="Nickname">
<input type="submit" value="Connect">
</form>