Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.171
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
ircII /
help /
on /
[ HOME SHELL ]
Name
Size
Permission
Action
action
556
B
-rw-r--r--
channel_nick
591
B
-rw-r--r--
channel_signoff
760
B
-rw-r--r--
connect
519
B
-rw-r--r--
ctcp
1.17
KB
-rw-r--r--
ctcp_reply
1.42
KB
-rw-r--r--
dcc_chat
758
B
-rw-r--r--
dcc_list
646
B
-rw-r--r--
dcc_raw
1.77
KB
-rw-r--r--
disconnect
612
B
-rw-r--r--
exec
794
B
-rw-r--r--
exec_errors
695
B
-rw-r--r--
exec_exit
573
B
-rw-r--r--
exec_prompt
610
B
-rw-r--r--
flood
1.82
KB
-rw-r--r--
help
462
B
-rw-r--r--
hook
915
B
-rw-r--r--
icb_cmdout
494
B
-rw-r--r--
icb_error
358
B
-rw-r--r--
icb_status
517
B
-rw-r--r--
icb_who
596
B
-rw-r--r--
idle
586
B
-rw-r--r--
input
1.16
KB
-rw-r--r--
invite
508
B
-rw-r--r--
join
579
B
-rw-r--r--
leave
550
B
-rw-r--r--
list
562
B
-rw-r--r--
mail
1.27
KB
-rw-r--r--
mode
619
B
-rw-r--r--
msg
934
B
-rw-r--r--
msg_group
571
B
-rw-r--r--
names
525
B
-rw-r--r--
nickname
515
B
-rw-r--r--
note
680
B
-rw-r--r--
notice
1.22
KB
-rw-r--r--
notify_signoff
491
B
-rw-r--r--
notify_signon
486
B
-rw-r--r--
numeric
963
B
-rw-r--r--
on
5.31
KB
-rw-r--r--
os_signal
533
B
-rw-r--r--
public
912
B
-rw-r--r--
public_msg
590
B
-rw-r--r--
public_notice
593
B
-rw-r--r--
public_other
632
B
-rw-r--r--
raw_irc
959
B
-rw-r--r--
raw_send
562
B
-rw-r--r--
send_action
538
B
-rw-r--r--
send_dcc_chat
519
B
-rw-r--r--
send_msg
507
B
-rw-r--r--
send_notice
519
B
-rw-r--r--
send_public
529
B
-rw-r--r--
serial_numbers
2.37
KB
-rw-r--r--
server_notice
754
B
-rw-r--r--
signoff
693
B
-rw-r--r--
timer
982
B
-rw-r--r--
topic
500
B
-rw-r--r--
wall
437
B
-rw-r--r--
wallop
641
B
-rw-r--r--
who
697
B
-rw-r--r--
window
630
B
-rw-r--r--
window_kill
499
B
-rw-r--r--
window_list
726
B
-rw-r--r--
window_swap
412
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : serial_numbers
! $eterna: serial_numbers,v 1.7 2018/06/10 08:17:42 mrg Exp $ ! ! Copyright (c) 1990-2018 Michael Sandrof, Troy Rollo, Matthew Green, ! and other ircII contributors. ! ! All rights reserved. See the HELP IRCII COPYRIGHT file for more ! information. ! How to use SERIAL NUMBERS This describes the use of serial numbers in ON functions, and is a direct extension of the basic ON help file. It is now possible to have more than one ON hook executed for each event triggering a hook. This has been done by adding a new serial number concept to the ON command. Each ON hook has a serial number attached. Serial numbers can be any number from -maxint to maxint, with the default being 0. When an event triggers a hook, IRCII now goes through the ON hooks added for that event, and for each serial number used by ON hooks in that hook type, finds the best match out of those ON hooks which have that serial number and executes that ON hook. The hooks are executed in order of serial number. Thus if you set up the following set of MSG hooks. ON #^MSG -666 * echo Message coming: ON ^MSG * echo Message from $0: $1- ON #^MSG 666 * echo I got one, I got one! ON #^MSG 666 WiZ echo WiZ hath spoken will cause the following to appear when you receive a message: Message coming: Message from nick: text I got one, I got one! And the following if you receive a message from WiZ: Message coming: Message from WiZ: text WiZ hath spoken The default serial number is 0, and the serial numbers are always executed in order, starting with the lowest, and ending with the highest. Although the '^' modifier can be used with any serial number, it will only suppress the default action if used with serial number 0. Thus if the only message hook you have is: ON #^MSG -666 * echo Incoming: You will see the following when you receive a message: Incoming: *nick* text It is advisable to place any ON hooks which do not suppress the default action in a serial number other than 0. In particular, TIMER hooks, which are generally not intended to exclude other TIMER hooks, should be placed at different serial numbers wherever possible, and never on 0 (since 0 is the most likely place to get a clash if anybody does use it). See Also: ON
Close