![]() |
![]() |
Function index: All |
|
$$ | Retrieve the id of the current object |
$active | Retrieve the window id of the active window |
$ascii | Returns the ASCII code of a character |
$avatar | Retrieve the current user's avatar |
$away | Returns 1 if the current user is away |
$b | Returns the BOLD mirc control character |
$base64ToAscii | Returns a decoded base64 string |
$calc | $calc() has been replaced by $() ! |
$caption | Returns the caption text of the specified window. |
$chan.getflag | Returns the channel-user mode flag of an user |
$chan.halfopcount | Returns the number of voiced users on a channel |
$chan.isMeOp | Checks if the current user is op on a channel |
$chan.ishalfop | Checks if an user is half-op on a channel |
$chan.ison | Checks if an user is on a channel |
$chan.isop | Checks if an user is op on a channel |
$chan.isvoice | Checks if an user is voiced on a channel |
$chan.key | Returns the key of a channel |
$chan.limit | Returns the limit of a channel |
$chan.mode | Returns the mode string of a channel |
$chan.name | Returns the name of a channel |
$chan.opcount | Returns the number of op users on a channel |
$chan.topic | Returns the topic of a channel |
$chan.topicsetat | Returns the set time of the topic of a channel |
$chan.topicsetby | Returns the author of the topic of a channel |
$chan.usercount | Returns the number of users on a channel |
$chan.users | Returns an array of channel user nicknames |
$chan.voicecount | Returns the number of voiced users on a channel |
$channel | Retrieve the window id of a specified channel |
$char | Returns a character specified by ascii code |
$classdefined | Check if a class is defined |
$config.filelist | Returns a list of open config files |
$config.filename | Returns the filename of an open config file |
$config.hassection | Checks wheter a section is present in a config file |
$config.id | Returns the id of an open config file |
$config.keylist | Returns a list of keys in a config file |
$config.open | Opens a config file |
$config.read | Reads an entry from a config file |
$config.readonly | Checks wheter a config file is opened in readonly mode |
$config.section | Returns the name of the current section of a config file |
$config.sectionlist | Returns a list of the sections in a config file |
$console | Retrieve the window id of a specified console |
$context | Retrieve the id of the specified irc context |
$cr | Returns a carriage return character |
$dockwidget.isVisible | Returns the state of the dock widget |
$features | Returns the features that KVIrc supports |
$file.exists | Check if a file exists |
$file.extractfilename | Extract the filename from a file path |
$file.extractpath | Extract the path from a filename |
$file.fixpath | Converts file paths |
$file.globaldir | Get the KVIrc global directory |
$file.localdir | Get the KVIrc local directory |
$file.ps | Returns the file path separator |
$file.read | Reads a text file |
$file.size | Returns the size of a file |
$file.type | Checks the type of a path |
$fmtlink | Returns a formatted link buffer |
$hexToAscii | Returns a decoded hex string |
$hostname | Returns the hostname of the specified user |
$ic | Retrieve the id of the specified irc context |
$isMeHalfOp | Returns 1 if the current user has half-op status |
$isMeOp | Returns 1 if the current user has operator status |
$isMeVoice | Returns 1 if the current user has voice status |
$isTimer | Checks for a timer existence |
$isWellKnown | Returns 1 if the specified user is well known |
$k | Returns the COLOR mirc control character |
$lf | Returns a line feed character |
$log.file | Returns the current log filename |
$mask | Retrieve the mask of an user |
$me | Returns the current nick name |
$mp3player.getchannels | Returns the number of channels of the current song (mp3player module) |
$mp3player.getfilename | Returns the filename of the current song (mp3player module) |
$mp3player.getfreq | Returns the frequency of the current song (mp3player module) |
$mp3player.getlength | Returns the length of the current song (mp3player module) |
$mp3player.getposition | Returns the position of the current song (mp3player module) |
$mp3player.getrate | Returns the rate of the current song (mp3player module) |
$mp3player.gettime | Returns the time of the current song (mp3player module) |
$mp3player.gettitle | Returns the title of the current song (mp3player module) |
$mp3player.ispaused | Checks the state of the mp3 player (mp3player module) |
$mp3player.isplaying | Checks the state of the mp3 player (mp3player module) |
$new | Create a new object |
$o | Returns the RESET mirc control character |
$option | Returns the value of an option |
$options.isdialog | Returns the options dialog state |
$query | Retrieve the window id of a specified query |
$r | Returns the REVERSE mirc control character |
$rand | Generate a random number |
$reguser.exactMatch | Returns an entry in the registered user database |
$reguser.mask | Returns the registration masks for a db entry |
$reguser.match | Returns an entry in the registered user database |
$reguser.matchProperty | Returns a property of an entry in the registered user database |
$reguser.property | Returns a property of an entry in the registered user database |
$selected | Returns the list of selected nicknames in the channel |
$server | Returns the current server name (if any) |
$split | Splits a string to an array |
$str.append | Append one string to another. |
$str.cmp | Compare two strings alphabetically |
$str.cmpnocase | Compare two strings alphabetically, case insensitive. |
$str.contains | Returns 1 if the first parameter contains the second |
$str.containsnocase | Returns 1 if the first parameter contains the second, case insensitive |
$str.equal | Returns 1 if the two string parameters are equal |
$str.equalnocase | Returns 1 if the two string parameters are equal, case insensitive |
$str.find | Find the index of the nth ocurrence of a substring in a string |
$str.findfirst | Find the index of a substring in a string |
$str.findfirstnocase | Find the index of a substring in a string, case insensitive |
$str.findlast | Find the last index of a substring in a string |
$str.findlastnocase | Find the last index of a substring in a string, case insensitive |
$str.insert | Inserts a substring in a string at a given index |
$str.isempty | Returns 1 if the given string don't have any character. |
$str.isnumber | Returns 1 if the given string represents a number |
$str.isunsignednumber | Returns 1 if the given string represents an unsigned number |
$str.left | Returns a substring starting from the left until the given index. |
$str.lefttofirst | Returns the left part of a string until a given substring |
$str.lefttolast | Returns the left part of a string until the last ocurrence of a given substring |
$str.len | Returns the lenght of the given string |
$str.lowcase | Returns the given string with all characters turned to lower case |
$str.mid | Returns a substring starting from a given index. |
$str.prepend | Prepend one string to another. |
$str.replace | Append one string to another. |
$str.right | Returns a substring starting from the right until the given index. |
$str.rightfromfirst | Returns the right part of a string from the first ocurrence of a given substring |
$str.rightfromlast | Returns the right part of a string from the last ocurrence of a given substring |
$str.strip | Returns a whitespace stripped string |
$str.stripleft | Returns a left whitespace stripped string |
$str.stripright | Returns a right whitespace stripped string |
$str.upcase | Returns the given string with all characters turned to upper case |
$system.getenv | Returns the value of an enviroinement variable |
$system.hostname | Returns the hostname of the machine that KVIrc is running on |
$system.osmachine | Returns the machine of the operating system |
$system.osname | Returns the name of the operating system |
$system.osnodename | Returns the nodename of the operating system |
$system.osrelease | Returns the release of the operating system |
$system.ostype | Returns the type of the operating system |
$system.osversion | Returns the version of the operating system |
$target | Returns the target of the current window |
$this | Retrieve the id of the current object |
$time | Returns a formatted time string |
$u | Returns the UNDERLINE mirc control character |
$unixTime | Returns the current unix time |
$username | Returns the username of the specified user |
$window.caption | Returns the caption of a window |
$window.exists | Checks for the existence of a window |
$window.list | Generates lists of windows |
$window.type | Returns the type of a window |
$window | Retrieve the id of a specified window. |
|