Member count not going down - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Member count not going down (
/showthread.php?tid=121436)
Member count not going down -
MisterTickle - 17.01.2010
Basically, I have a dini based group system that when people join the group or are invited there member count goes up and it works fine but for some reason if people leave it never goes down
The fallowing code does not work
Код:
numberz = dini_Int(file, "Members");
numberz--;
dini_IntSet(file, "Members", numberz);
The fallowing code works
Код:
numberz = dini_Int(file, "Members");
numberz++;
dini_IntSet(file, "Members", numberz);
I don't see what the problem is and could use some help