Skip to content
MSN

what's wrong with this code !!!

A TG007 community discussion started by oosho.

Discussion 6 posts
Page 1 of 1
Open
Topic #6573 · 6 published posts · 821 views

 

on *:JOIN:#: /notice # Heyy $nick (F)(F) have a nice time }

on *:JOIN:#: { notice # Heyy $nick (F)(F) have a nice time }

 

none of them working :notworking::notworking:

 

use:

 

on *:join:#:/notice $nick Heyy $nick (F)(F) have a nice time

 

you want to notice the user, not the channel.

thannxxx man (Y)(Y)

Not only that, you have a useless bracket at the end of the first code

on *:JOIN:#: /notice # Heyy $nick (F)(F) have a nice time }

When you use brackets, make sure they have a starting bracket at the begining of the identifing code. Else, you'll get a mismatch, and that could cause it to mess up.

 

try to removing the #... and replacing it with $nick as # stands for the channel, and the notice is available only for a specific nickname...

on *:JOIN:#: /notice $nick Heyy $nick (F)(F) have a nice time | /notice $nick enjoy your stay $nick[/code]