diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-07-16 23:01:47 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-07-16 23:01:47 -0300 |
commit | b27d189868e08f4459d324fcdc71d996b4ba84ae (patch) | |
tree | 9a126f44a30d5f9fc47ca0c493488609ef697d95 /npc/functions | |
parent | c3ac02f19bd21b196841934cea8205c77c2f51bf (diff) | |
download | serverdata-b27d189868e08f4459d324fcdc71d996b4ba84ae.tar.gz serverdata-b27d189868e08f4459d324fcdc71d996b4ba84ae.tar.bz2 serverdata-b27d189868e08f4459d324fcdc71d996b4ba84ae.tar.xz serverdata-b27d189868e08f4459d324fcdc71d996b4ba84ae.zip |
User Control Panel (@ucp)
Diffstat (limited to 'npc/functions')
-rw-r--r-- | npc/functions/main.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/npc/functions/main.txt b/npc/functions/main.txt index 0318ce69e..d290bac63 100644 --- a/npc/functions/main.txt +++ b/npc/functions/main.txt @@ -248,6 +248,13 @@ function script gf_accid { return .@value[0]; } +// Get some char name from char ID, even if offline +// ( Name ) +function script gf_charname { + .@nb = query_sql("SELECT name FROM `char` WHERE char_id="+escape_sql(getarg(0))+" LIMIT 2", .@value$); + return .@value$[0]; +} + // Request pincode and validate it. Use any non-4-digits code to cancel. Failure will dc you. // Returns 1 if pin check is OK. function script validatepin { |