diff options
author | Fedja Beader <fedja@protonmail.ch> | 2024-06-27 01:51:22 +0200 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2024-06-26 23:51:15 +0000 |
commit | b7535483777a70459abfc28022af52e3659fd0e8 (patch) | |
tree | c57687b189c6f4f44d663565f286a1ecc8c41333 | |
parent | 21d04885108a101a6b5031f7cd2e4f04d4c6115a (diff) | |
download | serverdata-b7535483777a70459abfc28022af52e3659fd0e8.tar.gz serverdata-b7535483777a70459abfc28022af52e3659fd0e8.tar.bz2 serverdata-b7535483777a70459abfc28022af52e3659fd0e8.tar.xz serverdata-b7535483777a70459abfc28022af52e3659fd0e8.zip |
:)
-rw-r--r-- | npc/functions/clientversion.txt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/npc/functions/clientversion.txt b/npc/functions/clientversion.txt index 5c59e2665..ad7251fb8 100644 --- a/npc/functions/clientversion.txt +++ b/npc/functions/clientversion.txt @@ -1295,12 +1295,13 @@ function script clientupdater { } .@MSP_used = sk_usedpoints(); - //if (.@MSP_used != MAGIC_PTS) { - //MAGIC_PTS = .@MSP_used; - .@msg$ = sprintf("character: %s, used MSK saved: %d, calculated: %d, total: %d", - strcharinfo(0), MAGIC_PTS, .@MSP_used, sk_maxpoints()); - dispbottom(.@msg$); - consoleinfo(.@msg$); + if (.@MSP_used != MAGIC_PTS) { + //MAGIC_PTS = .@MSP_used; + .@msg$ = sprintf("character: %s, used MSK saved: %d, calculated: %d, total: %d", + strcharinfo(0), MAGIC_PTS, .@MSP_used, sk_maxpoints()); + dispbottom(.@msg$); + consoleinfo(.@msg$); + } if (.@dg) { next; |