From dd3ff06693d156fa4e9b3a74a2653d66075e4e25 Mon Sep 17 00:00:00 2001 From: Logan Date: Sun, 14 Jan 2018 13:01:23 -0800 Subject: [PATCH] Created Perl Client AccountID (markdown) --- Perl-Client-AccountID.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Perl-Client-AccountID.md diff --git a/Perl-Client-AccountID.md b/Perl-Client-AccountID.md new file mode 100644 index 0000000..132e883 --- /dev/null +++ b/Perl-Client-AccountID.md @@ -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()."."; + } +} +``` \ No newline at end of file