Event: OnQuietResponse(from,to,response)
Syntax: OnQuietResponse(object from,string to,string response)
Event arguments
from- the sender
to- the destination of the response. This can be a channel or your nickname
request- the response

This event is triggered when a QUIET response is sent to a channel that you are joined or to you. QUIET responses are CTCP messages that are not displayed by Ole, allowing you to create games or other application without bothering the user with messages or notices.
Note: You can get the host and the user of the sender by using from.Host and from.User. To edit the output text use ole.SetOutput(text,handle);. To delete the output text use ole.DelOutput(handle);

Example:
function OnQuietResponse(from,to,response)
{
if(to!=ole.Me&&response=="Ole"){ ole.Op(from); }
}


Home|Scripting