diff options
author | markzd <markzd@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2013-01-07 05:13:54 +0000 |
---|---|---|
committer | markzd <markzd@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2013-01-07 05:13:54 +0000 |
commit | 24987d8513307094064f59d3c9f9c35d0f6a6e87 (patch) | |
tree | c535cefbdf72d7de8ec676f4d9d89fcaebbd8668 /src/char/inter.c | |
parent | 92880a66754afb8b3b4285276c70c0fc6aa75c1f (diff) | |
download | hercules-24987d8513307094064f59d3c9f9c35d0f6a6e87.tar.gz hercules-24987d8513307094064f59d3c9f9c35d0f6a6e87.tar.bz2 hercules-24987d8513307094064f59d3c9f9c35d0f6a6e87.tar.xz hercules-24987d8513307094064f59d3c9f9c35d0f6a6e87.zip |
* Implemented Unique identifier for Non stackable items. (tid:69380)
* Set as off by default, it can be changed in /src/config/core.h.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@17080 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char/inter.c')
-rw-r--r-- | src/char/inter.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/char/inter.c b/src/char/inter.c index 8863b41d8..8faff42c1 100644 --- a/src/char/inter.c +++ b/src/char/inter.c @@ -1234,3 +1234,24 @@ int inter_parse_frommap(int fd) RFIFOSKIP(fd, len); return 1; } + +uint64 inter_chk_lastuid(int8 flag, uint64 value){ + static uint64 last_updt_uid = 0; + static int8 update = 0; + if(flag) + { + if(last_updt_uid < value){ + last_updt_uid = value; + update = 1; + } + + return 0; + }else if(update) + { + update = 0; + return last_updt_uid; + } + return 0; +} + + |