From 24987d8513307094064f59d3c9f9c35d0f6a6e87 Mon Sep 17 00:00:00 2001 From: markzd Date: Mon, 7 Jan 2013 05:13:54 +0000 Subject: * 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 --- src/char/inter.c | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'src/char/inter.c') 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; +} + + -- cgit v1.2.3-70-g09d2