- Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathtest.php
More file actions
Latest commit
12 lines (8 loc) · 331 Bytes
/
Copy pathtest.php
File metadata and controls
12 lines (8 loc) · 331 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
<?php
require_once'./vendor/autoload.php';
useJerodev\PhpIrcClient\IrcClient;
useJerodev\PhpIrcClient\Options\ClientOptions;
$options = newClientOptions('PokedexTest', ['#pokedextest']);
$options->autoConnect = true;
$options->floodProtectionDelay = 750;
$client = newIrcClient('euroserv.fr.quakenet.org:6667', $options);