mIRC Homepage
Posted By: x3pos on:TEXT person only - 18/01/16 01:52 PM
Code:
on *:TEXT:!komutlar:{
if $nick == Person { /msg $chan  $nick you can use this commands }
}
on *:TEXT:!komutlar:* { msg $chan $nick you cant use this commands}


what is wrong help me
Posted By: westor Re: on:TEXT - 18/01/16 01:54 PM
Try use this:

Code:
on *:TEXT:!komutlar:#: {
if ($nick == Person) { msg $chan $nick you can use this commands }
}
Posted By: x3pos Re: on:TEXT - 18/01/16 01:58 PM
first text working already but second text doesnt work.
Posted By: westor Re: on:TEXT - 18/01/16 02:01 PM
If you want to add multiple commands use this code instead.

Code:
ON *:TEXT:*:#: {
  if ($1 == !command1) {
    if ($nick == Person) { msg $chan $nick you can use this commands }
  }
  if ($1 == !command2) { msg $chan $nick test command2 }
}


Read more in the WIKI: http://en.wikichip.org/wiki/mirc

or in mIRC: /help on text
Posted By: x3pos Re: on:TEXT - 18/01/16 02:06 PM
i dont want command1 and command2. only "commands"
VIP Person:!commands
bot:this commands only for you.....
everyone:!commands
bot:!commands dont work to yo!
Posted By: westor Re: on:TEXT - 18/01/16 02:09 PM
OK next time i will smell my feets what you want for.

Try to describe better next time.

Code:
ON *:TEXT:!commands:#: {
    if ($nick == Person) { msg $chan $nick Commands are 1,2,3 }
    else { msg $chan $nick You have not access for this command! }
}
Posted By: x3pos Re: on:TEXT - 18/01/16 02:16 PM
person:!commands
bot:Person commands are 1,2,3
bot:Person You have not access for this command!
everyone:!commands
bot:You have not access for this command!
Posted By: westor Re: on:TEXT - 18/01/16 02:19 PM
Posted By: x3pos Re: on:TEXT person only - 18/01/16 02:25 PM
it doesnt work sorry.
Posted By: westor Re: on:TEXT person only - 18/01/16 02:28 PM
What exactly does not working? i try it and it worked, try to create a new file in Remotes tab and paste the code on it, remove any older !commands on text event and try again, if this will not work then you've made something incorrect.
Posted By: x3pos Re: on:TEXT person only - 18/01/16 02:30 PM
im fixed now thank you for helping.
© mIRC Discussion Forums