mIRC Home    About    Download    Register    News    Help

Active Threads | Unanswered Past 24 hours | Past 48 hours | Past Week | Past Month | Past Year
Scripts & Popups Jump to new posts
!vguess addon Fernet Yesterday at 01:58 PM
Hello. This is a simple addon: just GUESS a number from 1 to 100
An user can attempt in a row, i mean after an attempt he can make another ine immediately (if wrong)
Code
on *:TEXT:!game*:#Alessandra:{
  if ($2 != $null) { set %number $rand(1,$2) | msg # Guess the number 1 to $2 | return }
  else /set %number $rand(1,100) | msg # Guess the number 1 to 100 | return
}
on *:TEXT:!number*:#Alessandra:{
  if (%number == $2) { msg # $nick $read(you.txt) you win! The number was  $+ %number $+  | unset %number | set %score $read(win.txt, s, $nick) | write -ds $+ $nick win.txt | write win.txt $nick $calc(%score + 1) | unset %score | return }
  if (%number >= $2) { msg # The number is higher than $2 | return }
  if (%number <= $2) { msg # The number is lower than $2 | return }
  else /halt
}
on *:TEXT:!score*:#Alessandra:{
  if ($2 == $null) {
    notice $nick Nick: --- Score: | play -n $nick win.txt points
  }
  else /msg # Score for  $+ $2 $+  $+ : $read(win.txt, s, $2) points
}

If the number is wrong I wish the user must wait (for example) 300sec before to can attempt again.
Thanks for help
0 22 Read More
Scripts & Popups Jump to new posts
NICK Part/Join counter Fernet 11/12/24 04:45 PM
Good evening. Is there an addon or a way to know how many times a NICK (i.e. PIPPO) parted and joined from a channel? Of course I mean since I joined in that same channel.
Thanks
0 46 Read More
Connection Issues Jump to new posts
Re: SSL issue mx5again 11/12/24 04:37 PM
Thank You that fix also worked for me, i spent hours yesterday trying to fix it frown
7 3,243 Read More
Bug Reports Jump to new posts
Re: Clean version of mIRC Crashing Khaled 08/12/24 10:17 PM
Thanks for your bug report. I have not been able to reproduce this issue here so far. I followed these steps:

1) Started up a clean install of Windows 11
2) Downloaded mIRC v7.78 from the mIRC website
3) Ran the mirc778.exe installer and installed mIRC to the C:\Program Files (x86)\mIRC folder.
4) Ran mIRC by double-clicking on the mIRC icon on the desktop.

If you install mIRC to clean, empty folder in your Windows Downloads folder, using the "Portable" option in the installer, and run mIRC from there, do you still see the same issue?

At which point do you see the issue? When you first run mIRC? Before the About dialog appears on startup? When the Options dialog opens? When you connect to a server?
1 121 Read More
mIRC Help Jump to new posts
Re: not able to connect help please... Hidden 08/12/24 02:04 PM
Hi,

The particular triggers for this message in Undernet ircu are:

- Username containing both upper and lower case, but starting with lower case.
- Username containing both upper case and lower case, and at least 3 leading upper case characters.
- Two groups of digits, but neither is at the start or end of the username.
- More than three groups of digits.
- Any of -_. after -_. or at the start of the username, or more than two of those anywhere in the username.
- No letters at all.
- Last character is punctuation rather than letter or number.


If you choose a username that does not trigger any of the conditions above, you will be able to avoid this error.
5 12,623 Read More