diff options
author | Jesusaves <cpntb1@ymail.com> | 2020-05-14 22:06:29 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2020-08-05 03:25:43 -0300 |
commit | 83bd77a89dfeac05ad6d588518f496c474cdf16c (patch) | |
tree | d38a1a12181036cf3626c80685bcd5941564325d | |
parent | 8406751c8db2c7fcfc75a55e88f2f0ab4c7efa3b (diff) | |
download | serverdata-83bd77a89dfeac05ad6d588518f496c474cdf16c.tar.gz serverdata-83bd77a89dfeac05ad6d588518f496c474cdf16c.tar.bz2 serverdata-83bd77a89dfeac05ad6d588518f496c474cdf16c.tar.xz serverdata-83bd77a89dfeac05ad6d588518f496c474cdf16c.zip |
Less rigorous cooldowns
-rw-r--r-- | npc/000-0-1/narrator.txt | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/npc/000-0-1/narrator.txt b/npc/000-0-1/narrator.txt index 27748b81..7695af41 100644 --- a/npc/000-0-1/narrator.txt +++ b/npc/000-0-1/narrator.txt @@ -193,8 +193,6 @@ function referralSystem { mes ""; if (.@ref$ != "") { .@ref=gf_accid(strip(.@ref$)); - // Anti-spam Forced cooldowns - sleep2(100); if (.@ref > 0) { // Case 1: Yourself if (.@ref == getcharid(3)) { @@ -203,7 +201,7 @@ function referralSystem { next; .@ref$=""; // Anti-spam Forced cooldowns - sleep2(500); + sleep2(200); // Case 2: Valid Invite } else { setv("REFERRAL_PROG", .@ref); @@ -221,7 +219,7 @@ function referralSystem { next; .@ref$=""; // Anti-spam Forced cooldowns - sleep2(500); + sleep2(400); } } else { // Case 4: Player gave up |