Created Perl Client AccountID (markdown)

Logan
2018-01-14 13:01:23 -08:00
parent 1f545c615c
commit dd3ff06693
+11
@@ -0,0 +1,11 @@
Retrieve a [client](client)'s account ID. An Account ID is wraps all characters together, and can be found in the database [Account](account).
### Example
```perl
sub EVENT_SAY {
if($text=~/hail/i) {
quest::say("Your account ID is: ".$client->AccountID().".";
}
}
```