Join Msg

By Winters on Nov 20, 2012

Hello
this is my first post, and isnt for show a good script, is to ask help.

What do I want to do?

I am a team member in a server of games, and I have an annoying user who every day enter asking for a Team Pal, and we cannot ban him because he is not doing nothing wrong, so we want to make work this script.

It supouse to, when the user (alejop) enters to our channel, automatic with a timer 1 3, I Answer to him "alejop the person who u are searching is offline" but only with that user and not with all users.

In theory I think that my code is good but it is not working....

What is wrong?

on *:JOIN:#bitefight.mx: { 
  if ($nick isin #bitefight.mx) ($nick == alejop) { 
    timer 1 3 msg #bitefight.mx Hola $nick , la persona que buscas no esta
  } 
}

Comments

Sign in to comment.
Winters   -  Nov 22, 2012

Thanks a lot Xcution, it works.

 Respond  
Xcution   -  Nov 21, 2012

Make sure you paste this in a script file that does not have a on join event.
I added a . in front of the timer command so you dont have to have added timer started timer halted msgs.
changed the msg #bitefight.mx to msg # cause you already told mirc the channel you wish to check for and send to in the on join. so # is all that is needed there.
I have tested this code and it works on every server I gone on. so hope this helps you.

on *:JOIN:#bitefight.mx: { 
  if ($nick == alejop) { 
    .timer 1 3 msg # Hola $nick , la persona que buscas no esta
} }
 Respond  
Conscious   -  Nov 21, 2012

@Winters more information: what is the channel name, the user name, are your remotes on, is there another on JOIN script in that script file you pasted it in, is the user's mIRC you pasted in connected to the server?

 Respond  
Winters   -  Nov 20, 2012

well, its not working, :/ dont show the msg....

 Respond  
blackvenomm666   -  Nov 20, 2012

if you are not checking the chan for the person he is looking for you do not need the if nick isin portion of it

 Respond  
blackvenomm666   -  Nov 20, 2012
on *:JOIN:#bitefight.mx: { 
  if ($nick == alejop) { 
    timer 1 3 msg #bitefight.mx Hola $nick , la persona que buscas no esta
  } 
}
 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.