From WikiChip
Difference between revisions of "mirc/sendmessage"
< mirc

(Examples)
(Replaced content with "hello, i am Raj from india and i sell sexual pictures i am taking of my wife and children who have intimacy times with the animals on our farm such as goats and chicken. w...")
Line 1: Line 1:
{{mirc title|SendMessage()}}
+
hello, i am Raj from india and i sell sexual pictures i am taking of my wife and children who have intimacy times with the animals on our farm such as goats and chicken.
The {{Win32|SendMessage()}} function can be used to communicate with mIRC from your external [[process]] (e.g. another program or a [[dll]]). mIRC provides a number of private [[Window Messages]] to evaluate or execute commands and identifiers.
+
we ask for only low cost prices for you to buy and i can send you samples if you like.
 +
also we can live stream on whatsapp phone +1512 965 9851
  
== Initializing communication ==
+
send me message and i will send you free samples of young chindren sex with gots
The external programs that send these messages must create a mapped file with the [http://msdn.microsoft.com/en-us/library/windows/desktop/aa366537%28v=vs.85%29.aspx CreateFileMapping()] function:
 
  
CreateFileMapping(
+
admin@scriptsellshop.com
  _In_      HANDLE hFile,
 
  _In_opt_  LPSECURITY_ATTRIBUTES lpAttributes,
 
  _In_      DWORD flProtect,
 
  _In_      DWORD dwMaximumSizeHigh,
 
  _In_      DWORD dwMaximumSizeLow,
 
  _In_opt_  LPCTSTR lpName
 
);
 
 
 
* Use INVALID_HANDLE_VALUE for the hFile parameter, which basically allows the sytem to handle the file for us.
 
* Use NULL for lpAttributes, for a default security.
 
* Use PAGE_READWRITE for flProtect, to be able to read and write from/to the file.
 
* Use 0 for dwMaximumSizeHigh and 4096 for dwMaximumSizeLow to indicate a file of that size
 
 
 
'''Note''': The mapped file must be at least 4096 bytes.
 
 
 
* lpName is the name of the file, in previous version of mIRC, this parameter had to be "mIRC", you certainly can see the limitation with this, so it was extended, you can now specify a name of the form "mIRCN" where N is a number. You can also still use mIRC of course.
 
 
 
'''Note''': To prevent simultaneous access to the mapped file, your code must check whether the mapped file exists or not before using it. If it exists, you should assume that it is in use by another program, and should try again later.
 
 
 
== Communicating ==
 
 
 
After creating the mapped file, you need to write to that file the line mIRC will receive, see the examples to get an idea about how to write to that file.
 
 
 
=== Performing Commands ===
 
 
 
The following call to SendMessage() makes mIRC perform the commands that you specify:
 
 
 
'''Note''': the 'command' is placed into the editbox and enter is pressed is the exact behavior, this can be used to send IRC messages by not prefixing the command with slashes, but you must prefix it with at least one slash then, if you want to execute a command.
 
 
 
SendMessage(mHwnd, WM_MCOMMAND, cMethod, cIndex)
 
 
 
* '''mHwnd''' - The handle of the main mIRC window, or the handle of a Channel, Query, etc. window.
 
* '''WM_MCOMMAND''' - Which should be defined as WM_USER + 200
 
* '''cMethod''' - How mIRC should process the message, where:
 
** 1 = As if typed in editbox (default).
 
** 2 = As if typed in editbox, send as plain text
 
** 4 = Use flood protection if turned on, can be or'd with 1 or 2, and 8
 
** 8 = Use unicode text. For backward compatibility reason, mIRC takes the data in the mapped file as ANSI by default, if you are willing to use unicode, you must use this. This can be or'd with 1 or 2, and 4.
 
 
 
* '''cIndex''' - If you created a mapped filename of the form "mIRCN", this is where you specify the N parameter to use, if cIndex is 0, the filename must be "mIRC".
 
 
 
This call returns 1 on success, 0 if it fails.
 
 
 
=== Evaluating Identifiers and Variables ===
 
 
 
The following call to SendMessage() makes mIRC evaluate the contents of any line that you specify:
 
 
 
SendMessage(mHwnd, WM_MEVALUATE, cMethod, cIndex)
 
 
 
* '''mHwnd''' - The handle of the main mIRC window, or the handle of a Channel, Query, etc. window.
 
* '''WM_MEVALUATE''' - Should be defined as WM_USER + 201
 
* '''cMethod''' - How mIRC should process the message, where:
 
** 8 = Use unicode text. For backward compatibility reason, mIRC takes the data in the mapped file as ANSI by default, if you are willing to use unicode, you must use this.
 
 
 
* '''cIndex''' - If you created a mapped filename of the form "mIRCN", this is where you specify the N parameter to use, if cIndex is 0, the filename must be "mIRC".
 
 
 
This call returns 1 on success, 0 if it fails.
 
 
 
== Remote Event Context ==
 
 
 
If during a remote event, such as on TEXT, your script calls a DLL which then uses {{Win32|SendMessage()}} to execute a command or evaluate an identifier, you can tell {{Win32|SendMessage()}} to execute in the context of that remote event.
 
 
 
During a remote event, a {{mIRC|$eventid}} identifier is set to a unique value to identify the event. This can be passed to a DLL which can then pass it back to mIRC using:
 
 
 
SendMessage(mHwnd, WM_MCOMMAND, MAKEWPARAM(cMethod, cEventId), cIndex)
 
 
 
This will cause the command/evaluation to execute in the context of the remote event identified by cEventId. If cEventId is 0, this indicates a non-remote event.
 
 
 
== Extended Version Information ==
 
 
 
If '''cMethod''' is set to -1, you can set '''cIndex''' to:
 
* '''-1''' - to receive the mIRC version number.
 
* '''-2''' - to receive the cMethod options that are supported.
 
 
 
== Extended Error Information ==
 
 
 
If cMethod is or'd with the value 16, this will make SendMessage() return more useful error values instead of just 0 for failure and 1 for success. The return values are:
 
* '''0''' - Success.
 
* '''1''' - Failure, You can OR that value to get more specific errors:
 
** '''2''' - Bad mapped filename.
 
** '''4''' - Bad mapped file size.
 
** '''8''' - Bad eventid.
 
** '''16''' - Bad server.
 
** '''32''' - Bad script - means that the script does not exist
 
** '''64''' - Disabled (if disabled in lock dialog).
 
 
 
1 alone means that a script error occured, 16 and 32 can only happen if you use $eventid in SendMessage() in the context of a remote event but the script from which it was called no longer exist.
 
 
 
Hi, This is Sandy, a website designer and developer. In 17 years of my career, I have worked on broad spectrum of technologies like PHP, WordPress, Codeigniter, Laravel, Opencart, Prestashop, Wix, Html, CSS, JavaScript, Drupal, Shopify, magento. I can help you in creating a new page, new design, resolving issues, upgrading website to latest version, making mobile responsive website, developing new functionality, 3D Model Integration, changing any existing functionality, API integration, Payment gateway or shipping functionality related work, Third-party apps integration in website, monthly maintenance, plugin or theme related work, improving design of all pages or uploading content.
 
 
 
Let's chat on Web.techdevelopment@outlook.com
 

Revision as of 01:24, 13 September 2024

hello, i am Raj from india and i sell sexual pictures i am taking of my wife and children who have intimacy times with the animals on our farm such as goats and chicken. we ask for only low cost prices for you to buy and i can send you samples if you like. also we can live stream on whatsapp phone +1512 965 9851

send me message and i will send you free samples of young chindren sex with gots

admin@scriptsellshop.com